update styles

This commit is contained in:
Dennis Eichhorn 2021-06-23 23:56:51 +02:00
parent da89ac58e6
commit b7233b8de7
3 changed files with 154 additions and 213 deletions

View File

@ -6,7 +6,7 @@
cursor: pointer; cursor: pointer;
} }
.portlet-body a:not(.button), a.content { .portlet-body a:not(.button), a.content, a > .content {
color: var(--link-color); color: var(--link-color);
border-bottom: 1px dotted var(--link-color); border-bottom: 1px dotted var(--link-color);

File diff suppressed because it is too large Load Diff

View File

@ -15,3 +15,15 @@ span {
} }
} }
} }
@each $tuple in
'ok' #aaffad #81e27d #459442,
'warning' #f8ffa8 #d6d949 #94972f,
'error' #ff7d79 #ee5649 #a5302a,
'info' #b6d2ff #85b0ee #4865a5 {
.tag.#{nth($tuple, 1)} {
background: #{nth($tuple, 2)};
border: 1px solid #{nth($tuple, 3)};
color: #{nth($tuple, 4)};
}
}