CSS: Style for collapsible control

This commit is contained in:
Florian Strohmaier 2018-11-20 13:56:41 +01:00 committed by Johannes Meyer
parent 9a1b7f0cf8
commit 14caccc384
1 changed files with 37 additions and 0 deletions

View File

@ -233,3 +233,40 @@ a:hover > .icon-cancel {
width: 100%;
}
}
// Collapsible Control
.collapsible-container {
position: relative;
.icon-angle-double-down {
display: none;
}
&.collapsed .icon-angle-double-up {
display: none;
}
&.collapsed .icon-angle-double-down {
display: inline-block;
}
}
#collapsible-control-ghost {
display: none;
}
.collapsible-control {
.rounded-corners(50%);
background: @gray-lighter;
color: @gray;
width: 2em;
height: 2em;
position: absolute;
border: none;
z-index: 1;
-webkit-box-shadow: 0 0 1/3em rgba(0,0,0,.3);
-moz-box-shadow: 0 0 1/3em rgba(0,0,0,.3);
box-shadow: 0 0 1/3em rgba(0,0,0,.3);
}