OSDN Git Service

Removed bg-gradient, now directly using linear-gradient
authorKoen Punt <koen@koenpunt.nl>
Sun, 25 Nov 2012 18:25:33 +0000 (19:25 +0100)
committerKoen Punt <koen@koenpunt.nl>
Thu, 29 Nov 2012 11:18:44 +0000 (12:18 +0100)
app/assets/stylesheets/common.scss
app/assets/stylesheets/gitlab_bootstrap/buttons.scss
app/assets/stylesheets/mixins.scss

index c219429..4b7af54 100644 (file)
@@ -374,12 +374,12 @@ p.time {
       height: 100%;
     }
     .bar-success {
+      @include linear-gradient(#62C462, #51A351);
       background-color: #468847;
-      @include bg-gradient(#62C462, #51A351);
     }
     .bar-danger {
+      @include linear-gradient(#EE5F5B, #BD362F);
       background-color: #B94A48;
-      @include bg-gradient(#EE5F5B, #BD362F);
     }
   }
   .upvotes {
index a8d9e5c..bb2cfbb 100644 (file)
@@ -1,5 +1,5 @@
 .btn {
-  @include bg-gradient(#f7f7f7, #d5d5d5);
+  @include linear-gradient(#f7f7f7, #d5d5d5);
   border-color: #aaa;
   &:hover {
     @include bg-gray-gradient;
@@ -9,7 +9,7 @@
 
   &.primary {
     background: #2a79A3;
-    @include bg-gradient(#47A7b7, #2585b5);
+    @include linear-gradient(#47A7b7, #2585b5);
     border-color: #2A79A3;
     color: #fff;
     text-shadow: 0 1px 1px #268;
index c704de0..11a8535 100644 (file)
   background-image: -o-linear-gradient($from, $to);
 }
 
-@mixin bg-gradient($from, $to) {
-  @include linear-gradient($from, $to);
-}
-
 @mixin bg-light-gray-gradient {
   background: #f1f1f1;
   background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, #f5f5f5), to(#e1e1e1));