aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Flowers <[email protected]>2013-11-18 11:58:14 -0700
committerErik Flowers <[email protected]>2013-11-18 11:58:14 -0700
commit50578dda6072f104921ef1563d2928e5463f64cb (patch)
tree6e10317d19c0b60764c5ecf0ed842b2538074377
parentee1c53dca054137e196467b8ca3a0ef96f74f64d (diff)
downloadbootstrap-50578dda6072f104921ef1563d2928e5463f64cb.tar.xz
bootstrap-50578dda6072f104921ef1563d2928e5463f64cb.zip
- Firefox placeholder text is faded out and not the full color. Adding opacity:1 to it returns it to the proper color
- (this is a re-commit since I messed up my branch last time and failed the travis build)
-rw-r--r--less/mixins.less2
1 files changed, 1 insertions, 1 deletions
diff --git a/less/mixins.less b/less/mixins.less
index 3d24e668a..50ccafa7c 100644
--- a/less/mixins.less
+++ b/less/mixins.less
@@ -55,7 +55,7 @@
// Placeholder text
.placeholder(@color: @input-color-placeholder) {
&:-moz-placeholder { color: @color; } // Firefox 4-18
- &::-moz-placeholder { color: @color; } // Firefox 19+
+ &::-moz-placeholder { color: @color; opacity:1; } // Firefox 19+
&:-ms-input-placeholder { color: @color; } // Internet Explorer 10+
&::-webkit-input-placeholder { color: @color; } // Safari and Chrome
}