2013-09-01 19:41:39 +00:00
|
|
|
.toolbar {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
background: white;
|
|
|
|
line-height: 30px;
|
|
|
|
list-style-type: none;
|
|
|
|
z-index: 99;
|
|
|
|
|
|
|
|
hr {
|
2013-09-06 07:04:20 +00:00
|
|
|
border: none;
|
|
|
|
border-top: 1px solid rgba(0, 0, 0, .2);
|
2013-09-01 19:41:39 +00:00
|
|
|
margin: 4px 8px;
|
|
|
|
}
|
2013-09-04 17:28:31 +00:00
|
|
|
|
2013-09-06 18:24:20 +00:00
|
|
|
.shortcut {
|
|
|
|
color: #AAA;
|
|
|
|
margin-left: 1em;
|
|
|
|
}
|
|
|
|
|
2013-09-04 17:28:31 +00:00
|
|
|
//nested menus (default)
|
|
|
|
li {
|
2013-09-06 18:24:20 +00:00
|
|
|
display: flex;
|
2013-09-04 17:28:31 +00:00
|
|
|
padding: 4px 8px;
|
2013-09-06 18:24:20 +00:00
|
|
|
justify-content: space-between;
|
2013-09-04 17:28:31 +00:00
|
|
|
|
2013-09-06 07:04:20 +00:00
|
|
|
&:hover, &.active {
|
2013-09-01 19:41:39 +00:00
|
|
|
background: #EEE;
|
2013-09-06 07:04:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.parent:hover, &.active {
|
2013-09-04 17:28:31 +00:00
|
|
|
|
|
|
|
& > .menu {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2013-09-01 19:41:39 +00:00
|
|
|
}
|
2013-09-04 17:28:31 +00:00
|
|
|
|
2013-09-01 19:41:39 +00:00
|
|
|
.menu {
|
|
|
|
display: none;
|
|
|
|
min-width: 150px;
|
|
|
|
position: absolute;
|
2013-09-04 17:28:31 +00:00
|
|
|
margin-left: 80%;
|
|
|
|
margin-top: -2em;
|
2013-09-01 19:41:39 +00:00
|
|
|
z-index: 999;
|
|
|
|
background: white;
|
|
|
|
padding: 0;
|
|
|
|
box-shadow: 4px 8px 16px rgba(0, 0, 0, .1);
|
|
|
|
}
|
2013-09-04 17:28:31 +00:00
|
|
|
|
2013-09-06 07:04:20 +00:00
|
|
|
&.parent::after {
|
|
|
|
content: "►";
|
|
|
|
font-family: serif;
|
|
|
|
position: absolute;
|
|
|
|
right: 4px;
|
|
|
|
color: rgba(0, 0, 0, .5);
|
|
|
|
}
|
|
|
|
|
2013-09-04 17:28:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//base-level menus
|
|
|
|
& > li {
|
|
|
|
display: inline-block;
|
2013-09-06 07:04:20 +00:00
|
|
|
padding: 4px 8px;
|
2013-09-04 17:28:31 +00:00
|
|
|
line-height: initial;
|
|
|
|
|
|
|
|
& > .menu {
|
|
|
|
margin-left: -8px;
|
2013-09-06 07:04:20 +00:00
|
|
|
margin-top: 4px;
|
2013-09-01 19:41:39 +00:00
|
|
|
}
|
|
|
|
}
|
2013-09-04 17:28:31 +00:00
|
|
|
|
2013-09-01 19:41:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-bar {
|
|
|
|
margin: 0;
|
2013-09-04 17:01:12 +00:00
|
|
|
padding: 0 5px;
|
|
|
|
|
|
|
|
.cursor-position {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2013-09-01 19:41:39 +00:00
|
|
|
|
|
|
|
select {
|
2013-09-04 17:01:12 +00:00
|
|
|
margin: 0;
|
|
|
|
border: none;
|
|
|
|
width: 100px;
|
2013-09-05 15:30:28 +00:00
|
|
|
background: white;
|
2013-09-01 19:41:39 +00:00
|
|
|
}
|
|
|
|
}
|