vertical-align correctif

This commit is contained in:
Raphael Goetter 2016-01-20 17:05:29 +01:00
parent f70d820f83
commit 021f2d63ff
6 changed files with 13 additions and 21 deletions

View File

@ -940,7 +940,6 @@ button,
select, select,
label, label,
.btn { .btn {
vertical-align: middle;
font-family: inherit; font-family: inherit;
font-size: inherit; font-size: inherit;
} }
@ -953,7 +952,6 @@ textarea {
} }
label { label {
display: inline-block; display: inline-block;
vertical-align: middle;
cursor: pointer; cursor: pointer;
} }
legend { legend {

File diff suppressed because one or more lines are too long

View File

@ -22,7 +22,6 @@ button,
select, select,
label, label,
.@{kna-namespace}btn { .@{kna-namespace}btn {
vertical-align: middle;
font-family: inherit; font-family: inherit;
font-size: inherit; font-size: inherit;
} }
@ -37,7 +36,6 @@ textarea {
label { label {
display: inline-block; display: inline-block;
vertical-align: middle;
cursor: pointer; cursor: pointer;
} }

View File

@ -22,7 +22,6 @@ button,
select, select,
label, label,
.#{$kna-namespace}btn { .#{$kna-namespace}btn {
vertical-align: middle;
font-family: inherit; font-family: inherit;
font-size: inherit; font-size: inherit;
} }
@ -36,7 +35,6 @@ textarea {
} }
label { label {
display: inline-block;
vertical-align: middle; vertical-align: middle;
cursor: pointer; cursor: pointer;
} }

View File

@ -1035,11 +1035,10 @@ button,
select, select,
label, label,
.btn { .btn {
vertical-align: middle;
font-family: inherit; font-family: inherit;
font-size: inherit; } font-size: inherit; }
/* line 30, /Users/raphael/Documents/GitHub/KNACSS/sass/_05-forms.scss */ /* line 29, /Users/raphael/Documents/GitHub/KNACSS/sass/_05-forms.scss */
button, button,
input, input,
optgroup, optgroup,
@ -1047,18 +1046,17 @@ select,
textarea { textarea {
color: #000; } color: #000; }
/* line 34, /Users/raphael/Documents/GitHub/KNACSS/sass/_05-forms.scss */ /* line 33, /Users/raphael/Documents/GitHub/KNACSS/sass/_05-forms.scss */
label { label {
display: inline-block;
vertical-align: middle; vertical-align: middle;
cursor: pointer; } cursor: pointer; }
/* line 40, /Users/raphael/Documents/GitHub/KNACSS/sass/_05-forms.scss */ /* line 38, /Users/raphael/Documents/GitHub/KNACSS/sass/_05-forms.scss */
legend { legend {
border: 0; border: 0;
white-space: normal; } white-space: normal; }
/* line 45, /Users/raphael/Documents/GitHub/KNACSS/sass/_05-forms.scss */ /* line 43, /Users/raphael/Documents/GitHub/KNACSS/sass/_05-forms.scss */
textarea { textarea {
min-height: 5em; min-height: 5em;
vertical-align: top; vertical-align: top;
@ -1066,30 +1064,30 @@ textarea {
font-size: inherit; font-size: inherit;
resize: vertical; } resize: vertical; }
/* line 53, /Users/raphael/Documents/GitHub/KNACSS/sass/_05-forms.scss */ /* line 51, /Users/raphael/Documents/GitHub/KNACSS/sass/_05-forms.scss */
select { select {
-webkit-appearance: menulist-button; } -webkit-appearance: menulist-button; }
/* if select styling bugs on WebKit */ /* if select styling bugs on WebKit */
/* select { -webkit-appearance: none; } */ /* select { -webkit-appearance: none; } */
/* 'x' appears on right of search input when text is entered. This removes it */ /* 'x' appears on right of search input when text is entered. This removes it */
/* line 64, /Users/raphael/Documents/GitHub/KNACSS/sass/_05-forms.scss */ /* line 62, /Users/raphael/Documents/GitHub/KNACSS/sass/_05-forms.scss */
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button, input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { input[type="search"]::-webkit-search-results-decoration {
display: none; } display: none; }
/* line 68, /Users/raphael/Documents/GitHub/KNACSS/sass/_05-forms.scss */ /* line 66, /Users/raphael/Documents/GitHub/KNACSS/sass/_05-forms.scss */
::-webkit-input-placeholder { ::-webkit-input-placeholder {
color: #777; } color: #777; }
/* line 73, /Users/raphael/Documents/GitHub/KNACSS/sass/_05-forms.scss */ /* line 71, /Users/raphael/Documents/GitHub/KNACSS/sass/_05-forms.scss */
input:-moz-placeholder, input:-moz-placeholder,
textarea:-moz-placeholder { textarea:-moz-placeholder {
color: #777; } color: #777; }
/* line 75, /Users/raphael/Documents/GitHub/KNACSS/sass/_05-forms.scss */ /* line 73, /Users/raphael/Documents/GitHub/KNACSS/sass/_05-forms.scss */
.btn:focus, .btn:focus,
input[type="button"]:focus, input[type="button"]:focus,
button:focus { button:focus {
@ -1100,7 +1098,7 @@ button:focus {
user-select: none; } user-select: none; }
/* unstyled forms */ /* unstyled forms */
/* line 85, /Users/raphael/Documents/GitHub/KNACSS/sass/_05-forms.scss */ /* line 83, /Users/raphael/Documents/GitHub/KNACSS/sass/_05-forms.scss */
button.unstyled, button.unstyled,
input[type="button"].unstyled, input[type="button"].unstyled,
input[type="submit"].unstyled, input[type="submit"].unstyled,
@ -1115,7 +1113,7 @@ input[type="reset"].unstyled {
-webkit-appearance: none; -webkit-appearance: none;
-moz-appearance: none; -moz-appearance: none;
appearance: none; } appearance: none; }
/* line 99, /Users/raphael/Documents/GitHub/KNACSS/sass/_05-forms.scss */ /* line 97, /Users/raphael/Documents/GitHub/KNACSS/sass/_05-forms.scss */
button.unstyled:focus, button.unstyled:focus,
input[type="button"].unstyled:focus, input[type="button"].unstyled:focus,
input[type="submit"].unstyled:focus, input[type="submit"].unstyled:focus,

File diff suppressed because one or more lines are too long