CSS: Add hover effect for collapsible control

This commit is contained in:
Florian Strohmaier 2018-12-06 15:03:55 +01:00 committed by Johannes Meyer
parent d3e4fb6552
commit e375822ef1
1 changed files with 9 additions and 0 deletions

View File

@ -323,3 +323,12 @@ a:hover > .icon-cancel {
right: 0;
z-index: 1;
}
.collapsible-control:hover:before {
content: "";
display: block;
position: absolute;
top: -2px; right: -2px; bottom: -2px; left: -2px;
background: fade(@text-color, 10);
.rounded-corners(50%);
}