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