1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 01:33:33 +00:00

add/edit folder buttons

This commit is contained in:
Kyle Spearrin
2018-01-27 14:43:29 -05:00
parent 3c76c88d4d
commit c2f778b85a
5 changed files with 73 additions and 23 deletions

View File

@@ -36,6 +36,10 @@ input, select, textarea, button {
font-family: $font-family-sans-serif;
}
button {
padding: 0;
}
textarea {
resize: vertical;
}

View File

@@ -12,9 +12,24 @@
border-right: 1px solid $border-color-dark;
h2 {
color: $gray-light;
text-transform: uppercase;
font-size: $font-size-base;
font-weight: bold;
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) {
@@ -48,9 +63,26 @@
li {
a {
display: block;
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 {