2016-05-26 23:34:42 +00:00
|
|
|
.sidebar {
|
|
|
|
box-sizing: border-box;
|
2017-02-18 16:15:30 +00:00
|
|
|
left: 0;
|
2016-05-26 23:34:42 +00:00
|
|
|
position: absolute;
|
|
|
|
transition: left .5s;
|
2016-06-19 11:14:13 +00:00
|
|
|
width: $sidebar-width;
|
2016-12-28 03:21:55 +00:00
|
|
|
z-index: 1005;
|
2016-05-26 23:34:42 +00:00
|
|
|
|
|
|
|
&.hidden {
|
2016-06-19 11:14:13 +00:00
|
|
|
left: -$sidebar-width - $button-distance;
|
2016-05-26 23:34:42 +00:00
|
|
|
|
|
|
|
.sidebarhandle {
|
2016-06-19 11:14:13 +00:00
|
|
|
left: $button-distance;
|
2016-05-26 23:34:42 +00:00
|
|
|
transform: scale(-1, 1);
|
2017-10-21 00:06:42 +00:00
|
|
|
|
|
|
|
// sass-lint:disable-block nesting-depth
|
|
|
|
&[aria-label] {
|
|
|
|
&::after {
|
|
|
|
transform: scale(-1, 1) translate(105px, 52px) !important; // sass-lint:disable-line no-important
|
|
|
|
}
|
|
|
|
}
|
2016-05-26 23:34:42 +00:00
|
|
|
}
|
2016-06-24 23:09:13 +00:00
|
|
|
@media screen and (max-width: map-get($grid-breakpoints, lg) - 1) {
|
2016-05-26 23:34:42 +00:00
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-03 17:55:09 +00:00
|
|
|
.tab {
|
|
|
|
padding-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
2017-02-04 02:01:17 +00:00
|
|
|
.node-list,
|
|
|
|
.node-links {
|
|
|
|
th,
|
|
|
|
td {
|
2016-05-26 23:34:42 +00:00
|
|
|
&:first-child {
|
|
|
|
width: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:nth-child(2) {
|
|
|
|
overflow: hidden;
|
|
|
|
text-align: left;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.node-links {
|
2017-02-04 16:27:04 +00:00
|
|
|
padding-bottom: 15px;
|
|
|
|
|
2017-02-04 02:01:17 +00:00
|
|
|
th,
|
|
|
|
td {
|
2016-05-26 23:34:42 +00:00
|
|
|
&:first-child {
|
2017-10-29 11:36:57 +00:00
|
|
|
width: 25px;
|
2016-05-26 23:34:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.link-list {
|
2017-02-04 02:01:17 +00:00
|
|
|
th,
|
|
|
|
td {
|
2016-05-26 23:34:42 +00:00
|
|
|
&:nth-child(1) {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2017-10-29 14:11:24 +00:00
|
|
|
width: 60%;
|
2016-05-26 23:34:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-04 02:01:17 +00:00
|
|
|
.container {
|
2016-06-01 19:21:21 +00:00
|
|
|
background: transparentize($color-white, .03);
|
2017-10-26 19:40:55 +00:00
|
|
|
border-right: 1px solid darken($color-white, 10%);
|
2016-05-26 23:34:42 +00:00
|
|
|
min-height: 100vh;
|
|
|
|
overflow-y: visible;
|
|
|
|
|
|
|
|
&.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-24 23:09:13 +00:00
|
|
|
@media screen and (max-width: map-get($grid-breakpoints, xl) - 1) {
|
2016-05-26 23:34:42 +00:00
|
|
|
background: $color-white;
|
|
|
|
font-size: .8em;
|
|
|
|
margin: 0;
|
2016-06-19 11:14:13 +00:00
|
|
|
width: $sidebar-width-small;
|
2016-05-26 23:34:42 +00:00
|
|
|
|
|
|
|
.sidebarhandle {
|
2016-06-19 11:14:13 +00:00
|
|
|
left: $sidebar-width-small + $button-distance;
|
2016-05-26 23:34:42 +00:00
|
|
|
}
|
|
|
|
|
2017-02-04 02:01:17 +00:00
|
|
|
.container,
|
|
|
|
.infobox {
|
2016-05-26 23:34:42 +00:00
|
|
|
border-radius: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-24 23:09:13 +00:00
|
|
|
@media screen and (max-width: map-get($grid-breakpoints, lg) - 1) {
|
2016-05-26 23:34:42 +00:00
|
|
|
height: auto;
|
|
|
|
min-height: 0;
|
|
|
|
position: static;
|
|
|
|
width: auto;
|
|
|
|
|
|
|
|
.sidebarhandle {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
height: 60vh;
|
|
|
|
position: relative;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebarhandle {
|
2016-06-19 11:14:13 +00:00
|
|
|
left: $sidebar-width + 2 * $button-distance;
|
2016-05-26 23:34:42 +00:00
|
|
|
position: fixed;
|
2016-06-19 11:14:13 +00:00
|
|
|
top: $button-distance;
|
2017-10-26 19:40:55 +00:00
|
|
|
transition: left .5s, color .5s, transform .5s;
|
2016-12-28 03:21:55 +00:00
|
|
|
z-index: 1010;
|
2016-05-26 23:34:42 +00:00
|
|
|
|
2017-10-21 00:06:42 +00:00
|
|
|
&::before {
|
2016-05-26 23:34:42 +00:00
|
|
|
content: '\f124';
|
|
|
|
padding-right: .125em;
|
|
|
|
}
|
2017-10-21 00:06:42 +00:00
|
|
|
|
|
|
|
&[aria-label] {
|
|
|
|
&::after {
|
|
|
|
transform: translate(-45px, 52px) !important; // sass-lint:disable-line no-important
|
|
|
|
}
|
|
|
|
}
|
2016-05-26 23:34:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.online {
|
|
|
|
color: $color-new;
|
|
|
|
}
|
|
|
|
|
|
|
|
.offline {
|
|
|
|
color: $color-offline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.unseen {
|
2016-05-30 07:24:58 +00:00
|
|
|
color: $color-unseen;
|
2016-05-26 23:34:42 +00:00
|
|
|
}
|