|
@@ -1,19 +1,55 @@
|
|
|
|
|
+:root {
|
|
|
|
|
+ --color-text-light: #fcfcfc;
|
|
|
|
|
+ --color-text-light-darker: #969696;
|
|
|
|
|
+ --color-text-dark: #181621;
|
|
|
|
|
+ --color-text-nav: #00488b;
|
|
|
|
|
+ --color-text-aside: #22303d;
|
|
|
|
|
+ --color-text-alert: #fa8052;
|
|
|
|
|
+ --color-text-good: #5eaabf;
|
|
|
|
|
+ --color-text-bad: #b0425b;
|
|
|
|
|
+ --color-text-bad-lighter: #c46178;
|
|
|
|
|
+ --color-text-shadow-light: #fcfcfc;
|
|
|
|
|
+ --color-box-shadow-light: #e3e3e3;
|
|
|
|
|
+ --color-border-light: #fcfcfc;
|
|
|
|
|
+ --color-border-light-darker: #e3e3e3;
|
|
|
|
|
+ --color-border-grey: #e3e3e3;
|
|
|
|
|
+ --color-border-nav: #00488b;
|
|
|
|
|
+ --color-border-bad: #b0425b;
|
|
|
|
|
+ --color-background-light: #fcfcfc;
|
|
|
|
|
+ --color-background-light-darker: #e3e3e3;
|
|
|
|
|
+ --color-background-dark: #181621;
|
|
|
|
|
+ --color-background-nav: #0062be;
|
|
|
|
|
+ --color-background-nav-darker: #00488b;
|
|
|
|
|
+ --color-background-aside: #22303d;
|
|
|
|
|
+ --color-background-alert: #fa8052;
|
|
|
|
|
+ --color-background-alert-darker: #f95c20;
|
|
|
|
|
+ --color-background-good: #5eaabf;
|
|
|
|
|
+ --color-background-bad: #c46178;
|
|
|
|
|
+ --color-background-stared: #fff6da;
|
|
|
|
|
+ --color-background-unread: #fff3ed;
|
|
|
|
|
+ --color-background-hover: #fff;
|
|
|
|
|
+ --frss-scrollbar-handle: rgba(0, 0, 0, 0.1);
|
|
|
|
|
+ --frss-scrollbar-handle-hover: rgba(0, 0, 0, 0.4);
|
|
|
|
|
+ --frss-scrollbar-track: rgba(0, 0, 0, 0.05);
|
|
|
|
|
+ --frss-scrollbar-track-hover: rgba(0, 0, 0, 0.1);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
input,
|
|
input,
|
|
|
select, textarea {
|
|
select, textarea {
|
|
|
min-height: 25px;
|
|
min-height: 25px;
|
|
|
margin-top: 4px;
|
|
margin-top: 4px;
|
|
|
line-height: 29px;
|
|
line-height: 29px;
|
|
|
vertical-align: middle;
|
|
vertical-align: middle;
|
|
|
- background: #fcfcfc;
|
|
|
|
|
- border: 2px solid #e3e3e3;
|
|
|
|
|
|
|
+ background-color: var(--color-background-light);
|
|
|
|
|
+ border: 2px solid var(--color-border-grey);
|
|
|
padding-left: 8px;
|
|
padding-left: 8px;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
input:invalid,
|
|
input:invalid,
|
|
|
select:invalid {
|
|
select:invalid {
|
|
|
padding-left: 5px;
|
|
padding-left: 5px;
|
|
|
- color: #b0425b;
|
|
|
|
|
- border-left-color: #b0425b;
|
|
|
|
|
|
|
+ color: var(--color-text-bad);
|
|
|
|
|
+ border-left-color: var(--color-border-bad);
|
|
|
border-left-width: 5px;
|
|
border-left-width: 5px;
|
|
|
box-shadow: none;
|
|
box-shadow: none;
|
|
|
}
|
|
}
|
|
@@ -29,7 +65,7 @@ select:invalid {
|
|
|
.dropdown-menu > .item > .as-link,
|
|
.dropdown-menu > .item > .as-link,
|
|
|
.dropdown-menu > .item button, .dropdown-menu > .item {
|
|
.dropdown-menu > .item button, .dropdown-menu > .item {
|
|
|
padding: 0 22px;
|
|
padding: 0 22px;
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
font-size: 0.8rem;
|
|
font-size: 0.8rem;
|
|
|
line-height: 2.5em;
|
|
line-height: 2.5em;
|
|
|
}
|
|
}
|
|
@@ -46,12 +82,12 @@ select:invalid {
|
|
|
|
|
|
|
|
html,
|
|
html,
|
|
|
body {
|
|
body {
|
|
|
- color: black;
|
|
|
|
|
|
|
+ color: var(--color-text-dark);
|
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
a {
|
|
|
- color: #00488b;
|
|
|
|
|
|
|
+ color: var(--color-nav-lighter);
|
|
|
outline: none;
|
|
outline: none;
|
|
|
}
|
|
}
|
|
|
a.btn {
|
|
a.btn {
|
|
@@ -80,10 +116,10 @@ sup {
|
|
|
legend {
|
|
legend {
|
|
|
margin: 20px 0 5px;
|
|
margin: 20px 0 5px;
|
|
|
padding: 5px 20px;
|
|
padding: 5px 20px;
|
|
|
- background: #22303d;
|
|
|
|
|
|
|
+ background-color: var(--color-background-aside);
|
|
|
display: inline-block;
|
|
display: inline-block;
|
|
|
width: auto;
|
|
width: auto;
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
font-size: 1.4em;
|
|
font-size: 1.4em;
|
|
|
clear: both;
|
|
clear: both;
|
|
|
}
|
|
}
|
|
@@ -97,16 +133,16 @@ textarea {
|
|
|
height: 100px;
|
|
height: 100px;
|
|
|
}
|
|
}
|
|
|
textarea:focus {
|
|
textarea:focus {
|
|
|
- border-color: #00488b;
|
|
|
|
|
|
|
+ border-color: var(--color-border-nav);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
input:focus,
|
|
input:focus,
|
|
|
select:focus {
|
|
select:focus {
|
|
|
- border-color: #00488b;
|
|
|
|
|
|
|
+ border-color: var(--color-border-nav);
|
|
|
}
|
|
}
|
|
|
input:disabled,
|
|
input:disabled,
|
|
|
select:disabled {
|
|
select:disabled {
|
|
|
- background: #fcfcfc;
|
|
|
|
|
|
|
+ background-color: var(--color-background-light);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
select {
|
|
@@ -130,11 +166,11 @@ tr,
|
|
|
td,
|
|
td,
|
|
|
th {
|
|
th {
|
|
|
padding: 0.5em;
|
|
padding: 0.5em;
|
|
|
- border: 1px solid #e3e3e3;
|
|
|
|
|
|
|
+ border: 1px solid var(--color-border-light-darker);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
th {
|
|
th {
|
|
|
- background: #fcfcfc;
|
|
|
|
|
|
|
+ background-color: var(--color-background-light);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
form td,
|
|
form td,
|
|
@@ -143,49 +179,6 @@ form th {
|
|
|
text-align: center;
|
|
text-align: center;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-@supports (scrollbar-width: thin) {
|
|
|
|
|
- #sidebar,
|
|
|
|
|
-.scrollbar-thin {
|
|
|
|
|
- scrollbar-color: rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
|
|
|
|
|
- scrollbar-width: thin;
|
|
|
|
|
- }
|
|
|
|
|
- #sidebar:hover,
|
|
|
|
|
-.scrollbar-thin:hover {
|
|
|
|
|
- scrollbar-color: rgba(255, 255, 255, 0.5) rgba(255, 255, 255, 0.2);
|
|
|
|
|
- }
|
|
|
|
|
- #slider.scrollbar-thin {
|
|
|
|
|
- scrollbar-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.05);
|
|
|
|
|
- }
|
|
|
|
|
- #slider.scrollbar-thin:hover {
|
|
|
|
|
- scrollbar-color: rgba(0, 0, 0, 0.4) rgba(0, 0, 0, 0.1);
|
|
|
|
|
- }
|
|
|
|
|
-}
|
|
|
|
|
-@supports not (scrollbar-width: thin) {
|
|
|
|
|
- #sidebar::-webkit-scrollbar,
|
|
|
|
|
-.scrollbar-thin::-webkit-scrollbar {
|
|
|
|
|
- background: rgba(255, 255, 255, 0);
|
|
|
|
|
- width: 8px;
|
|
|
|
|
- }
|
|
|
|
|
- #sidebar::-webkit-scrollbar-thumb,
|
|
|
|
|
-.scrollbar-thin::-webkit-scrollbar-thumb {
|
|
|
|
|
- background: rgba(255, 255, 255, 0);
|
|
|
|
|
- display: unset;
|
|
|
|
|
- border-radius: 5px;
|
|
|
|
|
- }
|
|
|
|
|
- #sidebar:hover::-webkit-scrollbar-thumb,
|
|
|
|
|
-.scrollbar-thin:hover::-webkit-scrollbar-thumb {
|
|
|
|
|
- background: rgba(255, 255, 255, 0.5);
|
|
|
|
|
- }
|
|
|
|
|
- #slider.scrollbar-thin::-webkit-scrollbar {
|
|
|
|
|
- background: rgba(0, 0, 0, 0.05);
|
|
|
|
|
- }
|
|
|
|
|
- #slider.scrollbar-thin::-webkit-scrollbar-thumb {
|
|
|
|
|
- background: rgba(0, 0, 0, 0.1);
|
|
|
|
|
- }
|
|
|
|
|
- #slider.scrollbar-thin:hover::-webkit-scrollbar-thumb {
|
|
|
|
|
- background: rgba(0, 0, 0, 0.3);
|
|
|
|
|
- }
|
|
|
|
|
-}
|
|
|
|
|
.category .title.error::before {
|
|
.category .title.error::before {
|
|
|
display: inline-block;
|
|
display: inline-block;
|
|
|
padding-right: 7px;
|
|
padding-right: 7px;
|
|
@@ -198,14 +191,14 @@ form th {
|
|
|
border: 1px solid transparent;
|
|
border: 1px solid transparent;
|
|
|
}
|
|
}
|
|
|
.form-group:hover {
|
|
.form-group:hover {
|
|
|
- background: #fcfcfc;
|
|
|
|
|
- border: 1px solid #fcfcfc;
|
|
|
|
|
|
|
+ background-color: var(--color-background-light);
|
|
|
|
|
+ border: 1px solid var(--color-border-light);
|
|
|
}
|
|
}
|
|
|
.form-group.form-actions {
|
|
.form-group.form-actions {
|
|
|
margin: 15px 0 25px;
|
|
margin: 15px 0 25px;
|
|
|
padding: 5px 0;
|
|
padding: 5px 0;
|
|
|
- background: #e3e3e3;
|
|
|
|
|
- border-top: 3px solid #e3e3e3;
|
|
|
|
|
|
|
+ background-color: var(--color-background-light-darker);
|
|
|
|
|
+ border-top: 3px solid var(--color-border-light-darker);
|
|
|
}
|
|
}
|
|
|
.form-group.form-actions .btn {
|
|
.form-group.form-actions .btn {
|
|
|
margin: 0 10px;
|
|
margin: 0 10px;
|
|
@@ -228,9 +221,9 @@ form th {
|
|
|
.btn {
|
|
.btn {
|
|
|
margin: 0;
|
|
margin: 0;
|
|
|
padding: 5px 10px;
|
|
padding: 5px 10px;
|
|
|
- background: #0062be;
|
|
|
|
|
|
|
+ background-color: var(--color-background-nav);
|
|
|
display: inline-block;
|
|
display: inline-block;
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
font-size: 0.9rem;
|
|
font-size: 0.9rem;
|
|
|
border: none;
|
|
border: none;
|
|
|
min-height: 35px;
|
|
min-height: 35px;
|
|
@@ -240,7 +233,7 @@ form th {
|
|
|
overflow: hidden;
|
|
overflow: hidden;
|
|
|
}
|
|
}
|
|
|
.btn.active, .btn:active, .btn:hover {
|
|
.btn.active, .btn:active, .btn:hover {
|
|
|
- background: #00488b;
|
|
|
|
|
|
|
+ background-color: var(--color-background-nav-darker);
|
|
|
text-decoration: none;
|
|
text-decoration: none;
|
|
|
}
|
|
}
|
|
|
.btn .icon {
|
|
.btn .icon {
|
|
@@ -249,13 +242,13 @@ form th {
|
|
|
|
|
|
|
|
.btn-important, .btn-attention {
|
|
.btn-important, .btn-attention {
|
|
|
font-weight: normal;
|
|
font-weight: normal;
|
|
|
- background: #fa8052;
|
|
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ background-color: var(--color-background-alert);
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
}
|
|
}
|
|
|
.btn-important:hover,
|
|
.btn-important:hover,
|
|
|
.btn-important :active, .btn-attention:hover,
|
|
.btn-important :active, .btn-attention:hover,
|
|
|
.btn-attention :active {
|
|
.btn-attention :active {
|
|
|
- background: #f95c20 !important;
|
|
|
|
|
|
|
+ background-color: var(--color-background-alert-darker) !important;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.manage-list .configure .icon {
|
|
.manage-list .configure .icon {
|
|
@@ -267,7 +260,7 @@ form th {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.switch.active {
|
|
.switch.active {
|
|
|
- background-color: #0062be;
|
|
|
|
|
|
|
+ background-color: var(--color-background-nav);
|
|
|
}
|
|
}
|
|
|
.switch.active:hover {
|
|
.switch.active:hover {
|
|
|
background-image: url("./icons/disabled-light.svg");
|
|
background-image: url("./icons/disabled-light.svg");
|
|
@@ -276,39 +269,39 @@ form th {
|
|
|
.nav-list .nav-header {
|
|
.nav-list .nav-header {
|
|
|
padding: 0 1rem;
|
|
padding: 0 1rem;
|
|
|
font-weight: bold;
|
|
font-weight: bold;
|
|
|
- background: #22303d;
|
|
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ background-color: var(--color-background-aside);
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
cursor: default;
|
|
cursor: default;
|
|
|
}
|
|
}
|
|
|
.nav-list .item a:hover {
|
|
.nav-list .item a:hover {
|
|
|
- background: #00488b;
|
|
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ background-color: var(--color-background-nav-darker);
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
}
|
|
}
|
|
|
.nav-list .item.active {
|
|
.nav-list .item.active {
|
|
|
- background: #00488b;
|
|
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ background: var(--color-background-nav-darker);
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
}
|
|
}
|
|
|
.nav-list .item.active a {
|
|
.nav-list .item.active a {
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
}
|
|
}
|
|
|
.nav-list .item.active.empty a,
|
|
.nav-list .item.active.empty a,
|
|
|
.nav-list .item.active .error a {
|
|
.nav-list .item.active .error a {
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
}
|
|
}
|
|
|
.nav-list .item.active.empty a {
|
|
.nav-list .item.active.empty a {
|
|
|
- background: #fa8052;
|
|
|
|
|
|
|
+ background-color: var(--color-background-alert);
|
|
|
}
|
|
}
|
|
|
.nav-list .item.active.error a {
|
|
.nav-list .item.active.error a {
|
|
|
- background: #c46178;
|
|
|
|
|
|
|
+ background-color: var(--color-background-bad);
|
|
|
}
|
|
}
|
|
|
.nav-list .item > a {
|
|
.nav-list .item > a {
|
|
|
padding: 0 1.5rem;
|
|
padding: 0 1.5rem;
|
|
|
}
|
|
}
|
|
|
.nav-list .item.empty a {
|
|
.nav-list .item.empty a {
|
|
|
- color: #fa8052;
|
|
|
|
|
|
|
+ color: var(--color-text-alert);
|
|
|
}
|
|
}
|
|
|
.nav-list .item.error a {
|
|
.nav-list .item.error a {
|
|
|
- color: #c46178;
|
|
|
|
|
|
|
+ color: var(--color-text-bad-lighter);
|
|
|
}
|
|
}
|
|
|
.nav-list .item .icon {
|
|
.nav-list .item .icon {
|
|
|
filter: brightness(3);
|
|
filter: brightness(3);
|
|
@@ -326,13 +319,13 @@ form th {
|
|
|
font-size: 0.8rem;
|
|
font-size: 0.8rem;
|
|
|
text-align: left;
|
|
text-align: left;
|
|
|
border: none;
|
|
border: none;
|
|
|
- background-color: #00488b;
|
|
|
|
|
|
|
+ background-color: var(--color-background-nav-darker);
|
|
|
}
|
|
}
|
|
|
.dropdown-menu .dropdown-header {
|
|
.dropdown-menu .dropdown-header {
|
|
|
cursor: default;
|
|
cursor: default;
|
|
|
padding: 0.5rem 10px 0.5rem 10px;
|
|
padding: 0.5rem 10px 0.5rem 10px;
|
|
|
font-weight: bold;
|
|
font-weight: bold;
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
}
|
|
}
|
|
|
.dropdown-menu .dropdown-header a {
|
|
.dropdown-menu .dropdown-header a {
|
|
|
padding: 0 5px;
|
|
padding: 0 5px;
|
|
@@ -340,7 +333,7 @@ form th {
|
|
|
right: 5px;
|
|
right: 5px;
|
|
|
}
|
|
}
|
|
|
.dropdown-menu .dropdown-header a:hover {
|
|
.dropdown-menu .dropdown-header a:hover {
|
|
|
- background-color: #0062be;
|
|
|
|
|
|
|
+ background-color: var(--color-background-nav);
|
|
|
}
|
|
}
|
|
|
.dropdown-menu::after {
|
|
.dropdown-menu::after {
|
|
|
content: none;
|
|
content: none;
|
|
@@ -355,8 +348,8 @@ form th {
|
|
|
}
|
|
}
|
|
|
.dropdown-menu > .item > a:hover,
|
|
.dropdown-menu > .item > a:hover,
|
|
|
.dropdown-menu > .item > button:hover {
|
|
.dropdown-menu > .item > button:hover {
|
|
|
- background: #0062be;
|
|
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ background-color: var(--color-background-nav);
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
}
|
|
}
|
|
|
.dropdown-menu > .item[aria-checked=true] > a::before {
|
|
.dropdown-menu > .item[aria-checked=true] > a::before {
|
|
|
font-weight: bold;
|
|
font-weight: bold;
|
|
@@ -376,18 +369,18 @@ form th {
|
|
|
|
|
|
|
|
.item ~ .dropdown-header,
|
|
.item ~ .dropdown-header,
|
|
|
.item.separator {
|
|
.item.separator {
|
|
|
- border-top-color: #e3e3e3;
|
|
|
|
|
|
|
+ border-top-color: var(--color-border-light-darker);
|
|
|
cursor: default;
|
|
cursor: default;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.alert {
|
|
.alert {
|
|
|
margin: 5px auto;
|
|
margin: 5px auto;
|
|
|
padding: 10px 15px;
|
|
padding: 10px 15px;
|
|
|
- background: #fcfcfc;
|
|
|
|
|
- color: #969696;
|
|
|
|
|
|
|
+ background-color: var(--color-background-light);
|
|
|
|
|
+ color: var(--color-text-light-darker);
|
|
|
font-size: 0.9em;
|
|
font-size: 0.9em;
|
|
|
border: none;
|
|
border: none;
|
|
|
- text-shadow: 0 0 1px #fcfcfc;
|
|
|
|
|
|
|
+ text-shadow: 0 0 1px var(--color-text-shadow-light);
|
|
|
}
|
|
}
|
|
|
.alert > a {
|
|
.alert > a {
|
|
|
color: inherit;
|
|
color: inherit;
|
|
@@ -405,31 +398,31 @@ form th {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.alert-warn {
|
|
.alert-warn {
|
|
|
- background: #fcfcfc;
|
|
|
|
|
- color: #fa8052;
|
|
|
|
|
|
|
+ background-color: var(--color-background-light);
|
|
|
|
|
+ color: var(--color-text-alert);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.alert-success {
|
|
.alert-success {
|
|
|
- background: #fcfcfc;
|
|
|
|
|
- color: #5eaabf;
|
|
|
|
|
|
|
+ background-color: var(--color-background-light);
|
|
|
|
|
+ color: var(--color-text-good);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.alert-error {
|
|
.alert-error {
|
|
|
- background: #fcfcfc;
|
|
|
|
|
- color: #b0425b;
|
|
|
|
|
|
|
+ background-color: var(--color-background-light);
|
|
|
|
|
+ color: var(--color-text-bad);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.pagination {
|
|
.pagination {
|
|
|
- background: #e3e3e3;
|
|
|
|
|
- color: #181621;
|
|
|
|
|
|
|
+ background: var(--color-background-light-darker);
|
|
|
|
|
+ color: var(--color_text);
|
|
|
}
|
|
}
|
|
|
.pagination .item a {
|
|
.pagination .item a {
|
|
|
- color: #181621;
|
|
|
|
|
|
|
+ color: var(--color_text);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
#load_more.loading,
|
|
#load_more.loading,
|
|
|
#load_more.loading:hover {
|
|
#load_more.loading:hover {
|
|
|
- background: url(loader.gif) center center no-repeat #22303d;
|
|
|
|
|
|
|
+ background: url(loader.gif) center center no-repeat var(--color-background-aside);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
.content {
|
|
@@ -437,58 +430,58 @@ form th {
|
|
|
}
|
|
}
|
|
|
.content hr {
|
|
.content hr {
|
|
|
margin: 30px 10px;
|
|
margin: 30px 10px;
|
|
|
- background: #e3e3e3;
|
|
|
|
|
|
|
+ background: var(--color-background-light-darker);
|
|
|
height: 1px;
|
|
height: 1px;
|
|
|
border: 0;
|
|
border: 0;
|
|
|
- box-shadow: 0 2px 5px #e3e3e3;
|
|
|
|
|
|
|
+ box-shadow: 0 2px 5px var(--color-box-shadow-light);
|
|
|
}
|
|
}
|
|
|
.content pre {
|
|
.content pre {
|
|
|
margin: 10px auto;
|
|
margin: 10px auto;
|
|
|
padding: 10px 20px;
|
|
padding: 10px 20px;
|
|
|
overflow: auto;
|
|
overflow: auto;
|
|
|
- background: #181621;
|
|
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ background-color: var(--color-background-dark);
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
font-size: 0.9rem;
|
|
font-size: 0.9rem;
|
|
|
}
|
|
}
|
|
|
.content pre code {
|
|
.content pre code {
|
|
|
background: transparent;
|
|
background: transparent;
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
border: none;
|
|
border: none;
|
|
|
}
|
|
}
|
|
|
.content code {
|
|
.content code {
|
|
|
padding: 2px 5px;
|
|
padding: 2px 5px;
|
|
|
- background: #fcfcfc;
|
|
|
|
|
- color: #b0425b;
|
|
|
|
|
- border: 1px solid #fcfcfc;
|
|
|
|
|
|
|
+ background-color: var(--color-background-light);
|
|
|
|
|
+ color: var(--color-text-bad);
|
|
|
|
|
+ border: 1px solid var(--color-border-light);
|
|
|
}
|
|
}
|
|
|
.content blockquote {
|
|
.content blockquote {
|
|
|
margin: 0;
|
|
margin: 0;
|
|
|
padding: 5px 20px;
|
|
padding: 5px 20px;
|
|
|
- background: #fcfcfc;
|
|
|
|
|
|
|
+ background-color: var(--color-background-light);
|
|
|
display: block;
|
|
display: block;
|
|
|
- color: #969696;
|
|
|
|
|
- border-top: 1px solid #e3e3e3;
|
|
|
|
|
- border-bottom: 1px solid #e3e3e3;
|
|
|
|
|
|
|
+ color: var(--color-text-light-darker);
|
|
|
|
|
+ border-top: 1px solid var(--color-border-light-darker);
|
|
|
|
|
+ border-bottom: 1px solid var(--color-border-light-darker);
|
|
|
}
|
|
}
|
|
|
.content blockquote p {
|
|
.content blockquote p {
|
|
|
margin: 0;
|
|
margin: 0;
|
|
|
}
|
|
}
|
|
|
.content > h1.title > a {
|
|
.content > h1.title > a {
|
|
|
- color: #181621;
|
|
|
|
|
|
|
+ color: var(--color_text);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.box {
|
|
.box {
|
|
|
- border: 1px solid #e3e3e3;
|
|
|
|
|
|
|
+ border: 1px solid var(--color-border-light-darker);
|
|
|
}
|
|
}
|
|
|
.box .box-title {
|
|
.box .box-title {
|
|
|
margin: 0;
|
|
margin: 0;
|
|
|
padding: 7px 10px;
|
|
padding: 7px 10px;
|
|
|
- background: #22303d;
|
|
|
|
|
- color: #fcfcfc;
|
|
|
|
|
- border-bottom: 1px solid #e3e3e3;
|
|
|
|
|
|
|
+ background-color: var(--color-background-aside);
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
|
|
+ border-bottom: 1px solid var(--color-border-light-darker);
|
|
|
}
|
|
}
|
|
|
.box .box-title a {
|
|
.box .box-title a {
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
}
|
|
}
|
|
|
.box .box-title .configure {
|
|
.box .box-title .configure {
|
|
|
margin-right: 4px;
|
|
margin-right: 4px;
|
|
@@ -518,14 +511,14 @@ form th {
|
|
|
text-align: left;
|
|
text-align: left;
|
|
|
}
|
|
}
|
|
|
.box.category:not([data-unread="0"]) .box-title {
|
|
.box.category:not([data-unread="0"]) .box-title {
|
|
|
- background: #0062be;
|
|
|
|
|
|
|
+ background-color: var(--color-background-nav);
|
|
|
}
|
|
}
|
|
|
.box.category:not([data-unread="0"]) .box-title:active {
|
|
.box.category:not([data-unread="0"]) .box-title:active {
|
|
|
- background: #00488b;
|
|
|
|
|
|
|
+ background: var(--color-background-nav-darker);
|
|
|
}
|
|
}
|
|
|
.box.category:not([data-unread="0"]) .box-title .title {
|
|
.box.category:not([data-unread="0"]) .box-title .title {
|
|
|
font-weight: bold;
|
|
font-weight: bold;
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
}
|
|
}
|
|
|
.box.category .title:not([data-unread="0"])::after {
|
|
.box.category .title:not([data-unread="0"])::after {
|
|
|
background: none;
|
|
background: none;
|
|
@@ -547,20 +540,20 @@ form th {
|
|
|
|
|
|
|
|
.aside_feed .tree-folder-title {
|
|
.aside_feed .tree-folder-title {
|
|
|
padding: 0.3rem 0.75rem;
|
|
padding: 0.3rem 0.75rem;
|
|
|
- background: #22303d;
|
|
|
|
|
|
|
+ background-color: var(--color-background-aside);
|
|
|
font-size: 1rem;
|
|
font-size: 1rem;
|
|
|
position: relative;
|
|
position: relative;
|
|
|
}
|
|
}
|
|
|
.aside_feed .tree-folder-title .title {
|
|
.aside_feed .tree-folder-title .title {
|
|
|
background: inherit;
|
|
background: inherit;
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
}
|
|
}
|
|
|
.aside_feed .tree-folder-title .title:hover {
|
|
.aside_feed .tree-folder-title .title:hover {
|
|
|
text-decoration: none;
|
|
text-decoration: none;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.tree-folder-items {
|
|
.tree-folder-items {
|
|
|
- background: #22303d;
|
|
|
|
|
|
|
+ background-color: var(--color-background-aside);
|
|
|
}
|
|
}
|
|
|
.tree-folder-items > .item {
|
|
.tree-folder-items > .item {
|
|
|
padding: 0 10px;
|
|
padding: 0 10px;
|
|
@@ -568,29 +561,13 @@ form th {
|
|
|
font-size: 0.8rem;
|
|
font-size: 0.8rem;
|
|
|
}
|
|
}
|
|
|
.tree-folder-items > .item.active {
|
|
.tree-folder-items > .item.active {
|
|
|
- background: #00488b;
|
|
|
|
|
|
|
+ background-color: var(--color-background-nav-darker);
|
|
|
}
|
|
}
|
|
|
.tree-folder-items > .item > a {
|
|
.tree-folder-items > .item > a {
|
|
|
text-decoration: none;
|
|
text-decoration: none;
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-@supports (scrollbar-width: thin) {
|
|
|
|
|
- #sidebar {
|
|
|
|
|
- scrollbar-color: rgba(255, 255, 255, 0.05) rgba(0, 0, 0, 0);
|
|
|
|
|
- }
|
|
|
|
|
- #sidebar:hover {
|
|
|
|
|
- scrollbar-color: rgba(255, 255, 255, 0.3) rgba(0, 0, 0, 0);
|
|
|
|
|
- }
|
|
|
|
|
-}
|
|
|
|
|
-@supports not (scrollbar-width: thin) {
|
|
|
|
|
- #sidebar::-webkit-scrollbar-thumb {
|
|
|
|
|
- background: rgba(255, 255, 255, 0.1);
|
|
|
|
|
- }
|
|
|
|
|
- #sidebar:hover::-webkit-scrollbar-thumb {
|
|
|
|
|
- background: rgba(255, 255, 255, 0.3);
|
|
|
|
|
- }
|
|
|
|
|
-}
|
|
|
|
|
.header {
|
|
.header {
|
|
|
height: auto;
|
|
height: auto;
|
|
|
}
|
|
}
|
|
@@ -638,14 +615,14 @@ form th {
|
|
|
|
|
|
|
|
.aside {
|
|
.aside {
|
|
|
padding: 35px 0;
|
|
padding: 35px 0;
|
|
|
- background: #22303d;
|
|
|
|
|
|
|
+ background-color: var(--color-background-aside);
|
|
|
}
|
|
}
|
|
|
.aside.aside_feed .tree {
|
|
.aside.aside_feed .tree {
|
|
|
margin: 0 0 50px;
|
|
margin: 0 0 50px;
|
|
|
}
|
|
}
|
|
|
.aside.aside_feed .tree-folder .tree-folder-title:hover,
|
|
.aside.aside_feed .tree-folder .tree-folder-title:hover,
|
|
|
.aside.aside_feed .tree-folder .item.feed:hover {
|
|
.aside.aside_feed .tree-folder .item.feed:hover {
|
|
|
- background-color: #00488b;
|
|
|
|
|
|
|
+ background-color: var(--color-background-nav-darker);
|
|
|
}
|
|
}
|
|
|
.aside.aside_feed .nav-form input,
|
|
.aside.aside_feed .nav-form input,
|
|
|
.aside.aside_feed .nav-form select {
|
|
.aside.aside_feed .nav-form select {
|
|
@@ -660,12 +637,12 @@ form th {
|
|
|
|
|
|
|
|
.aside_feed .category .title:not([data-unread="0"])::after {
|
|
.aside_feed .category .title:not([data-unread="0"])::after {
|
|
|
margin: 0.5rem 0 0 0;
|
|
margin: 0.5rem 0 0 0;
|
|
|
- background-color: #00488b;
|
|
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ background-color: var(--color-background-nav-darker);
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
}
|
|
}
|
|
|
.aside_feed .feed .item-title:not([data-unread="0"])::after {
|
|
.aside_feed .feed .item-title:not([data-unread="0"])::after {
|
|
|
- background-color: #0062be;
|
|
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ background-color: var(--color-background-nav);
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
}
|
|
}
|
|
|
.aside_feed .tree-folder-items .dropdown-menu::after {
|
|
.aside_feed .tree-folder-items .dropdown-menu::after {
|
|
|
left: 2px;
|
|
left: 2px;
|
|
@@ -679,13 +656,13 @@ form th {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.reader .aside .toggle_aside {
|
|
.reader .aside .toggle_aside {
|
|
|
- background: #22303d;
|
|
|
|
|
|
|
+ background-color: var(--color-background-aside);
|
|
|
}
|
|
}
|
|
|
.reader .aside .toggle_aside .icon {
|
|
.reader .aside .toggle_aside .icon {
|
|
|
filter: brightness(3);
|
|
filter: brightness(3);
|
|
|
}
|
|
}
|
|
|
.reader .aside .toggle_aside:hover {
|
|
.reader .aside .toggle_aside:hover {
|
|
|
- background-color: #0062be;
|
|
|
|
|
|
|
+ background-color: var(--color-background-nav);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.post {
|
|
.post {
|
|
@@ -712,7 +689,7 @@ form th {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
#new-article {
|
|
#new-article {
|
|
|
- background: #0062be;
|
|
|
|
|
|
|
+ background-color: var(--color-background-nav);
|
|
|
font-size: 1em;
|
|
font-size: 1em;
|
|
|
text-align: center;
|
|
text-align: center;
|
|
|
position: fixed;
|
|
position: fixed;
|
|
@@ -725,11 +702,11 @@ form th {
|
|
|
padding: 1rem;
|
|
padding: 1rem;
|
|
|
line-height: 1.5em;
|
|
line-height: 1.5em;
|
|
|
font-weight: bold;
|
|
font-weight: bold;
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
}
|
|
}
|
|
|
#new-article > a:hover {
|
|
#new-article > a:hover {
|
|
|
text-decoration: none;
|
|
text-decoration: none;
|
|
|
- background: #00488b;
|
|
|
|
|
|
|
+ background-color: var(--color-background-nav-darker);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.day {
|
|
.day {
|
|
@@ -743,13 +720,13 @@ form th {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.nav a {
|
|
.nav a {
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.nav_menu {
|
|
.nav_menu {
|
|
|
width: 100%;
|
|
width: 100%;
|
|
|
font-size: 0;
|
|
font-size: 0;
|
|
|
- background-color: #0062be;
|
|
|
|
|
|
|
+ background-color: var(--color-background-nav);
|
|
|
position: sticky;
|
|
position: sticky;
|
|
|
top: 0;
|
|
top: 0;
|
|
|
z-index: 90;
|
|
z-index: 90;
|
|
@@ -770,35 +747,35 @@ form th {
|
|
|
|
|
|
|
|
.flux {
|
|
.flux {
|
|
|
padding-right: 10px;
|
|
padding-right: 10px;
|
|
|
- background: #fcfcfc;
|
|
|
|
|
|
|
+ background-color: var(--color-background-light);
|
|
|
}
|
|
}
|
|
|
.flux::after {
|
|
.flux::after {
|
|
|
margin: 0 auto;
|
|
margin: 0 auto;
|
|
|
width: 90%;
|
|
width: 90%;
|
|
|
- border-top: 1px solid #e3e3e3;
|
|
|
|
|
|
|
+ border-top: 1px solid var(--color-border-light-darker);
|
|
|
}
|
|
}
|
|
|
.flux:hover,
|
|
.flux:hover,
|
|
|
.flux .current {
|
|
.flux .current {
|
|
|
- background: #fff;
|
|
|
|
|
|
|
+ background-color: var(--color-background-hover);
|
|
|
}
|
|
}
|
|
|
.flux:hover:not(.current):hover .item.title,
|
|
.flux:hover:not(.current):hover .item.title,
|
|
|
.flux .current:not(.current):hover .item.title {
|
|
.flux .current:not(.current):hover .item.title {
|
|
|
- background: #fff;
|
|
|
|
|
|
|
+ background-color: var(--color-background-hover);
|
|
|
}
|
|
}
|
|
|
.flux.favorite:not(.current) {
|
|
.flux.favorite:not(.current) {
|
|
|
- background: #fff6da;
|
|
|
|
|
|
|
+ background-color: var(--color-background-stared);
|
|
|
}
|
|
}
|
|
|
.flux.favorite:not(.current):hover .item.title {
|
|
.flux.favorite:not(.current):hover .item.title {
|
|
|
- background: #fff6da;
|
|
|
|
|
|
|
+ background-color: var(--color-background-stared);
|
|
|
}
|
|
}
|
|
|
.flux.not_read:not(.current) {
|
|
.flux.not_read:not(.current) {
|
|
|
- background: #fff3ed;
|
|
|
|
|
|
|
+ background-color: var(--color-background-unread);
|
|
|
}
|
|
}
|
|
|
.flux.not_read:not(.current):hover .item.title {
|
|
.flux.not_read:not(.current):hover .item.title {
|
|
|
- background: #fff3ed;
|
|
|
|
|
|
|
+ background-color: var(--color-background-unread);
|
|
|
}
|
|
}
|
|
|
.flux .item.date {
|
|
.flux .item.date {
|
|
|
- color: #969696;
|
|
|
|
|
|
|
+ color: var(--color-text-light-darker);
|
|
|
font-size: 0.7rem;
|
|
font-size: 0.7rem;
|
|
|
}
|
|
}
|
|
|
.flux .bottom {
|
|
.flux .bottom {
|
|
@@ -806,7 +783,7 @@ form th {
|
|
|
text-align: center;
|
|
text-align: center;
|
|
|
}
|
|
}
|
|
|
.flux label {
|
|
.flux label {
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -820,9 +797,9 @@ form th {
|
|
|
|
|
|
|
|
.notification {
|
|
.notification {
|
|
|
padding: 10px 0;
|
|
padding: 10px 0;
|
|
|
- background: #e3e3e3;
|
|
|
|
|
|
|
+ background-color: var(--color-background-light-darker);
|
|
|
height: auto;
|
|
height: auto;
|
|
|
- color: #969696;
|
|
|
|
|
|
|
+ color: var(--color-text-light-darker);
|
|
|
font-size: 1em;
|
|
font-size: 1em;
|
|
|
border: none;
|
|
border: none;
|
|
|
text-align: center;
|
|
text-align: center;
|
|
@@ -834,19 +811,19 @@ form th {
|
|
|
top: auto;
|
|
top: auto;
|
|
|
}
|
|
}
|
|
|
.notification.good, .notification.bad {
|
|
.notification.good, .notification.bad {
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
}
|
|
}
|
|
|
.notification.good {
|
|
.notification.good {
|
|
|
- background: #5eaabf;
|
|
|
|
|
|
|
+ background-color: var(--color-background-good);
|
|
|
}
|
|
}
|
|
|
.notification.good a.close:hover {
|
|
.notification.good a.close:hover {
|
|
|
- background: #5eaabf;
|
|
|
|
|
|
|
+ background-color: var(--color-background-good);
|
|
|
}
|
|
}
|
|
|
.notification.bad {
|
|
.notification.bad {
|
|
|
- background: #c46178;
|
|
|
|
|
|
|
+ background-color: var(--color-background-bad);
|
|
|
}
|
|
}
|
|
|
.notification.bad a.close:hover {
|
|
.notification.bad a.close:hover {
|
|
|
- background: #c46178;
|
|
|
|
|
|
|
+ background-color: var(--color-background-bad);
|
|
|
}
|
|
}
|
|
|
.notification#actualizeProgress {
|
|
.notification#actualizeProgress {
|
|
|
line-height: 2em;
|
|
line-height: 2em;
|
|
@@ -858,11 +835,11 @@ form th {
|
|
|
#bigMarkAsRead {
|
|
#bigMarkAsRead {
|
|
|
text-align: center;
|
|
text-align: center;
|
|
|
text-decoration: none;
|
|
text-decoration: none;
|
|
|
- background: #e3e3e3;
|
|
|
|
|
|
|
+ background: var(--color-background-light-darker);
|
|
|
}
|
|
}
|
|
|
#bigMarkAsRead:hover {
|
|
#bigMarkAsRead:hover {
|
|
|
- background: #22303d;
|
|
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ background-color: var(--color-background-aside);
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
#nav_entries {
|
|
#nav_entries {
|
|
@@ -870,7 +847,7 @@ form th {
|
|
|
text-align: center;
|
|
text-align: center;
|
|
|
line-height: 3em;
|
|
line-height: 3em;
|
|
|
table-layout: fixed;
|
|
table-layout: fixed;
|
|
|
- background: #22303d;
|
|
|
|
|
|
|
+ background-color: var(--color-background-aside);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.stat {
|
|
.stat {
|
|
@@ -883,7 +860,7 @@ form th {
|
|
|
}
|
|
}
|
|
|
.stat > table td,
|
|
.stat > table td,
|
|
|
.stat > table th {
|
|
.stat > table th {
|
|
|
- border-bottom: 1px solid #e3e3e3;
|
|
|
|
|
|
|
+ border-bottom: 1px solid var(--color-border-light-darker);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
#overlay {
|
|
#overlay {
|
|
@@ -903,7 +880,7 @@ form th {
|
|
|
}
|
|
}
|
|
|
.formLogin .header,
|
|
.formLogin .header,
|
|
|
.register .header {
|
|
.register .header {
|
|
|
- background: #0062be;
|
|
|
|
|
|
|
+ background-color: var(--color-background-nav);
|
|
|
height: 35px;
|
|
height: 35px;
|
|
|
position: relative;
|
|
position: relative;
|
|
|
}
|
|
}
|
|
@@ -922,20 +899,20 @@ form th {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
a.signin {
|
|
a.signin {
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
font-size: 70%;
|
|
font-size: 70%;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.log-item.log-error {
|
|
.log-item.log-error {
|
|
|
- background: #c46178;
|
|
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ background-color: var(--color-background-bad);
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
}
|
|
}
|
|
|
.log-item.log-warning {
|
|
.log-item.log-warning {
|
|
|
- background: #fa8052;
|
|
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ background-color: var(--color-background-alert);
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
}
|
|
}
|
|
|
.log-item.log-debug {
|
|
.log-item.log-debug {
|
|
|
- background: #181621;
|
|
|
|
|
|
|
+ background: var(--color-background-dark);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 840px) {
|
|
@media (max-width: 840px) {
|
|
@@ -984,10 +961,10 @@ a.signin {
|
|
|
transition: width 200ms linear;
|
|
transition: width 200ms linear;
|
|
|
}
|
|
}
|
|
|
.aside .toggle_aside {
|
|
.aside .toggle_aside {
|
|
|
- background: #22303d;
|
|
|
|
|
|
|
+ background-color: var(--color-background-aside);
|
|
|
}
|
|
}
|
|
|
.aside .toggle_aside:hover {
|
|
.aside .toggle_aside:hover {
|
|
|
- background-color: #0062be;
|
|
|
|
|
|
|
+ background-color: var(--color-background-nav);
|
|
|
}
|
|
}
|
|
|
.aside .toggle_aside .icon {
|
|
.aside .toggle_aside .icon {
|
|
|
filter: brightness(3);
|
|
filter: brightness(3);
|
|
@@ -1003,10 +980,10 @@ a.signin {
|
|
|
z-index: 1000;
|
|
z-index: 1000;
|
|
|
}
|
|
}
|
|
|
#slider .toggle_aside {
|
|
#slider .toggle_aside {
|
|
|
- background: #22303d;
|
|
|
|
|
|
|
+ background-color: var(--color-background-aside);
|
|
|
}
|
|
}
|
|
|
#slider .toggle_aside:hover {
|
|
#slider .toggle_aside:hover {
|
|
|
- background-color: #0062be;
|
|
|
|
|
|
|
+ background-color: var(--color-background-nav);
|
|
|
}
|
|
}
|
|
|
#slider .toggle_aside .icon {
|
|
#slider .toggle_aside .icon {
|
|
|
filter: brightness(3);
|
|
filter: brightness(3);
|
|
@@ -1037,7 +1014,7 @@ a.signin {
|
|
|
}
|
|
}
|
|
|
#panel .close,
|
|
#panel .close,
|
|
|
.dropdown-menu .toggle_aside {
|
|
.dropdown-menu .toggle_aside {
|
|
|
- background: #22303d;
|
|
|
|
|
|
|
+ background-color: var(--color-background-aside);
|
|
|
display: block;
|
|
display: block;
|
|
|
height: 50px;
|
|
height: 50px;
|
|
|
line-height: 50px;
|
|
line-height: 50px;
|
|
@@ -1046,7 +1023,7 @@ a.signin {
|
|
|
}
|
|
}
|
|
|
#panel .close:hover,
|
|
#panel .close:hover,
|
|
|
.dropdown-menu .toggle_aside:hover {
|
|
.dropdown-menu .toggle_aside:hover {
|
|
|
- background-color: #0062be;
|
|
|
|
|
|
|
+ background-color: var(--color-background-nav);
|
|
|
}
|
|
}
|
|
|
.dropdown-target:target ~ .dropdown-toggle::after,
|
|
.dropdown-target:target ~ .dropdown-toggle::after,
|
|
|
.dropdown-target:target ~ .dropdown-toggle.btn::after {
|
|
.dropdown-target:target ~ .dropdown-toggle.btn::after {
|
|
@@ -1132,55 +1109,55 @@ button.as-link {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.dropdown-target:target ~ .btn.dropdown-toggle {
|
|
.dropdown-target:target ~ .btn.dropdown-toggle {
|
|
|
- background: #00488b;
|
|
|
|
|
|
|
+ background-color: var(--color-background-nav-darker);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.tree-folder.active .tree-folder-title {
|
|
.tree-folder.active .tree-folder-title {
|
|
|
- background: #00488b;
|
|
|
|
|
|
|
+ background-color: var(--color-background-nav-darker);
|
|
|
font-weight: bold;
|
|
font-weight: bold;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.feed.item.empty {
|
|
.feed.item.empty {
|
|
|
- color: #fa8052;
|
|
|
|
|
|
|
+ color: var(--color-text-alert);
|
|
|
}
|
|
}
|
|
|
.feed.item.empty.active {
|
|
.feed.item.empty.active {
|
|
|
- background: #fa8052;
|
|
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ background-color: var(--color-background-alert);
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
}
|
|
}
|
|
|
.feed.item.empty.active > a {
|
|
.feed.item.empty.active > a {
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
}
|
|
}
|
|
|
.feed.item.empty > a {
|
|
.feed.item.empty > a {
|
|
|
- color: #fa8052;
|
|
|
|
|
|
|
+ color: var(--color-text-alert);
|
|
|
}
|
|
}
|
|
|
.feed.item.error {
|
|
.feed.item.error {
|
|
|
- color: #c46178;
|
|
|
|
|
|
|
+ color: var(--color-text-bad-lighter);
|
|
|
}
|
|
}
|
|
|
.feed.item.error.active {
|
|
.feed.item.error.active {
|
|
|
- background: #c46178;
|
|
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ background-color: var(--color-background-bad);
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
}
|
|
}
|
|
|
.feed.item.error.active > a {
|
|
.feed.item.error.active > a {
|
|
|
- color: #fcfcfc;
|
|
|
|
|
|
|
+ color: var(--color-text-light);
|
|
|
}
|
|
}
|
|
|
.feed.item.error > a {
|
|
.feed.item.error > a {
|
|
|
- color: #c46178;
|
|
|
|
|
|
|
+ color: var(--color-text-bad-lighter);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
#stream.reader .flux {
|
|
#stream.reader .flux {
|
|
|
- background: #fcfcfc;
|
|
|
|
|
- color: #22303d;
|
|
|
|
|
|
|
+ background-color: var(--color-background-light);
|
|
|
|
|
+ color: var(--color-text-aside);
|
|
|
border: none;
|
|
border: none;
|
|
|
}
|
|
}
|
|
|
#stream.reader .flux::after {
|
|
#stream.reader .flux::after {
|
|
|
border: none;
|
|
border: none;
|
|
|
}
|
|
}
|
|
|
#stream.reader .flux .content {
|
|
#stream.reader .flux .content {
|
|
|
- border-color: #e3e3e3;
|
|
|
|
|
|
|
+ border-color: var(--color-border-grey);
|
|
|
}
|
|
}
|
|
|
#stream.reader .flux .author {
|
|
#stream.reader .flux .author {
|
|
|
margin: 0 0 10px;
|
|
margin: 0 0 10px;
|
|
|
- color: #969696;
|
|
|
|
|
|
|
+ color: var(--color-text-light-darker);
|
|
|
font-size: 90%;
|
|
font-size: 90%;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -1197,3 +1174,5 @@ button.as-link {
|
|
|
#slider label {
|
|
#slider label {
|
|
|
min-height: initial;
|
|
min-height: initial;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+/*# sourceMappingURL=swage.css.map */
|