From 0d475ab035f593bbdc4ed13a2642cd35ce65e70c Mon Sep 17 00:00:00 2001 From: Gazook89 Date: Sat, 17 Aug 2024 15:38:00 -0500 Subject: [PATCH] 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. --- client/homebrew/brewRenderer/toolBar/toolBar.less | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/client/homebrew/brewRenderer/toolBar/toolBar.less b/client/homebrew/brewRenderer/toolBar/toolBar.less index 10163a500..92b4e24b5 100644 --- a/client/homebrew/brewRenderer/toolBar/toolBar.less +++ b/client/homebrew/brewRenderer/toolBar/toolBar.less @@ -11,7 +11,7 @@ height : 29px; padding : 2px 0; font-family : 'Open Sans', sans-serif; - color : white; + color : #CCCCCC; background-color : #555555; input { @@ -58,7 +58,6 @@ .tool { display : flex; align-items : center; - color : #CCCCCC; padding : 0; height: 100%; width: auto; @@ -67,23 +66,20 @@ &:hover { background-color : #444444; } button { - font-family : 'Open Sans', sans-serif; - font-size : 11px; - font-weight : normal; - color : #CCCCCC; - text-transform : uppercase; - background-color : transparent; height : 100%; width : auto; min-width : 46px; padding : 0 8px; + font-weight : unset; + color : inherit; + background-color : unset; &:focus { outline : 1px solid #d3d3d3; } &:disabled { color : #777777; - background-color : transparent !important; + background-color : unset !important; } } }