UX: Update suggestion radii to accommodate for new default (#564)
This commit is contained in:
parent
310238d38a
commit
8444789974
|
@ -231,13 +231,30 @@
|
||||||
background: var(--secondary);
|
background: var(--secondary);
|
||||||
border: 1px solid var(--primary-400);
|
border: 1px solid var(--primary-400);
|
||||||
border-left: none;
|
border-left: none;
|
||||||
|
border-top-left-radius: 0;
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.showing-ai-suggestions .title-input {
|
.showing-ai-suggestions {
|
||||||
|
.title-input {
|
||||||
// border on focus should be on top of suggestion button
|
// border on focus should be on top of suggestion button
|
||||||
input:focus {
|
input:focus {
|
||||||
z-index: 1;
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.suggestion-button {
|
.suggestion-button {
|
||||||
|
@ -253,6 +270,8 @@
|
||||||
border: 1px solid var(--primary-400);
|
border: 1px solid var(--primary-400);
|
||||||
border-left: none;
|
border-left: none;
|
||||||
background: none;
|
background: none;
|
||||||
|
border-top-left-radius: 0;
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ai-suggestions-menu {
|
.ai-suggestions-menu {
|
||||||
|
|
Loading…
Reference in New Issue