0
0
Fork 0

move(style): refs #6486 order style

This commit is contained in:
Pablo Natek 2024-03-01 10:47:20 +01:00
parent bc4e081bee
commit be9b70d9f5
2 changed files with 29 additions and 30 deletions

View File

@ -1,6 +1,30 @@
// app global css in SCSS form
@import './icons.scss';
@import './quasar.variables.scss';
body.body--light {
--fount-color: black;
--vn-sectionColor: #ffffff;
background-color: #e0e0e0;
.q-header .q-toolbar {
color: var(--fount-color);
}
--vn-text: var(--fount-color);
--vn-gray: var(--vn-sectionColor);
--vn-label: #5f5f5f;
--vn-dark: var(--vn-sectionColor);
--vn-light-gray: #e7e3e3;
}
body.body--dark {
--vn-pageColor: #222;
--vn-SectionColor: #3c3b3b;
background-color: var(--vn-pageColor);
--vn-text: white;
--vn-gray: var(--vn-SectionColor);
--vn-label: #a8a8a8;
--vn-dark: var(--vn-SectionColor);
--vn-light-gray: #424242;
}
a {
text-decoration: none;
@ -11,6 +35,10 @@ a {
cursor: pointer;
}
.tx-color-link {
color: $color-link !important;
}
.header-link {
color: $color-link !important;
cursor: pointer;

View File

@ -35,10 +35,6 @@ $dark-shadow-color: black;
$layout-shadow-dark: 0 0 10px 2px #00000033, 0 0px 10px #0000003d;
$spacing-md: 16px;
.tx-color-link {
color: $color-link !important;
}
.bg-success {
background-color: $positive;
}
@ -52,28 +48,3 @@ $spacing-md: 16px;
.bg-alert {
background-color: $negative;
}
body.body--light {
--fount-color: black;
--vn-sectionColor: #ffffff;
background-color: #e0e0e0;
.q-header .q-toolbar {
color: var(--fount-color);
}
--vn-text: var(--fount-color);
--vn-gray: var(--vn-sectionColor);
--vn-label: #5f5f5f;
--vn-dark: var(--vn-sectionColor);
--vn-light-gray: #e7e3e3;
}
body.body--dark {
--vn-pageColor: #222;
--vn-SectionColor: #3c3b3b;
background-color: var(--vn-pageColor);
--vn-text: white;
--vn-gray: var(--vn-SectionColor);
--vn-label: #a8a8a8;
--vn-dark: var(--vn-SectionColor);
--vn-light-gray: #424242;
}