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

refactor some properties

Mostly change some properties from things like "transparent" to "unset".  A lot of things that are just overriding the default Naturalcrit "colored button".  Moved some properties to the top level `.toolbar` class and let it cascade down.
This commit is contained in:
Gazook89
2024-08-17 15:38:00 -05:00
parent c791c0f60b
commit 0d475ab035

View File

@@ -11,7 +11,7 @@
height : 29px; height : 29px;
padding : 2px 0; padding : 2px 0;
font-family : 'Open Sans', sans-serif; font-family : 'Open Sans', sans-serif;
color : white; color : #CCCCCC;
background-color : #555555; background-color : #555555;
input { input {
@@ -58,7 +58,6 @@
.tool { .tool {
display : flex; display : flex;
align-items : center; align-items : center;
color : #CCCCCC;
padding : 0; padding : 0;
height: 100%; height: 100%;
width: auto; width: auto;
@@ -67,23 +66,20 @@
&:hover { background-color : #444444; } &:hover { background-color : #444444; }
button { button {
font-family : 'Open Sans', sans-serif;
font-size : 11px;
font-weight : normal;
color : #CCCCCC;
text-transform : uppercase;
background-color : transparent;
height : 100%; height : 100%;
width : auto; width : auto;
min-width : 46px; min-width : 46px;
padding : 0 8px; padding : 0 8px;
font-weight : unset;
color : inherit;
background-color : unset;
&:focus { outline : 1px solid #d3d3d3; } &:focus { outline : 1px solid #d3d3d3; }
&:disabled { &:disabled {
color : #777777; color : #777777;
background-color : transparent !important; background-color : unset !important;
} }
} }
} }