Skip to content
Snippets Groups Projects
Commit 56079e10 authored by Chris Hallberg's avatar Chris Hallberg
Browse files

Bootstrap 3 collapsing arrow indicators.

parent 89dd9952
No related merge requests found
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -129,13 +129,20 @@ label.list-group-item { ...@@ -129,13 +129,20 @@ label.list-group-item {
} }
} }
.sidebar .title.collapsed { .sidebar .title {
cursor: pointer; cursor: pointer;
} }
.sidebar .title:before {
content:'\25B2';
float:right;
}
.sidebar .title.collapsed.collapsed { .sidebar .title.collapsed {
border-radius: 4px; border-radius: 4px;
} }
.sidebar .title.collapsed:before {
content:'\25BC';
}
.sidebar .collapse .list-group-item,.sidebar .collapsing .list-group-item { .sidebar .collapse .list-group-item,.sidebar .collapsing .list-group-item {
border-top-left-radius: 0px; border-top-left-radius: 0px;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -161,6 +161,13 @@ label.list-group-item {border-radius:0;font-weight:normal;margin-top:0;padding-l ...@@ -161,6 +161,13 @@ label.list-group-item {border-radius:0;font-weight:normal;margin-top:0;padding-l
cursor:pointer; cursor:pointer;
&.collapsed { &.collapsed {
border-radius:@border-radius-base; border-radius:@border-radius-base;
&:after {
content:'\25BC';
}
}
&:after {
content:'\25B2';
float:right;
} }
} }
.collapse,.collapsing { .collapse,.collapsing {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment