1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-09-29 04:07:39 +02:00
bitwarden-desktop/src/scss/vault.scss
2018-02-20 16:39:50 -05:00

270 lines
6.1 KiB
SCSS

@import "variables.scss";
#vault {
height: 100%;
display: flex;
> #groupings, > #items, > #details, > #logo {
display: flex;
flex-direction: column;
.inner-content {
padding: 10px 15px;
}
}
> #groupings {
background-color: $background-color-alt;
width: 22%;
min-width: 175px;
max-width: 250px;
border-right: 1px solid $border-color-dark;
.inner-content {
padding-bottom: 0;
padding-right: 5px;
}
h2 {
color: $gray-light;
text-transform: uppercase;
font-size: $font-size-base;
font-weight: normal;
margin-bottom: 5px;
display: flex;
button {
margin-left: auto;
background: none;
border: none;
color: lighten($gray-light, 30%);
&:hover, &:focus {
color: $gray-light;
cursor: pointer;
}
}
}
ul:not(.fa-ul) {
li {
margin: 0;
padding: 0;
list-style: none;
}
}
ul.fa-ul {
li {
.fa-li {
left: -11px;
top: 8px;
}
a {
padding-left: 12px;
}
&.active .fa-li {
left: 4px;
}
}
}
ul {
padding: 0;
margin: 0 0 15px 0;
li {
a {
padding: 5px 0;
color: $text-color;
display: flex;
align-items: center;
span {
visibility: hidden;
margin-left: auto;
color: lighten($gray-light, 30%);
&:hover {
color: $text-muted;
}
}
&:hover, &:focus {
span {
visibility: visible;
}
}
}
&.active {
background-color: darken($background-color-alt, 5%);
margin-left: -15px;
margin-right: -5px;
padding-left: 15px;
padding-right: 5px;
}
}
}
}
> #items {
background-color: $background-color;
width: 28%;
min-width: 200px;
max-width: 350px;
border-right: 1px solid $border-color-dark;
.no-items {
display: flex;
height: 100%;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 0 10px;
.fa {
margin-bottom: 10px;
color: $list-icon-color;
}
}
}
> #details {
background-color: $background-color-alt2;
flex: 1;
min-width: 0;
.inner-content {
min-width: 400px;
}
.box {
max-width: 550px;
margin: 30px auto 0 auto;
&:first-child {
margin-top: 10px;
}
&:last-child {
margin-bottom: 30px;
}
}
> form {
display: flex;
flex-direction: column;
height: 100%;
}
}
> #logo {
flex: 1;
min-width: 0;
.content {
overflow-y: hidden;
overflow-x: auto;
}
.inner-content {
min-width: 320px;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
img {
width: 282px;
opacity: 0.3;
transition: all 1s ease-in-out;
&:hover {
opacity: 1;
}
}
}
.header {
min-height: 44px;
max-height: 44px;
background-color: $brand-primary;
flex: 0 0 auto;
border-bottom: 1px solid darken($brand-primary, 7%);
display: flex;
align-items: center;
&.header-search {
.search {
padding: 0 7px;
width: 100%;
text-align: left;
position: relative;
.fa {
position: absolute;
top: 7px;
left: 15px;
color: lighten($brand-primary, 30%);
}
input {
width: 100%;
margin: 0;
background: darken($brand-primary, 8%);
border: none;
color: white;
padding: 5px 10px 5px 30px;
border-radius: $border-radius;
&:focus {
border-radius: $border-radius;
outline: none;
background: darken($brand-primary, 10%);
}
&::-webkit-input-placeholder {
color: lighten($brand-primary, 35%);
}
}
}
}
}
.content {
flex: 1 1 auto;
position: relative;
overflow: auto;
height: 100%;
}
.footer {
height: 50px;
background-color: $background-color-alt;
flex: 0 0 auto;
border-top: 1px solid $border-color-dark;
display: flex;
align-items: center;
padding: 0 15px;
button {
margin-right: 10px;
&:last-child {
margin-right: 0;
}
}
.right {
margin-left: auto;
display: flex;
}
}
}