This commit is contained in:
Kevin Ross 2016-04-01 10:24:15 -04:00
parent 6fabda4e8b
commit e90a3e9ee1
5 changed files with 5 additions and 9 deletions

View File

@ -1621,6 +1621,7 @@ output {
} }
.label { .label {
border-radius: 1px; border-radius: 1px;
padding: .3em .6em;
} }
.label, .label,
.label.label-default { .label.label-default {
@ -1847,7 +1848,6 @@ label {
label.control-label { label.control-label {
font-size: 12px; font-size: 12px;
line-height: 1.07142857; line-height: 1.07142857;
color: #BDBDBD;
font-weight: 400; font-weight: 400;
margin: 16px 0 0 0; margin: 16px 0 0 0;
} }
@ -1891,7 +1891,6 @@ label.control-label {
.form-group label.control-label { .form-group label.control-label {
font-size: 12px; font-size: 12px;
line-height: 1.07142857; line-height: 1.07142857;
color: #BDBDBD;
font-weight: 400; font-weight: 400;
margin: 16px 0 0 0; margin: 16px 0 0 0;
} }
@ -1955,7 +1954,6 @@ label.control-label {
.form-group.form-group-sm label.control-label { .form-group.form-group-sm label.control-label {
font-size: 9px; font-size: 9px;
line-height: 1.125; line-height: 1.125;
color: #BDBDBD;
font-weight: 400; font-weight: 400;
margin: 16px 0 0 0; margin: 16px 0 0 0;
} }
@ -2019,7 +2017,6 @@ label.control-label {
.form-group.form-group-lg label.control-label { .form-group.form-group-lg label.control-label {
font-size: 14px; font-size: 14px;
line-height: 0.99999998; line-height: 0.99999998;
color: #BDBDBD;
font-weight: 400; font-weight: 400;
margin: 16px 0 0 0; margin: 16px 0 0 0;
} }

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -6,6 +6,7 @@
.label { .label {
border-radius: $border-radius-small; border-radius: $border-radius-small;
@include variations(unquote(".label"), unquote(""), background-color, $grey); @include variations(unquote(".label"), unquote(""), background-color, $grey);
padding: .3em .6em; // Make top & bottom .label padding the same: https://github.com/twbs/bootstrap/pull/19631
} }
// must be broken out for reuse - webkit selector breaks firefox // must be broken out for reuse - webkit selector breaks firefox
@ -47,7 +48,6 @@
label.control-label { label.control-label {
font-size: $static-font-size; font-size: $static-font-size;
line-height: $static-line-height; line-height: $static-line-height;
color: $mdb-input-placeholder-color;
font-weight: 400; font-weight: 400;
margin: 16px 0 0 0; // std and lg margin: 16px 0 0 0; // std and lg
} }
@ -352,4 +352,3 @@ select.form-control {
height: 100%; height: 100%;
z-index: 100; z-index: 100;
} }