mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
9 lines
222 B
SCSS
9 lines
222 B
SCSS
|
.field {
|
||
|
input.text,
|
||
|
textarea,
|
||
|
.TreeDropdownField {
|
||
|
// Left/right padding conflicts with 100% width on the element unless box-sizing is respected, so disable padding for IE
|
||
|
padding-left: 0;
|
||
|
padding-right: 0;
|
||
|
}
|
||
|
}
|