fix: datepicker color in light theme when opening as popup

This commit is contained in:
kolaente 2021-11-24 20:49:36 +01:00
parent a2f65d86c2
commit b4e11828c3
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 8 additions and 6 deletions

View File

@ -82,6 +82,14 @@
--input-disabled-background-color: var(--grey-100);
--input-disabled-border-color: var(--grey-300);
// Text renders better in grey than black
--text: var(--grey-800);
--text-invert: #000;
--text-light: var(--grey-300);
--text-strong: var(--grey-900);
--button-hover-color: var(--grey-900);
&.dark {
// Light mode colours reversed for dark mode
--grey-900-hsl: 210, 20%, 98%;
@ -103,12 +111,6 @@
--white: var(--grey-50);
--black-l: 100%;
// Text renders better in grey than black
--text: var(--grey-800);
--text-invert: #000;
--text-light: var(--grey-300);
--text-strong: var(--grey-900);
// Elements that rely on Bulma defaults in light mode but
// need to be overriden in dark mode
--input-placeholder-color: hsla(var(--grey-900-hsl), 0.6);