68 lines
No EOL
979 B
Text
68 lines
No EOL
979 B
Text
.toolbar {
|
|
height: 30px;
|
|
width: 100%;
|
|
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 {
|
|
position: fixed;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
height: 30px;
|
|
padding: 5px;
|
|
margin: 0;
|
|
|
|
select {
|
|
height: 20px;
|
|
}
|
|
} |