Explorar o código

Moved the notation of pagination color specification.

oshikishintaro %!s(int64=5) %!d(string=hai) anos
pai
achega
d6dfa4de0b
Modificáronse 1 ficheiros con 30 adicións e 32 borrados
  1. 30 32
      src/client/styles/scss/theme/_apply-colors.scss

+ 30 - 32
src/client/styles/scss/theme/_apply-colors.scss

@@ -118,6 +118,36 @@ pre:not(.hljs):not(.CodeMirror-line) {
   }
   }
 }
 }
 
 
+// Pagination
+ul.pagination {
+  li.page-item.disabled {
+    button.page-link {
+      color: $gray-400;
+    }
+  }
+  li.page-item.active {
+    button.page-link {
+      color: color-yiq($primary);
+      background-color: $primary;
+      &:hover {
+        color: color-yiq($primary);
+        background-color: $primary;
+      }
+    }
+  }
+  li.page-item {
+    button.page-link {
+      color: $primary;
+      border-color: $secondary;
+      &:hover,
+      &:active,
+      &:focus {
+        color: $primary;
+      }
+    }
+  }
+}
+
 //
 //
 //== Apply to Handsontable
 //== Apply to Handsontable
 //
 //
@@ -476,35 +506,3 @@ mark.rbt-highlight-text {
     fill: $gray-900;
     fill: $gray-900;
   }
   }
 }
 }
-
-/*
-* Pagination
-*/
-ul.pagination {
-  li.page-item.disabled {
-    button.page-link {
-      color: $gray-400;
-    }
-  }
-  li.page-item.active {
-    button.page-link {
-      color: color-yiq($primary);
-      background-color: $primary;
-      &:hover {
-        color: color-yiq($primary);
-        background-color: $primary;
-      }
-    }
-  }
-  li.page-item {
-    button.page-link {
-      color: $primary;
-      border-color: $secondary;
-      &:hover,
-      &:active,
-      &:focus {
-        color: $primary;
-      }
-    }
-  }
-}