width: auto;
margin: 0;
}
+ input,
+ textarea,
+ select,
+ .uneditable-input {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ -ms-box-sizing: border-box;
+ box-sizing: border-box;
+ max-width: 100%;
+ }
}
@media (min-width: 768px) and (max-width: 979px) {
.row {
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
+ -ms-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: width 0.6s ease;
-moz-transition: width 0.6s ease;
.box-sizing(@boxmodel) {
-webkit-box-sizing: @boxmodel;
-moz-box-sizing: @boxmodel;
+ -ms-box-sizing: @boxmodel;
box-sizing: @boxmodel;
}
width: auto;
margin: 0;
}
+
+ // FORM FIELDS
+ // -----------
+ // Make them behave like divs
+ input,
+ textarea,
+ select,
+ .uneditable-input {
+ .box-sizing(border-box);
+ max-width: 100%;
+ }
}