0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-06 14:22:52 +00:00

linting toolBar.less

This commit is contained in:
Víctor Losada Hernández
2024-06-02 16:13:04 +02:00
parent c2170dd558
commit a5f453f1e5

View File

@@ -1,68 +1,64 @@
.toolBar { .toolBar {
font-family: 'Open Sans', sans-serif;
position : sticky; position : sticky;
top : 0; top : 0;
left : 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; z-index : 1;
display : flex; display : flex;
justify-content: center;
align-items: center;
column-gap: 15px;
row-gap: 5px;
flex-wrap : wrap; 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 { 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; 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 { .tool {
display : flex; display : flex;
align-items : center; align-items : center;
padding: 0 8px;
color: #ccc;
height : 100%; height : 100%;
padding : 0 8px;
color : #CCCCCC;
&:hover,&:focus-within { &:hover,&:focus-within { background-color : #444444; }
background-color: #444;
}
button { 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; 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 { &:focus-within {
color: white;
font-weight: 800;
height : 100%; height : 100%;
font-weight : 800;
color : white;
} }
&:disabled { &:disabled {
color: #777; color : #777777;
background-color : transparent !important; background-color : transparent !important;
} }
} }
} }
} }