Module: Sass::Script::Functions
- Defined in:
- lib/sass-rails-bootstrap/sass_functions.rb
Instance Method Summary collapse
-
#ie_hex_str(color) ⇒ Object
Snatched from compass - 2011-11-29 - used for gradients in IE6-9 returns an IE hex string for a color with an alpha channel suitable for passing to IE filters.
Instance Method Details
#ie_hex_str(color) ⇒ Object
Snatched from compass - 2011-11-29 - used for gradients in IE6-9 returns an IE hex string for a color with an alpha channel suitable for passing to IE filters.
7 8 9 10 11 12 |
# File 'lib/sass-rails-bootstrap/sass_functions.rb', line 7 def ie_hex_str(color) assert_type color, :Color alpha = (color.alpha * 255).round alphastr = alpha.to_s(16).rjust(2, '0') Sass::Script::String.new("##{alphastr}#{color.send(:hex_str)[1..-1]}".upcase) end |