enhance: remove modal border

This commit is contained in:
Tienson Qin
2023-11-05 18:07:42 +08:00
parent fcc38a4b6b
commit 942b1677e3
3 changed files with 14 additions and 10 deletions

View File

@@ -26,7 +26,7 @@
}
}
}
&:hover, &.chosen {
.has-help small {
visibility: visible;
@@ -107,14 +107,13 @@
}
&-overlay div {
--from: or(--lx-gray-03, --ls-primary-background-color);
--from: or(--lx-gray-03, --ls-primary-background-color);
--to: or(--lx-gray-06, --ls-quaternary-background-color);
background-image: linear-gradient(to bottom, var(--from), var(--to));
}
&-panel {
@apply relative rounded-md shadow-xl border;
border-color: or(--lx-gray-07, --ls-border-color);
@apply relative rounded-md shadow-xl;
overflow: hidden;
background: or(--lx-gray-04, --ls-secondary-background-color);
@@ -431,3 +430,7 @@ html.is-mobile {
.ui__toggle-background-off {
background: or(--logseq-og-toggle-off-background, --lx-gray-08, rgb(212, 212, 212));
}
.ui__modal, .cp__modal-panel {
border: none;
}