From a5f453f1e55fef36a6fecbc832db7aa3072697df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Losada=20Hern=C3=A1ndez?= Date: Sun, 2 Jun 2024 16:13:04 +0200 Subject: [PATCH] linting toolBar.less --- .../brewRenderer/toolBar/toolBar.less | 116 +++++++++--------- 1 file changed, 56 insertions(+), 60 deletions(-) diff --git a/client/homebrew/brewRenderer/toolBar/toolBar.less b/client/homebrew/brewRenderer/toolBar/toolBar.less index 8bb5effe5..1e2ca1d07 100644 --- a/client/homebrew/brewRenderer/toolBar/toolBar.less +++ b/client/homebrew/brewRenderer/toolBar/toolBar.less @@ -1,68 +1,64 @@ .toolBar { - font-family: 'Open Sans', sans-serif; - position: sticky; - top: 0; - left: 0; - width: 100%; - height: 30px; - background-color: #555; - border-top: 1px solid #666; - border-bottom: 1px solid #666; - color: white; - text-align: center; - z-index: 1; - display: flex; - justify-content: center; - align-items: center; - column-gap: 15px; - row-gap: 5px; - flex-wrap: wrap; + position : sticky; + top : 0; + left : 0; + z-index : 1; + display : flex; + flex-wrap : wrap; + row-gap : 5px; + column-gap : 15px; + align-items : center; + justify-content : center; + width : 100%; + height : 30px; + font-family : 'Open Sans', sans-serif; + color : white; + text-align : center; + background-color : #555555; + border-top : 1px solid #666666; + border-bottom : 1px solid #666666; - input { - background: #eee; - font-family: 'Open Sans', sans-serif; - text-transform: uppercase; - font-weight: normal; - font-size: 16px; - color: #000; - padding: 2px 5px; - border-radius: 7px; - height:1.5em; - } + input { + height : 1.5em; + padding : 2px 5px; + font-family : 'Open Sans', sans-serif; + font-size : 16px; + font-weight : normal; + color : #000000; + text-transform : uppercase; + background : #EEEEEE; + border-radius : 7px; + } - .tool { - display: flex; - align-items: center; - padding: 0 8px; - color: #ccc; - height: 100%; + .tool { + display : flex; + align-items : center; + height : 100%; + padding : 0 8px; + color : #CCCCCC; - &:hover,&:focus-within { - background-color: #444; - } + &:hover,&:focus-within { background-color : #444444; } - button { - background-color: transparent; - font-family: 'Open Sans', sans-serif; - text-transform: uppercase; - font-weight: normal; - font-size: 11px; - color: #ccc; - padding: 0; - width: 70px; - - &:focus-within { - color: white; - font-weight: 800; - height: 100%; - } - - &:disabled { - color: #777; - background-color: transparent !important; - } - } - } + button { + width : 70px; + padding : 0; + font-family : 'Open Sans', sans-serif; + font-size : 11px; + font-weight : normal; + color : #CCCCCC; + text-transform : uppercase; + background-color : transparent; + &:focus-within { + height : 100%; + font-weight : 800; + color : white; + } + &:disabled { + color : #777777; + background-color : transparent !important; + } + } + } } \ No newline at end of file