adjust settings page interface to support OLED
add navbar and remove FAB
This commit is contained in:
parent
6aef461d0d
commit
1627cbbf3b
10 changed files with 88 additions and 50 deletions
|
@ -1,22 +1,25 @@
|
|||
.collapsible {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.collapsible .collapsible-header, .collapsible .collapsible-body {
|
||||
background-color: var(--background-color-card);
|
||||
};
|
||||
|
||||
.collapsible > li {
|
||||
border-color: var(--separator-color) !important;
|
||||
};
|
||||
|
||||
/* Active events */
|
||||
.collapsible .collapsible-header:focus, .collapsible .collapsible-header:active {
|
||||
background-color: var(--surface-color);
|
||||
}
|
||||
|
||||
.collapsible .collapsible-header:hover {
|
||||
background-color: var(--hover-color);
|
||||
|
||||
}
|
||||
|
||||
.collapsible .active .collapsible-header {
|
||||
background-color: none;
|
||||
background: linear-gradient(
|
||||
25deg,
|
||||
var(--primary-color-dark) 0%,
|
||||
var(--primary-color) 62%,
|
||||
var(--primary-color-raised-hover-solid) 100%
|
||||
) !important;
|
||||
background: var(--primary-color-gradient) !important;
|
||||
}
|
||||
|
||||
.collapsible > li:has(.collapsible-header:hover) {
|
||||
border: 1px solid var(--hover-color);
|
||||
}
|
|
@ -1,11 +1,16 @@
|
|||
.input-field input, .input-field textarea {
|
||||
background-color: var(--input-color);
|
||||
background-color: var(--input-color) !important;
|
||||
}
|
||||
|
||||
.btn {
|
||||
.btn:not([disabled]) {
|
||||
background-color: var(--secondary-color) !important;
|
||||
}
|
||||
|
||||
.btn[role="primary"], .btn-floating {
|
||||
.btn[role="primary"]:not([disabled]), .btn-floating:not([disabled]) {
|
||||
background-color: var(--primary-color) !important;
|
||||
}
|
||||
|
||||
nav ul:not(.dropdown-content) > li > a:hover:not(.active) {
|
||||
background-color: var(--hover-color) !important;
|
||||
}
|
||||
|
||||
|
|
|
@ -42,15 +42,24 @@
|
|||
--primary-color-numeric: 255, 134, 57 !important;
|
||||
--primary-color-raised-hover-solid: rgba(252, 162, 133) !important;
|
||||
--primary-color-raised-focus-solid: rgba(221, 106, 59) !important;
|
||||
--primary-color-gradient: linear-gradient(
|
||||
43deg,
|
||||
var(--primary-color-dark) 0%,
|
||||
var(--primary-color) 62%,
|
||||
var(--primary-color-raised-hover-solid) 100%
|
||||
) !important;
|
||||
|
||||
--secondary-color-lighter: rgba(221, 106, 59) !important;
|
||||
--secondary-color: rgba(190, 80, 1) !important;
|
||||
--secondary-color-dark: rgba(159, 55, 0) !important;
|
||||
--secondary-color-hover-solid: rgba(252, 162, 133) !important;
|
||||
--secondary-color-focus-solid: rgba(159, 55, 0) !important;
|
||||
--font-on-secondary-container-color: rgba(255, 255, 255) !important;
|
||||
|
||||
--hover-color: rgba(255, 255, 255, 0.04) !important;
|
||||
--hover-color: rgba(255, 255, 255, 0.3) !important;
|
||||
--focus-color: rgba(255, 134, 57,.4) !important;
|
||||
--focus-color-solid: #424242 !important;
|
||||
--active-color: rgba(255, 134, 57,.7) !important;
|
||||
|
||||
--background-color-disabled: rgba(255, 255, 255, 0.12) !important;
|
||||
--background-color-level-4dp: rgba(255, 255, 255, 0.09) !important;
|
||||
|
@ -65,8 +74,6 @@
|
|||
--slider-track-color: rgba(255, 255, 255, 0.26) !important;
|
||||
--switch-thumb-off-color: #bababa !important;
|
||||
|
||||
|
||||
|
||||
--secondary-container-color: rgba(221, 106, 59) !important;
|
||||
|
||||
--md_sys_color_on-surface: 230, 225, 229 !important;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue