Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / docs / resources / themes / stylesheets / ext4 / default / mixins / _color-by-background.scss
diff --git a/docs/resources/themes/stylesheets/ext4/default/mixins/_color-by-background.scss b/docs/resources/themes/stylesheets/ext4/default/mixins/_color-by-background.scss
deleted file mode 100644 (file)
index c10eab1..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-/**
- *
- */
-@mixin color-by-background($bg-color, $contrast: 70%, $default-color: null, $bevel-text: true) {
-    @if ($default-color != null) {
-        color: $default-color;
-    } @else {
-        @if (lightness($bg-color) > 40) {
-            color: darken($bg-color, $contrast);
-        }
-        @else {
-            color: lighten($bg-color, $contrast)
-        }
-    }
-
-    @if ($bevel-text != false) {
-        @if (lightness($bg-color) < 40) {
-            @include text-shadow(rgba(0,0,0,.5) 0 -1px 0);
-        } @else {
-            @include text-shadow(rgba(255,255,255,.25) 0 1px 0);
-        }
-    }
-}