mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-24 22:52:40 +00:00
52 lines
944 B
Plaintext
52 lines
944 B
Plaintext
|
|
.editor{
|
|
position : relative;
|
|
width : 100%;
|
|
.snippetBar{
|
|
display : flex;
|
|
padding : 5px;
|
|
background-color : #ddd;
|
|
align-items : center;
|
|
.snippetGroup{
|
|
.animate(background-color);
|
|
margin : 0px 10px;
|
|
padding : 5px;
|
|
font-size : 15px;
|
|
border-radius : 5px;
|
|
&:hover, &.selected{
|
|
background-color : #999;
|
|
}
|
|
.text{
|
|
line-height : 20px;
|
|
.groupName{
|
|
margin-left : 6px;
|
|
font-size : 12px;
|
|
}
|
|
}
|
|
&:hover{
|
|
.dropdown{
|
|
visibility : visible;
|
|
}
|
|
}
|
|
.dropdown{
|
|
position : absolute;
|
|
visibility : hidden;
|
|
z-index : 1000;
|
|
padding : 5px;
|
|
background-color : #ddd;
|
|
.snippet{
|
|
.animate(background-color);
|
|
padding : 10px;
|
|
cursor : pointer;
|
|
font-size : 13px;
|
|
&:hover{
|
|
background-color : #999;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.codeEditor{
|
|
height : 100%;
|
|
}
|
|
} |