UX: Update suggestion radii to accommodate for new default (#564)

This commit is contained in:
Keegan George 2024-04-09 10:48:18 -07:00 committed by GitHub
parent 310238d38a
commit 8444789974
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 23 additions and 4 deletions

View File

@ -231,12 +231,29 @@
background: var(--secondary);
border: 1px solid var(--primary-400);
border-left: none;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.showing-ai-suggestions .title-input {
// border on focus should be on top of suggestion button
input:focus {
z-index: 1;
.showing-ai-suggestions {
.title-input {
// border on focus should be on top of suggestion button
input:focus {
z-index: 1;
}
input {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
}
.category-chooser,
.mini-tag-chooser {
.select-kit-header {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
}
}
@ -253,6 +270,8 @@
border: 1px solid var(--primary-400);
border-left: none;
background: none;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.ai-suggestions-menu {