admin: errors table colors upd

This commit is contained in:
E. S. 2024-03-14 10:54:48 +00:00
parent f0a0af8fcf
commit c6d2d2198c
3 changed files with 14 additions and 11 deletions

View File

@ -6,7 +6,7 @@ table.admin-error-log {
margin-top: 10px;
width: 100%;
border-collapse: collapse;
border: 1px $grey solid;
border: 1px $border-color solid;
font-size: 11px;
table-layout: fixed;
}
@ -16,7 +16,7 @@ table.admin-error-log button {
table.admin-error-log td,
table.admin-error-log th {
padding: 5px;
border: 1px $grey solid;
border: 1px $border-color solid;
text-align: left;
vertical-align: top;
}
@ -42,14 +42,15 @@ table.admin-error-log .admin-error-log-scrollable-wrap {
}
.admin-error-log-num {
padding: 1px 2px;
background: $light-grey;
color: $bg;
background: $hover-hl;
color: $darker-grey;
> a {
color: $darker-grey;
&:hover {
color: $fg;
text-decoration: none;
}
.admin-error-log-num > a {
color: $bg;
}
.admin-error-log-num > a:hover {
color: $link-color;
}
.admin-error-log-stacktrace-wrap {
padding-top: 5px;

View File

@ -5,10 +5,11 @@ $link-color-underline: #69849d;
$hover-hl: rgba(255, 255, 255, 0.09);
$hover-hl-darker: rgba(255, 255, 255, 0.12);
$grey: #798086;
$grey: #878e91;
$quote_color: #3c9577;
$quote_line: #45544d;
$dark-grey: $grey;
$darker-grey: lighten($grey, 6%);
$light-grey: $grey;
$fg: #eee;
$bg: #333;

View File

@ -9,6 +9,7 @@ $grey: #888;
$quote_color: #1f9329;
$quote_line: #d1e0d2;
$dark-grey: #777;
$darker-grey: #555;
$light-grey: #999;
$fg: #222;
$bg: #fff;