fix: button default background color

This commit is contained in:
Tienson Qin
2023-11-09 13:31:53 +08:00
parent f52e6bf127
commit 086e25b236
4 changed files with 14 additions and 3 deletions

View File

@@ -240,8 +240,14 @@
opacity: 1;
}
.shui__button-theme-gray.shui__button-color-custom { background-color: var(--ls-tertiary-background-color); color: var(--ls-secondary-text-color, white); }
.shui__button-theme-color.shui__button-color-custom { background-color: var(--color-blue-600); color: white; }
.shui__button-theme-gray.shui__button-color-custom { background-color: var(--ls-tertiary-background-color);
color: var(--ls-secondary-text-color, white); }
.shui__button-theme-color.shui__button-color-custom { background-color: hsl(var(--logseq-og-button-background-hsl) / 0.9);
color: white; }
.shui__button-color-custom:hover, .dark .shui__button-color-custom:hover {
background: var(--logseq-og-button-background);
}
.shui__button-theme-color.shui__button-color-lime { color: white; background-color: var(--rx-lime-09); &:hover { background-color: var(--rx-lime-10); } &:active { background-color: var(--rx-lime-08); }}
.shui__button-theme-color.shui__button-color-orange { color: white; background-color: var(--rx-orange-09); &:hover { background-color: var(--rx-orange-10); } &:active { background-color: var(--rx-orange-08); }}