Created
August 2, 2011 16:40
-
-
Save quickredfox/1120604 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import 'compass'; | |
$include-default: true !default; | |
$include-default-uis: true !default; | |
@import 'ext4/default/functions'; | |
@import 'ext4/default/variables'; | |
@mixin background-gradient($bg-color, $type: $base-gradient, $direction: top) { | |
background-image: none; | |
background-color: $bg-color; | |
@if $base-gradient != null and $bg-color != transparent { | |
@if type-of($type) == "list" {} | |
@else if $type == bevel { } | |
@else if $type == glossy {} | |
@else if $type == recessed {} | |
@else if $type == matte {} | |
@else if $type == matte-reverse {} | |
@else if $type == glossy-toolbar {} | |
@else if $type == panel-header {} | |
@else if $type == tabbar {} | |
@else if $type == tab {} | |
@else if $type == tab-active {} | |
@else if $type == tab-over {} | |
@else if $type == tab-disabled {} | |
@else if $type == grid-header {} | |
@else if $type == grid-header-over {} | |
@else if $type == grid-row-over {} | |
@else if $type == grid-cell-special {} | |
@else if $type == glossy-button or $type == glossy-button-disabled {} | |
@else if $type == glossy-button-over {} | |
@else if $type == glossy-button-pressed {} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment