More style adjustments to default and core elements

This commit is contained in:
Andreas Nedbal 2020-05-03 17:28:19 +02:00
parent 9b38b1d736
commit 51bef29ace
3 changed files with 9 additions and 4 deletions

View file

@ -83,8 +83,8 @@ $avatar-sizes: (
--info-text: 255, 255, 255; --info-text: 255, 255, 255;
--success-text: 255, 255, 255; --success-text: 255, 255, 255;
--body-text: 0, 0, 0;
--muted-text: 108, 117, 125; --muted-text: 108, 117, 125;
--input-text: 0, 0, 0; --input-text: 0, 0, 0;
} }

View file

@ -1,6 +1,7 @@
body { body {
overflow-y: scroll; overflow-y: scroll;
word-wrap: break-word; word-wrap: break-word;
color: RGB(var(--body-text));
background-color: var(--background); background-color: var(--background);
padding-top: $navbar-height; padding-top: $navbar-height;
} }

View file

@ -1,4 +1,8 @@
.list-group-item.active { .list-group-item {
background-color: var(--primary); background-color: transparent;
border-color: var(--primary);
&.active {
background-color: var(--primary);
border-color: var(--primary);
}
} }