fradrive/static/css/show_hide.css
2018-03-05 02:01:59 +01:00

45 lines
853 B
CSS

.js-show-hide {
position: relative;
}
.js-show-hide-toggle {
position: relative;
}
.js-show-hide-toggle:hover {
cursor: pointer;
}
.js-show-hide-toggle::before {
content: '';
position: absolute;
width: 0;
height: 0;
border-right: 8px solid transparent;
border-bottom: 8px solid transparent;
}
.js-show-hide-toggle::before,
.js-show-hide.collapsed .js-show-hide-toggle:hover::before {
left: -28px;
top: 10px;
border-left: 8px solid transparent;
border-top: 8px solid rebeccapurple;
}
.js-show-hide-toggle:hover::before,
.js-show-hide.collapsed .js-show-hide-toggle::before {
border-left: 8px solid rebeccapurple;
border-top: 8px solid transparent;
top: 5px;
left: -22px;
}
.js-show-hide.collapsed > .js-show-hide-target {
padding-bottom: 0;
}
.js-show-hide.collapsed > .js-show-hide-target {
display: none;
}