As suggested by Piotr:
I think we should target text inputs specifically, and don't touch checkboxes at all, just to be safe in case of future style changes. For instance, Opera can completely change checkbox rendering even with simple CSS rules that in theory don't collide with standard control drawing.
This commit is contained in:
parent
52871d929b
commit
c84dcb69c3
@ -2010,7 +2010,7 @@ fieldset .disabled-field td {
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
#table_columns input, #table_columns select {
|
||||
#table_columns input[type="text"], #table_columns select {
|
||||
width: 10em;
|
||||
box-sizing: border-box;
|
||||
-ms-box-sizing: border-box;
|
||||
@ -2018,10 +2018,6 @@ fieldset .disabled-field td {
|
||||
-webkit-box-sizing: border-box;
|
||||
}
|
||||
|
||||
#table_columns input[type="checkbox"] {
|
||||
width: 2em;
|
||||
}
|
||||
|
||||
#placeholder {
|
||||
position: relative;
|
||||
border: 1px solid #aaa;
|
||||
|
||||
@ -2413,7 +2413,7 @@ fieldset .disabled-field td {
|
||||
padding: 1.5em;
|
||||
}
|
||||
|
||||
#table_columns input, #table_columns select {
|
||||
#table_columns input[type="text"], #table_columns select {
|
||||
width: 10em;
|
||||
box-sizing: border-box;
|
||||
-ms-box-sizing: border-box;
|
||||
@ -2421,10 +2421,6 @@ fieldset .disabled-field td {
|
||||
-webkit-box-sizing: border-box;
|
||||
}
|
||||
|
||||
#table_columns input[type="checkbox"] {
|
||||
width: 2em;
|
||||
}
|
||||
|
||||
#table_columns select {
|
||||
margin: 0 6px;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user