themes/bootstrap: another round of css fixes

This commit is contained in:
Jo-Philipp Wich 2013-01-04 19:55:54 +00:00
parent c69c3f01a7
commit c369ef0f3d

View file

@ -108,9 +108,13 @@ img {
button, button,
input, input,
select, select,
option,
textarea { textarea {
font-size: 100%; font-size: 100%;
margin: 0; margin: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
vertical-align: baseline; vertical-align: baseline;
*vertical-align: middle; *vertical-align: middle;
} }
@ -449,7 +453,7 @@ textarea {
form .input, form .input,
form .cbi-value-field { form .cbi-value-field {
margin-left: 150px; margin-left: 200px;
} }
form .cbi-value label.cbi-value-title { form .cbi-value label.cbi-value-title {
@ -457,7 +461,7 @@ form .cbi-value label.cbi-value-title {
font-size: 13px; font-size: 13px;
line-height: 18px; line-height: 18px;
float: left; float: left;
width: 130px; width: 180px;
text-align: right; text-align: right;
color: #404040; color: #404040;
} }
@ -472,7 +476,7 @@ select,
.uneditable-input { .uneditable-input {
display: inline-block; display: inline-block;
width: 210px; width: 210px;
height: 18px; height: 30px;
padding: 4px; padding: 4px;
font-size: 13px; font-size: 13px;
line-height: 18px; line-height: 18px;
@ -507,6 +511,7 @@ input[type=file] {
-webkit-box-shadow: none; -webkit-box-shadow: none;
-moz-box-shadow: none; -moz-box-shadow: none;
box-shadow: none; box-shadow: none;
width: auto !important;
} }
input[type=button], input[type=reset], input[type=submit] { input[type=button], input[type=reset], input[type=submit] {
@ -515,9 +520,7 @@ input[type=button], input[type=reset], input[type=submit] {
} }
select, input[type=file] { select, input[type=file] {
height: 27px;
*height: auto; *height: auto;
line-height: 27px;
*margin-top: 4px; *margin-top: 4px;
/* For IE7, add top margin to align select with labels */ /* For IE7, add top margin to align select with labels */
} }
@ -1760,6 +1763,10 @@ table.cbi-section-table td.cbi-section-table-cell {
text-align: right; text-align: right;
} }
table.cbi-section-table td.cbi-section-table-cell select {
width: inherit;
}
.cbi-value-description { display: inline; } .cbi-value-description { display: inline; }
.cbi-value-description img { vertical-align: middle; } .cbi-value-description img { vertical-align: middle; }