Răsfoiți Sursa

Changed the appearance of pagination.
-Changed to display the primary color of each theme.

oshikishintaro 5 ani în urmă
părinte
comite
d63405a07c

+ 0 - 5
src/client/styles/scss/theme/_apply-colors-dark.scss

@@ -93,11 +93,6 @@ ul.pagination {
     button.page-link {
       @extend .btn-dark;
     }
-    &.active {
-      button {
-        @extend .active;
-      }
-    }
   }
 }
 

+ 14 - 0
src/client/styles/scss/theme/_apply-colors.scss

@@ -477,3 +477,17 @@ mark.rbt-highlight-text {
     fill: $gray-900;
   }
 }
+
+/*
+* Pagination
+*/
+ul.pagination {
+  li.page-item {
+    &.active {
+      button {
+        background-color: $primary;
+        border-color: $primary;
+      }
+    }
+  }
+}