Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 7th, 2012  |  syntax: None  |  size: 1.38 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. @import 'compass';
  2. $include-default: true !default;
  3. $include-default-uis: true !default;
  4.  
  5. @import 'ext4/default/functions';
  6. @import 'ext4/default/variables';
  7.  
  8.  
  9. @mixin background-gradient($bg-color, $type: $base-gradient, $direction: top) {
  10.     background-image: none;
  11.     background-color: $bg-color;
  12.    
  13.     @if $base-gradient != null and $bg-color != transparent {
  14.  
  15.         @if type-of($type) == "list" {}
  16.         @else if $type == bevel { }
  17.         @else if $type == glossy {}
  18.         @else if $type == recessed {}
  19.         @else if $type == matte {}
  20.         @else if $type == matte-reverse {}
  21.         @else if $type == glossy-toolbar {}
  22.         @else if $type == panel-header {}
  23.         @else if $type == tabbar {}
  24.         @else if $type == tab {}
  25.         @else if $type == tab-active {}
  26.         @else if $type == tab-over {}
  27.         @else if $type == tab-disabled {}
  28.         @else if $type == grid-header {}
  29.         @else if $type == grid-header-over {}                                
  30.         @else if $type == grid-row-over {}                                    
  31.         @else if $type == grid-cell-special {}                                
  32.         @else if $type == glossy-button or $type == glossy-button-disabled {}
  33.         @else if $type == glossy-button-over {}                              
  34.         @else if $type == glossy-button-pressed {}                            
  35.    
  36.     }
  37. }