61 lines
877 B
Text
61 lines
877 B
Text
|
.toolbar {
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
background: white;
|
||
|
line-height: 30px;
|
||
|
list-style-type: none;
|
||
|
z-index: 99;
|
||
|
|
||
|
hr {
|
||
|
border: 1px solid rgba(0, 0, 0, .2);
|
||
|
margin: 4px 8px;
|
||
|
}
|
||
|
|
||
|
& > li {
|
||
|
display: inline-block;
|
||
|
padding: 0 8px;
|
||
|
line-height: initial;
|
||
|
|
||
|
&:hover {
|
||
|
background: #EEE;
|
||
|
}
|
||
|
|
||
|
.menu {
|
||
|
display: none;
|
||
|
min-width: 150px;
|
||
|
position: absolute;
|
||
|
z-index: 999;
|
||
|
background: white;
|
||
|
padding: 0;
|
||
|
margin-left: -8px;
|
||
|
box-shadow: 4px 8px 16px rgba(0, 0, 0, .1);
|
||
|
|
||
|
li {
|
||
|
display: block;
|
||
|
padding: 4px 8px;
|
||
|
|
||
|
&:hover {
|
||
|
background: #EEE;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&:hover {
|
||
|
|
||
|
.menu {
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.bottom-bar {
|
||
|
padding: 5px;
|
||
|
margin: 0;
|
||
|
|
||
|
select {
|
||
|
height: 20px;
|
||
|
}
|
||
|
}
|