0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-08 09:42:43 +00:00

Merge pull request #3215 from 5e-Cleric/Darkbrewery-color-fix

Color simplification and Darkbrewery snippet color fix
This commit is contained in:
Trevor Buckner
2024-01-09 22:21:33 -05:00
committed by GitHub

View File

@@ -4,6 +4,8 @@
position : relative; position : relative;
height : @menuHeight; height : @menuHeight;
background-color : #ddd; background-color : #ddd;
color : black;
.editors{ .editors{
position : absolute; position : absolute;
display : flex; display : flex;
@@ -34,7 +36,7 @@
font-size : 0.75em; font-size : 0.75em;
color : grey; color : grey;
&.active{ &.active{
color : black; color : inherit;
} }
} }
&.redo{ &.redo{
@@ -42,36 +44,30 @@
font-size : 0.75em; font-size : 0.75em;
color : grey; color : grey;
&.active{ &.active{
color : black; color : inherit;
} }
} }
&.foldAll{ &.foldAll{
.tooltipLeft('Fold All'); .tooltipLeft('Fold All');
font-size : 0.75em; font-size : 0.75em;
color : grey; color : inherit;
&.active{
color : black;
}
} }
&.unfoldAll{ &.unfoldAll{
.tooltipLeft('Unfold All'); .tooltipLeft('Unfold All');
font-size : 0.75em; font-size : 0.75em;
color : grey; color : inherit;
&.active{
color : black;
}
} }
&.editorTheme{ &.editorTheme{
.tooltipLeft('Editor Themes'); .tooltipLeft('Editor Themes');
font-size : 0.75em; font-size : 0.75em;
color : black; color : inherit;
&.active{ &.active{
color : white; color : white;
background-color: black; background-color: black;
} }
} }
&.divider { &.divider {
background: linear-gradient(#000, #000) no-repeat center/1px 100%; background: linear-gradient(currentColor, currentColor) no-repeat center/1px 100%;
width: 5px; width: 5px;
&:hover{ &:hover{
background-color: inherit; background-color: inherit;
@@ -114,7 +110,7 @@
.tooltipLeft("Edit Brew Properties"); .tooltipLeft("Edit Brew Properties");
} }
.snippetGroup{ .snippetGroup{
border-right : 1px solid black; border-right : 1px solid currentColor;
&:hover{ &:hover{
&>.dropdown{ &>.dropdown{
visibility : visible; visibility : visible;