1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-19 02:51:14 +02:00

fix box label wrapping on input and rage box context

This commit is contained in:
Kyle Spearrin 2019-01-11 10:04:43 -05:00
parent bccb77356b
commit 96b8750ff5
2 changed files with 9 additions and 2 deletions

2
jslib

@ -1 +1 @@
Subproject commit 65bd33d860f3af71968a15e78491221091c4369e Subproject commit 2e9ce1571514e2b4ae9ed61a1368b2db03a0ca5d

View File

@ -190,24 +190,31 @@
&.box-content-row-input { &.box-content-row-input {
label { label {
white-space: nowrap; white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} }
input { input {
text-align: right; text-align: right;
width: 45px !important;
} }
} }
&.box-content-row-slider { &.box-content-row-slider {
input[type="range"] { input[type="range"] {
height: 10px; height: 10px;
width: 110px !important;
} }
input[type="number"] { input[type="number"] {
width: 45px; text-align: right;
width: 45px !important;
} }
label { label {
white-space: nowrap; white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} }
} }