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

finished CRUD operations for Send

This commit is contained in:
addison
2021-02-16 11:52:23 -05:00
parent 12532f3cc4
commit 1290ff2c40
7 changed files with 230 additions and 91 deletions

View File

@@ -102,7 +102,7 @@
&:hover, &:focus, &.active {
@include themify($themes) {
background-color: themed('boxBackgroundHoverColor');
> * {
textarea {
background-color: themed('boxBackgroundHoverColor');
}
}
@@ -118,7 +118,7 @@
overflow-x: auto;
}
.row-label, label {
.row-label, label:not(.label-hack) {
font-size: $font-size-small;
display: block;
width: 100%;
@@ -169,7 +169,7 @@
&.box-content-row-multi {
width: 100%;
input:not([type="checkbox"]) {
input:not([type="checkbox"]):not([type="checkbox"]) {
width: 100%;
}
@@ -250,7 +250,22 @@
}
}
input:not([type="checkbox"]), textarea {
&.box-content-row-radio {
display: grid;
grid-template-columns: 1fr;
.item {
display: flex;
flex: 1;
align-items: center;
> .radio {
margin-right: 5px;
margin-top: 0;
}
}
}
input:not([type="checkbox"]):not([type="radio"]), textarea {
border: none;
width: 100%;
background-color: transparent;