Convert theme to css variables

* Opt-in for light and dark color schemes
* Convert scss variables in _light.scss to css variables
* Add _dark.scss for dark color scheme
* Remove unused, theme-related variables
This commit is contained in:
Tom Najdek 2023-10-16 13:40:59 +02:00 committed by Dan Stillman
parent 03d10f7de7
commit c7286194f8
18 changed files with 189 additions and 257 deletions

View file

@ -33,9 +33,6 @@
}
.file-input-container {
background-color: $input-group-background-color;
border-radius: $border-radius-base;
border: 1px solid $input-group-border-color;
display: flex;
margin: auto $space-min auto;
padding: .5em;
@ -69,7 +66,7 @@
>div {
display: flex;
flex: 1 0 auto;
background-color: -moz-field;
background: var(--material-background70);
overflow: hidden;
position: relative;
}