Added new "white" theme

• Added:
- new "white" theme which makes navigation bar white and sets appropriate styles for children
This commit is contained in:
mgabdev
2020-11-03 15:12:24 -06:00
parent 20f9e82959
commit e40f7e6765
8 changed files with 52 additions and 12 deletions

View File

@@ -73,6 +73,17 @@
--radius-small: 0 !important;
}
:root[theme='white'] {
--navigation_background: var(--color_white);
--navigation_blend: #aaa;
--navigation_blend--light: #f2f2f2;
--navigation_primary: var(--color_black);
--navigation_brand: var(--color_brand);
--navigation_search: #F0F2F5;
--color_input_placeholder: var(--color_black-opaquest);
}
:root[theme='muted'] {
--solid_color_primary: #222 !important;
--solid_color_primary-opaque:rgba(34, 34, 34, .6) !important;
@@ -1026,6 +1037,10 @@ pre {
background-color: var(--navigation_background);
}
:root[theme='white'] .bgNavigation {
box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.bgNavigationBlend {
background-color: var(--navigation_blend);
}
@@ -1072,6 +1087,15 @@ pre {
background-color: var(--navigation_primary);
}
:root[theme='white'] .navigationUnderlineActive {
color: var(--color_brand) !important;
}
:root[theme='white'] .navigationUnderlineActive:after {
bottom: 0;
background-color: var(--color_brand);
}
.searchNavigation {
background-color: var(--navigation_search);
}