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

_opacity.scss « mixins « bootstrap « stylesheets « assets - github.com/twbs/bootstrap-sass.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 88e9a576abd795a9d0734542ff7e58e44a08d9a3 (plain)
1
2
3
4
5
6
7
8
// Opacity

@mixin opacity($opacity) {
  opacity: $opacity;
  // IE8 filter
  $opacity-ie: ($opacity * 100);
  filter: alpha(opacity=$opacity-ie);
}