mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-24 17:02:18 +00:00
Move dark theme SCSS to separate file, fix inactive pagination styling
This commit is contained in:
6683
RIGS/static/css/dark_screen.css
Normal file
6683
RIGS/static/css/dark_screen.css
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
33
RIGS/static/scss/dark_screen.scss
Normal file
33
RIGS/static/scss/dark_screen.scss
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
[data-theme='dark'] {
|
||||||
|
@import "custom-variables";
|
||||||
|
@import 'node_modules/@forevolve/bootstrap-dark/scss/bootstrap-dark.scss';
|
||||||
|
background: #222;
|
||||||
|
color: $gray-100;
|
||||||
|
.dropdown-menu {
|
||||||
|
box-shadow: 0 0.5rem 1rem black;
|
||||||
|
color: $gray-100;
|
||||||
|
background: #121416;
|
||||||
|
}
|
||||||
|
.form-control {
|
||||||
|
background: #121416;
|
||||||
|
color: $gray-100;
|
||||||
|
border: black !important;
|
||||||
|
}
|
||||||
|
.btn-light, .popover-header, .status {
|
||||||
|
background: #121416 !important;
|
||||||
|
color: $gray-100 !important;
|
||||||
|
border: black !important;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color: $blue;
|
||||||
|
}
|
||||||
|
.btn, .badge, tr {
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
.input-group-text {
|
||||||
|
border: black;
|
||||||
|
}
|
||||||
|
.page-item.disabled {
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,36 +1,4 @@
|
|||||||
[data-theme='dark'] {
|
@import "dark_screen";
|
||||||
@import "custom-variables";
|
|
||||||
@import 'node_modules/@forevolve/bootstrap-dark/scss/bootstrap-dark.scss';
|
|
||||||
background: #222;
|
|
||||||
color: $gray-100;
|
|
||||||
.dropdown-menu {
|
|
||||||
box-shadow: 0 0.5rem 1rem black;
|
|
||||||
color: $gray-100;
|
|
||||||
background: #121416;
|
|
||||||
}
|
|
||||||
.form-control {
|
|
||||||
background: #121416;
|
|
||||||
color: $gray-100;
|
|
||||||
border: black !important;
|
|
||||||
}
|
|
||||||
.btn-light, .popover-header, .status {
|
|
||||||
background: #121416 !important;
|
|
||||||
color: $gray-100 !important;
|
|
||||||
border: black !important;
|
|
||||||
}
|
|
||||||
a {
|
|
||||||
color: $blue;
|
|
||||||
}
|
|
||||||
.btn {
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
.badge {
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
.input-group-text {
|
|
||||||
border: black;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@import "custom-variables";
|
@import "custom-variables";
|
||||||
@import "node_modules/bootstrap/scss/bootstrap";
|
@import "node_modules/bootstrap/scss/bootstrap";
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user