mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-23 14:23:21 +00:00
40 lines
749 B
Plaintext
40 lines
749 B
Plaintext
|
|
.menubar{
|
|
@menuHeight : 25px;
|
|
position : relative;
|
|
height : @menuHeight;
|
|
background-color : #ddd;
|
|
.editors{
|
|
position : absolute;
|
|
display : flex;
|
|
top : 0px;
|
|
right : 0px;
|
|
height : @menuHeight;
|
|
width : 90px;
|
|
justify-content : space-between;
|
|
&>div{
|
|
height : @menuHeight;
|
|
width : @menuHeight;
|
|
cursor : pointer;
|
|
line-height : @menuHeight;
|
|
text-align : center;
|
|
&:hover,&.selected{
|
|
background-color : #999;
|
|
}
|
|
&.code{
|
|
.tooltipLeft('Brew Editor');
|
|
}
|
|
&.style{
|
|
.tooltipLeft('Style Editor');
|
|
}
|
|
&.meta{
|
|
.tooltipLeft('Metadata');
|
|
}
|
|
}
|
|
}
|
|
|
|
.snippets{
|
|
display : flex;
|
|
height : 100%;
|
|
}
|
|
} |