insomnia/app/css/components/sidebar.scss

180 lines
2.9 KiB
SCSS
Raw Normal View History

2016-05-01 19:56:30 +00:00
@import '../constants/dimensions';
@import '../constants/colors';
.sidebar {
2016-06-19 01:24:49 +00:00
position: relative;
2016-05-01 19:56:30 +00:00
display: grid;
2016-06-19 01:24:49 +00:00
grid-template-rows: $line-height-md 1fr;
2016-05-01 19:56:30 +00:00
grid-template-columns: 1fr;
background-color: $bg-dark;
color: $font-dark-bg;
2016-06-19 00:40:14 +00:00
width: 100%;
2016-05-01 19:56:30 +00:00
height: 100%;
// ~~~~~~~~~~~~~~ //
// Sidebar Header //
// ~~~~~~~~~~~~~~ //
.sidebar__header {
background-color: $bg-brand;
color: $font-brand-bg;
2016-06-19 00:27:21 +00:00
h1 {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
// HACK: Bump up the arrow a bit
2016-06-19 00:51:15 +00:00
i.fa-caret-down {
2016-06-19 00:27:21 +00:00
position: relative;
top: -2px;
}
2016-05-01 19:56:30 +00:00
}
// Make the dropdown offset to the right
.dropdown ul {
right: -40%;
}
.btn {
padding: 0 $padding-md;
}
}
// ~~~~~~~~~~~~ //
// Sidebar List //
// ~~~~~~~~~~~~ //
.sidebar__list {
}
// Root list scrolling
& > .sidebar__list {
overflow-y: auto;
2016-06-19 01:24:49 +00:00
padding-bottom: $line-height-md;
2016-05-01 19:56:30 +00:00
&::-webkit-scrollbar {
display: none;
}
&:hover::-webkit-scrollbar {
display: block;
}
}
// ~~~~~~~~~~~ //
// Sidebar Row //
// ~~~~~~~~~~~ //
.sidebar__row {
// Nothing yet...
}
// ~~~~~~~~~~~~ //
// Sidebar Item //
// ~~~~~~~~~~~~ //
.sidebar__item {
display: grid;
grid-template-columns: 1fr auto;
grid-template-rows: $line-height-xs;
color: $hl;
& > * {
height: 100%;
}
&.sidebar__item--big {
grid-template-rows: $line-height-sm;
}
&.active {
color: $font-dark-bg;
.tag {
opacity: 1;
}
}
&:hover {
background-color: $hl-xxs;
}
.tag {
2016-06-18 21:02:27 +00:00
opacity: 0.5;
2016-05-01 19:56:30 +00:00
padding-left: 0;
width: 2.5em;
text-align: left;
}
}
// put border on folders
.sidebar__row:not(:first-child) .sidebar__item--big {
border-top: 1px solid $hl-sm;
}
// ~~~~~~~~~~~~~~~~~ //
// Sidebar Clickable //
// ~~~~~~~~~~~~~~~~~ //
.sidebar__clickable {
// Nothing yet...
}
// Padding
.sidebar__list .sidebar__clickable {
2016-06-19 01:57:23 +00:00
padding-left: $padding-md;
2016-05-01 19:56:30 +00:00
}
.sidebar__list .sidebar__list .sidebar__clickable {
padding-left: $padding-md * 2;
}
// ~~~~~~~~~~~~~~~ //
// Sidebar Actions //
// ~~~~~~~~~~~~~~~ //
.sidebar__actions {
& > * {
height: 100%;
}
& > button,
& > .dropdown > button {
display: none;
color: $hl;
height: 100%;
padding: 0 $padding-sm;
}
& > button:hover,
& > .dropdown:hover > button {
color: $font-dark-bg;
}
}
.sidebar__item:hover .sidebar__actions > button,
.sidebar__item:hover .sidebar__actions > .dropdown > button {
display: initial;
}
// ~~~~~~~~~~~~~~ //
// Sidebar Footer //
// ~~~~~~~~~~~~~~ //
footer.sidebar__footer {
2016-06-19 01:24:49 +00:00
position: absolute;
bottom: 0;
left: 0;
right: 0;
margin: 0;
background-color: transparentize($bg-dark, 0.1);
padding: $padding-sm;
2016-05-01 19:56:30 +00:00
}
}