1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 09:13:33 +00:00

ui elements for add cipher

This commit is contained in:
Kyle Spearrin
2018-01-25 16:15:47 -05:00
parent 8840f07032
commit f5459f4c85
5 changed files with 323 additions and 18 deletions

View File

@@ -635,7 +635,7 @@ a {
text-overflow: ellipsis;
}
.row-label {
.row-label, label {
font-size: $font-size-small;
color: $text-muted;
display: block;
@@ -644,7 +644,24 @@ a {
margin-bottom: 5px;
}
input {
input:not([type="checkbox"]), select, textarea {
border: none;
width: 100%;
background-color: transparent;
font-size: $font-size-base;
&::-webkit-input-placeholder {
color: lighten($gray-light, 35%);
}
&:focus {
outline: none;
}
}
input[type="checkbox"] {
float: right;
display: inline-block;
}
.action-buttons {