2013-09-01 19:41:39 +00:00
|
|
|
.toolbar {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2013-09-13 22:57:57 +00:00
|
|
|
background: @background;
|
|
|
|
color: @foreground;
|
2013-09-01 19:41:39 +00:00
|
|
|
line-height: 30px;
|
|
|
|
list-style-type: none;
|
|
|
|
z-index: 99;
|
|
|
|
|
|
|
|
hr {
|
2013-09-06 07:04:20 +00:00
|
|
|
border: none;
|
2013-09-15 16:55:29 +00:00
|
|
|
border-top: 1px solid rgba(128, 128, 128, .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 {
|
2013-09-13 22:57:57 +00:00
|
|
|
color: fade(@foreground, 50%);
|
2013-09-06 18:24:20 +00:00
|
|
|
margin-left: 1em;
|
|
|
|
}
|
|
|
|
|
2013-09-04 17:28:31 +00:00
|
|
|
//nested menus (default)
|
|
|
|
li {
|
2013-11-21 17:30:59 +00:00
|
|
|
transition: opacity .2s;
|
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-13 22:57:57 +00:00
|
|
|
background: fade(@foreground, 20%);
|
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;
|
2013-09-13 22:57:57 +00:00
|
|
|
background: @background;
|
2013-09-01 19:41:39 +00:00
|
|
|
padding: 0;
|
2013-09-15 16:55:29 +00:00
|
|
|
box-shadow: 4px 8px 16px rgba(0, 0, 0, .2);
|
2013-09-01 19:41:39 +00:00
|
|
|
}
|
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;
|
2013-09-13 22:57:57 +00:00
|
|
|
color: fade(@foreground, 50%);
|
2013-09-06 07:04:20 +00:00
|
|
|
}
|
|
|
|
|
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-15 20:00:16 +00:00
|
|
|
padding: 2px 5px;
|
2013-09-04 17:01:12 +00:00
|
|
|
|
2013-09-20 19:43:17 +00:00
|
|
|
.status-text {
|
2013-09-04 17:01:12 +00:00
|
|
|
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;
|
2013-09-15 20:00:16 +00:00
|
|
|
width: 150px;
|
2013-09-13 22:57:57 +00:00
|
|
|
background: @background;
|
|
|
|
color: @foreground;
|
2013-09-01 19:41:39 +00:00
|
|
|
}
|
|
|
|
}
|