0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-17 10:12:40 +00:00

Fix from 5E-Cleric

This commit is contained in:
G.Ambatte
2023-09-14 08:19:25 +12:00
parent a306030635
commit 216de73c93

View File

@@ -1,19 +1,19 @@
/* Main BG color and normal text color */ /* Main BG color and normal text color */
.CodeMirror { .CodeMirror {
background: #293134; background: #293134;
color: #91A6AA; color: #91A6AA;
} }
/* Brew BG */ /* Brew BG */
.brewRenderer { .brewRenderer {
background-color: #293134; background-color: #293134;
} }
/* Blinking cursor */ /* Blinking cursor */
.CodeMirror-cursor { .CodeMirror-cursor {
border-left: 1px solid #e0e2e4; border-left: 1px solid #e0e2e4;
} }
/* Bars at the top */ /* Bars at the top */
.snippetBar { .snippetBar {
background-color: #2F393C; background-color: #2F393C;
color: white; color: white;
} }
@@ -23,6 +23,10 @@ nav {
nav .navItem { nav .navItem {
background-color: #293134; background-color: #293134;
} }
/* Fix for Homebrewery custom Snippet icons */
.snippetBar .fac {
filter: invert(1);
}
.snippetBar .snippetGroup .dropdown { .snippetBar .snippetGroup .dropdown {
background-color: #2F393C; background-color: #2F393C;
} }