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

opacity.less « mixins « bootstrap-3.3.5 « less « assets « src - github.com/ForkAwesome/Fork-Awesome.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 33ed25ce6763de7f8ae195628c1eb168379d8435 (plain)
1
2
3
4
5
6
7
8
// Opacity

.opacity(@opacity) {
  opacity: @opacity;
  // IE8 filter
  @opacity-ie: (@opacity * 100);
  filter: ~"alpha(opacity=@{opacity-ie})";
}