summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/vendor/fancy-buttons/_fancy-gradient.scss
diff options
context:
space:
mode:
authorStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-01-21 20:18:16 +0100
committerStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-01-22 00:02:50 +0100
commit18ed88c7e3c789366f6e5443dc4ee0bc981a4b88 (patch)
tree847f179022a2c69c1b641fcb2aa474f168877649 /app/assets/stylesheets/vendor/fancy-buttons/_fancy-gradient.scss
parent495bbfdf78206c8adaec057e83900dda6754092c (diff)
Started the migration to Twitter Bootstrap.
Diffstat (limited to 'app/assets/stylesheets/vendor/fancy-buttons/_fancy-gradient.scss')
-rw-r--r--app/assets/stylesheets/vendor/fancy-buttons/_fancy-gradient.scss28
1 files changed, 0 insertions, 28 deletions
diff --git a/app/assets/stylesheets/vendor/fancy-buttons/_fancy-gradient.scss b/app/assets/stylesheets/vendor/fancy-buttons/_fancy-gradient.scss
deleted file mode 100644
index da0baa9..0000000
--- a/app/assets/stylesheets/vendor/fancy-buttons/_fancy-gradient.scss
+++ /dev/null
@@ -1,28 +0,0 @@
-@mixin fancy-gradient($color1, $color2) {
- $top_shine: lighten($color1, 18);
- $bottom_glow: lighten($color2, 10);
- $top_middle: $color1;
- $middle: lighten($color2, 3);
- $bottom_middle: $color2;
- @include background-image(linear-gradient($top_shine, $top_middle 10%, $middle 50%, $bottom_middle 50%, $bottom_glow)); }
-
-@mixin fancy-gradient-active($color1, $color2) {
- $top: lighten($color2, 6);
- $bottom: lighten($color2, 14);
- $top_middle: lighten($color2, 8);
- $middle: lighten($color2, 4);
- $bottom_middle: lighten($color2, 1);
- @include background-image(linear-gradient($top, $top_middle 30%, $middle 50%, $bottom_middle 50%, $bottom)); }
-
-@mixin fancy-matte-gradient($color1, $color2) {
- @include background-image(linear-gradient($color1, $color2)); }
-
-@mixin fancy-matte-gradient-active($color1, $color2) {
- $top: lighten($color2, 5);
- $bottom: lighten($color2, 15);
- $middle: lighten($color2, 8);
- @include background-image(linear-gradient($top, $middle 40%, $middle 85%, $bottom)); }
-
-/* incase an inverted custom gradient isn't specified */
-@mixin custom-fancy-gradient-active($color1, $color2) {
- @include custom-fancy-gradient($color1, $color2); }