Initial conversion to css variables

This commit is contained in:
Michael Shamoon
2022-03-08 14:49:40 -08:00
parent df4567f9e4
commit 4babf0d102
11 changed files with 251 additions and 349 deletions

View File

@@ -1,8 +1,11 @@
// bs options
$enable-negative-margins: true;
@import "node_modules/bootstrap/scss/bootstrap";
@import "~@ng-select/ng-select/themes/default.theme.css";
@import "theme";
@import "theme_dark";
@import "print";
@import "node_modules/bootstrap/scss/bootstrap";
@import "~@ng-select/ng-select/themes/default.theme.css";
.toolbaricon {
width: 1.2em;
@@ -114,7 +117,7 @@ body {
}
.ngx-file-drop__drop-zone--over {
background-color: $primaryFaded !important;
background-color: var(--ngx-primary-faded) !important;
}
// Bootstrap 5 tweaks
@@ -130,6 +133,6 @@ a.badge {
}
.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle {
background-color: $paperless-green;
border-color: $paperless-green;
background-color: var(--bs-primary);
border-color: var(--bs-primary);
}