bitwarden-estensione-browser/src/scss/box.scss

224 lines
5.6 KiB
SCSS
Raw Normal View History

2018-01-26 20:12:41 +01:00
@import "variables.scss";
.box {
width: 100%;
.box-header {
margin: 0 10px 5px 10px;
color: $gray-light;
text-transform: uppercase;
}
.box-content {
background: $box-background-color;
border-radius: $border-radius;
box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
.box-content-row {
2018-01-29 23:11:31 +01:00
display: block;
2018-01-26 20:12:41 +01:00
padding: 10px 15px;
position: relative;
z-index: 1;
color: $text-color;
overflow-wrap: break-word;
&:before {
content: "";
position: absolute;
right: 0;
bottom: 0;
height: 1px;
width: calc(100% - 10px);
border-bottom: 1px solid $box-border-color;
}
&:first-child, &:last-child {
border-radius: $border-radius;
}
2018-01-26 20:56:54 +01:00
&:last-child:not(.box-content-row-cf) {
2018-01-26 20:12:41 +01:00
&:before {
border: none;
height: 0;
}
}
&:after {
content: "";
display: table;
clear: both;
}
&:hover, &:focus, &.active {
background-color: $box-background-hover-color;
}
&.pre {
white-space: pre;
overflow-x: auto;
}
.no-wrap {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.row-label, label {
font-size: $font-size-small;
color: $text-muted;
display: block;
width: 100%;
margin-bottom: 5px;
}
.row-main {
flex-grow: 1;
}
2018-01-29 23:11:31 +01:00
&.box-content-row-flex, &.box-content-row-checkbox, &.box-content-row-input,
&.box-content-row-slider, &.box-content-row-cf {
2018-01-29 22:13:37 +01:00
display: flex;
align-items: center;
2018-01-29 23:11:31 +01:00
}
2018-01-29 22:13:37 +01:00
2018-01-29 23:11:31 +01:00
&.box-content-row-cf {
width: 100%;
input:not([type="checkbox"]) {
width: 100%;
}
2018-01-29 23:11:31 +01:00
> a {
padding: 8px 10px 8px 5px;
color: $brand-danger;
margin: 0;
}
}
&.box-content-row-checkbox, &.box-content-row-input, &.box-content-row-slider {
2018-01-26 20:12:41 +01:00
label, .row-label {
font-size: $font-size-base;
color: $text-color;
display: inline;
width: initial;
margin-bottom: 0;
}
2018-01-29 22:13:37 +01:00
> span {
color: $text-muted;
}
> input {
margin: 0 0 0 auto;
padding: 0;
}
> * {
margin-right: 15px;
&:last-child {
margin-right: 0;
}
}
}
&.box-content-row-input {
label {
white-space: nowrap;
}
input {
text-align: right;
}
}
&.box-content-row-slider {
input {
height: 10px;
2018-01-26 20:12:41 +01:00
}
}
2018-01-30 03:17:10 +01:00
input:not([type="checkbox"]), textarea {
2018-01-26 20:12:41 +01:00
border: none;
width: 100%;
background-color: transparent;
&::-webkit-input-placeholder {
color: lighten($gray-light, 35%);
}
&:focus {
outline: none;
}
}
2018-01-30 03:17:10 +01:00
select {
width: 100%;
border: 1px solid darken($border-color-dark, 7%);
border-radius: $border-radius;
}
2018-01-26 20:12:41 +01:00
.action-buttons {
.row-btn {
float: left;
cursor: pointer;
padding: 10px 8px;
background: none;
border: none;
color: $brand-primary;
&:hover, &:focus {
color: darken($brand-primary, 10%);
}
&.disabled {
color: $list-icon-color;
&:hover {
color: $list-icon-color;
}
}
&:last-child {
padding-right: 2px !important;
}
}
}
select.field-type {
margin: 5px 0 0 25px;
width: calc(100% - 25px);
}
.right-icon, .fa-chevron-right {
float: right;
margin-top: 4px;
color: $list-icon-color;
}
.row-sub-label {
float: right;
display: block;
margin-right: 15px;
color: $gray-light;
}
small.row-sub-label {
margin-top: 2px;
}
}
2018-01-29 22:13:37 +01:00
&.condensed .box-content-row, .box-content-row.condensed {
padding-top: 5px;
padding-bottom: 5px;
}
2018-01-26 20:12:41 +01:00
}
.box-footer {
margin: 5px 10px;
font-size: $font-size-small;
color: $text-muted;
}
}