2016-09-11 21:54:32 +00:00
|
|
|
/**
|
|
|
|
* Toolbar side panel main container element.
|
|
|
|
*/
|
2018-06-22 22:12:23 +00:00
|
|
|
#sideToolbarContainer {
|
2018-03-27 22:30:04 +00:00
|
|
|
background-color: $newToolbarBackgroundColor;
|
2018-03-07 00:28:19 +00:00
|
|
|
/**
|
|
|
|
* Make the sidebar flush with the top of the toolbar. Take the size of
|
2018-04-05 20:54:11 +00:00
|
|
|
* the toolbar and subtract from 100%.
|
2018-03-07 00:28:19 +00:00
|
|
|
*/
|
2018-04-05 20:54:11 +00:00
|
|
|
height: calc(100% - #{$newToolbarSizeWithPadding});
|
2018-03-07 00:28:19 +00:00
|
|
|
left: 0;
|
2016-10-12 00:08:24 +00:00
|
|
|
max-width: $sidebarWidth;
|
2016-09-11 21:54:32 +00:00
|
|
|
overflow: hidden;
|
2016-10-19 20:19:09 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
width: 0;
|
2017-03-30 17:13:00 +00:00
|
|
|
z-index: $sideToolbarContainerZ;
|
2016-09-11 21:54:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Labels inside the side panel.
|
|
|
|
*/
|
|
|
|
label {
|
2016-10-19 17:34:20 +00:00
|
|
|
color: $baseLight;
|
2016-09-11 21:54:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Form elements and blocks.
|
|
|
|
*/
|
2017-11-21 02:21:35 +00:00
|
|
|
input,
|
|
|
|
a,
|
|
|
|
.sideToolbarBlock,
|
|
|
|
.form-control {
|
2016-10-07 21:47:43 +00:00
|
|
|
display: block;
|
2016-09-11 21:54:32 +00:00
|
|
|
margin-top: 15px;
|
|
|
|
margin-left: 10%;
|
|
|
|
width: 80%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Specify styling of elements inside a block.
|
|
|
|
*/
|
|
|
|
.sideToolbarBlock {
|
2017-11-21 02:21:35 +00:00
|
|
|
input, a {
|
2016-09-11 21:54:32 +00:00
|
|
|
margin-left: 0;
|
2016-10-19 20:19:09 +00:00
|
|
|
margin-top: 5px;
|
2016-09-11 21:54:32 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-04-10 03:16:43 +00:00
|
|
|
* Inner container, for example settings or profile.
|
2016-09-11 21:54:32 +00:00
|
|
|
*/
|
|
|
|
.sideToolbarContainer__inner {
|
|
|
|
display: none;
|
2016-10-12 00:08:24 +00:00
|
|
|
height: 100%;
|
|
|
|
width: $sidebarWidth;
|
|
|
|
position: absolute;
|
|
|
|
box-sizing: border-box;
|
2016-09-11 21:54:32 +00:00
|
|
|
color: #FFF;
|
|
|
|
|
2016-11-15 14:37:09 +00:00
|
|
|
.input-control {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
2016-09-11 21:54:32 +00:00
|
|
|
/**
|
|
|
|
* Titles and subtitles of inner containers.
|
|
|
|
*/
|
2018-06-20 20:19:53 +00:00
|
|
|
div.title {
|
2016-11-10 16:48:34 +00:00
|
|
|
margin: 24px 0 11px;
|
2016-09-11 21:54:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Main title size.
|
|
|
|
*/
|
2016-09-20 07:59:12 +00:00
|
|
|
div.title {
|
2016-11-10 16:48:34 +00:00
|
|
|
color: $toolbarTitleColor;
|
2016-10-19 20:19:09 +00:00
|
|
|
text-align: center;
|
2016-10-19 17:34:20 +00:00
|
|
|
font-size: $toolbarTitleFontSize;
|
2016-09-11 21:54:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* First element after a title.
|
|
|
|
*/
|
|
|
|
.first {
|
2016-09-20 07:59:12 +00:00
|
|
|
margin-top: 0 !important;
|
2016-09-11 21:54:32 +00:00
|
|
|
}
|
2017-11-21 02:21:35 +00:00
|
|
|
}
|
2018-06-22 22:12:23 +00:00
|
|
|
|
|
|
|
.side-toolbar-close {
|
|
|
|
background: gray;
|
|
|
|
border: 3px solid rgba(255, 255, 255, 0.1);
|
|
|
|
border-radius: 100%;
|
|
|
|
color: white;
|
|
|
|
cursor:pointer;
|
|
|
|
height: 10px;
|
|
|
|
line-height: 10px;
|
|
|
|
padding: 4px;
|
|
|
|
position: absolute;
|
|
|
|
right: 5px;
|
|
|
|
text-align: center;
|
|
|
|
top: 5px;
|
|
|
|
width: 10px;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
2016-10-20 17:10:50 +00:00
|
|
|
}
|