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

_opacity.scss « mixins « bootstrap « stylesheets « assets - github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df088adfe91d8214b6cc45af7ec9fa3a80f77097 (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)};
}