1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-01 16:04:37 +04:00
This commit is contained in:
chomik
2019-05-07 21:42:55 +02:00
parent 9a48aeef0a
commit b9f5aff208
698 changed files with 338 additions and 17 deletions
+25
View File
@@ -12,6 +12,7 @@ Sidebar
display: flex;
align-items: center;
color: $text-muted;
border-radius: $border-radius;
&.active,
&:hover {
@@ -22,6 +23,24 @@ Sidebar
> .icon {
min-width: 2rem;
}
&[data-toggle="collapse"] {
&:after {
display: block;
content: '';
margin-left: auto;
transition: transform .3s;
width: 1rem;
height: 1rem;
background: red;
//background: url("<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"><polyline points="6 9 12 15 18 9"></polyline></svg>")
}
&[aria-expanded="true"]:after {
transform: rotate(-180deg);
background: green;
}
}
}
.navbar-brand {
@@ -39,6 +58,12 @@ Sidebar
margin: 0;
@extend .text-subheader;
}
.nav {
.nav-item {
padding-left: 2rem;
}
}
}
/**