Sha256: 3442e141156ad4a3f17bd48d4c9e7e6d3b4e97aa907d7bcd8a208c2f2f9166cf
Contents?: true
Size: 1.22 KB
Versions: 4
Compression:
Stored size: 1.22 KB
Contents
// ============================================================================= // OPACITY // // The opacity mixin is used to set the opacity level for all browsers // including IE. // // Available As: // +skeletor-opacity() // +s-opacity() // // ============================================================================= // ----------------------------------------------------------------------------- // Media Query // ----------------------------------------------------------------------------- =skeletor-opacity($opacity, $important: null) opacity: $opacity $important filter: alpha(opacity= $opacity * 100 ) $important // ----------------------------------------------------------------------------- // Alias for opacity mixin // ----------------------------------------------------------------------------- =s-opacity($opacity, $important: null) +skeletor-opacity($opacity, $important) // ----------------------------------------------------------------------------- // If no-conflict set to allow shorter mixin names // ----------------------------------------------------------------------------- // @if $no-conflict // =opacity($opacity, $important: null) // +skeletor-opacity($opacity, $important)
Version data entries
4 entries across 4 versions & 1 rubygems