Skip to content

Commit 8444789

Browse files
authored
UX: Update suggestion radii to accommodate for new default (#564)
1 parent 310238d commit 8444789

File tree

1 file changed

+23
-4
lines changed

1 file changed

+23
-4
lines changed

assets/stylesheets/modules/ai-helper/common/ai-helper.scss

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -231,12 +231,29 @@
231231
background: var(--secondary);
232232
border: 1px solid var(--primary-400);
233233
border-left: none;
234+
border-top-left-radius: 0;
235+
border-bottom-left-radius: 0;
234236
}
235237

236-
.showing-ai-suggestions .title-input {
237-
// border on focus should be on top of suggestion button
238-
input:focus {
239-
z-index: 1;
238+
.showing-ai-suggestions {
239+
.title-input {
240+
// border on focus should be on top of suggestion button
241+
input:focus {
242+
z-index: 1;
243+
}
244+
245+
input {
246+
border-top-right-radius: 0;
247+
border-bottom-right-radius: 0;
248+
}
249+
}
250+
251+
.category-chooser,
252+
.mini-tag-chooser {
253+
.select-kit-header {
254+
border-top-right-radius: 0;
255+
border-bottom-right-radius: 0;
256+
}
240257
}
241258
}
242259

@@ -253,6 +270,8 @@
253270
border: 1px solid var(--primary-400);
254271
border-left: none;
255272
background: none;
273+
border-top-left-radius: 0;
274+
border-bottom-left-radius: 0;
256275
}
257276

258277
.ai-suggestions-menu {

0 commit comments

Comments
 (0)