Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorMark Otto <markd.otto@gmail.com>2015-06-19 02:32:30 +0300
committerMark Otto <markd.otto@gmail.com>2015-06-19 02:32:30 +0300
commitdf78c8956d16f7128b853cf712f88dc79774d409 (patch)
tree34594eb3784e20245055d4949c6752ec2688b946 /less
parenta89f00edf76b0f9ab9f8b56014cd419bf72cd5f7 (diff)
Follow up to #16529 (remove select caret in IE10+)
- Update comment as recommended by @cvrebert - Use `transparent` for `background-color` so we don't need to override that value again in the disabled state. - Remove disabled changes. /cc @wonsong
Diffstat (limited to 'less')
-rw-r--r--less/forms.less6
1 files changed, 2 insertions, 4 deletions
diff --git a/less/forms.less b/less/forms.less
index 0fa85d8502..910c1e13b8 100644
--- a/less/forms.less
+++ b/less/forms.less
@@ -132,10 +132,10 @@ output {
// Placeholder
.placeholder();
- // Removes the border and background color around the caret in IE
+ // Unstyle the caret on `<select>`s in IE10+.
&::-ms-expand {
border: 0;
- background-color: @input-bg;
+ background-color: transparent;
}
// Disabled and read-only inputs
@@ -145,8 +145,6 @@ output {
// don't honor that edge case; we style them as disabled anyway.
&[disabled],
&[readonly],
- &[disabled]::-ms-expand,
- &[readonly]::-ms-expand,
fieldset[disabled] & {
background-color: @input-bg-disabled;
opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655