aboutsummaryrefslogtreecommitdiff
path: root/less/forms.less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-07-08 02:04:48 -0700
committerMark Otto <[email protected]>2014-07-08 02:04:48 -0700
commitd7b38d8c4a2669f54f204bc2e555bf58b9717441 (patch)
treee042db88d9a9c9ec77e684d50d867b8230fac9a8 /less/forms.less
parent6fda4098538693259226b1f67d57ff4905a4c173 (diff)
downloadbootstrap-d7b38d8c4a2669f54f204bc2e555bf58b9717441.tar.xz
bootstrap-d7b38d8c4a2669f54f204bc2e555bf58b9717441.zip
Drop: all vendor prefix mixins because autoprefixer
Diffstat (limited to 'less/forms.less')
-rw-r--r--less/forms.less10
1 files changed, 6 insertions, 4 deletions
diff --git a/less/forms.less b/less/forms.less
index e0e6c98e2..2db2f5c07 100644
--- a/less/forms.less
+++ b/less/forms.less
@@ -45,7 +45,7 @@ label {
// Override content-box in Normalize (* isn't specific enough)
input[type="search"] {
- .box-sizing(border-box);
+ box-sizing: border-box;
}
// Position radios and checkboxes better
@@ -124,14 +124,16 @@ output {
background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
border: 1px solid @input-border;
border-radius: @input-border-radius;
- .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
- .transition(~"border-color ease-in-out .15s, box-shadow ease-in-out .15s");
+ box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
+ transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
// Customize the `:focus` state to imitate native WebKit styles.
.form-control-focus();
// Placeholder
- .placeholder();
+ &::placeholder {
+ color: @input-color-placeholder;
+ }
// Disabled and read-only inputs
//