Cachet/app/assets/sass/partials/_sidebar.scss

99 lines
2.3 KiB
SCSS
Raw Normal View History

body.dashboard {
.sidebar {
display: table-cell;
vertical-align: top;
2014-12-04 16:57:37 +00:00
width: $sidebar-normal-width;
background: $sidebar-background-color;
2014-12-29 10:15:25 -06:00
@include box-shadow($sidebar-border-shadow);
position: relative;
z-index: 999;
2014-12-04 23:27:40 +00:00
.sidebar-inner {
position: relative;
.profile {
padding: 20px;
margin-bottom: 0;
.avatar {
width: 70px;
img {
border-radius: 50%;
width: 60px;
}
}
.profile {
&.username {
word-break: break-all;
color: $sidebar-text-color;
}
}
}
2014-12-29 10:15:25 -06:00
.quick-add-incident {
@extend text-center;
padding: 10px;
}
ul {
clear: both;
margin: 0;
padding: 0;
list-style: none;
li {
2014-12-29 10:15:25 -06:00
font-size: $sidebar-text-size;
&:last-child {
border-bottom: $sidebar-border-color;
}
&.active {
background: lighten($sidebar-background-color, 10%);
a {
color: $sidebar-text-active-color;
}
}
a {
display: block;
padding: 15px;
border-top: $sidebar-border-color;
color: $sidebar-text-color;
i {
2014-12-29 10:15:25 -06:00
font-size: 18px;
min-width: 17px;
text-align: center;
position: relative;
top: 1px;
}
&:hover {
text-decoration: none;
}
}
&.sub-nav-item {
a {
padding-left: 40px;
}
}
2014-12-04 23:27:40 +00:00
}
}
}
.bottom-menu-sidebar {
position: fixed;
bottom: 0;
width: 230px;
z-index: 999;
ul > li {
float: left;
display: block;
width: 33.333%;
2014-12-29 13:11:45 -06:00
border-right: 1px solid #ddd;
border-top: 1px solid #ddd;
a {
display: block;
position: relative;
text-align: center;
padding: 6px 0;
2014-12-29 13:11:45 -06:00
background: #fff;
}
}
}
}
2014-12-04 23:27:40 +00:00
}