]> BookStack Code Mirror - bookstack/commitdiff
Updated pagination colors for visibility
authorDan Brown <redacted>
Sun, 26 Jul 2020 14:07:47 +0000 (15:07 +0100)
committerDan Brown <redacted>
Sun, 26 Jul 2020 14:07:47 +0000 (15:07 +0100)
Fixes #1839

resources/sass/_lists.scss

index 2ac487e85c3ea07751ce38d88a8701cf80f4f179..a3a58e6c6cd5c66f678d2681d6744f6847748a31 100644 (file)
@@ -357,13 +357,15 @@ ul.pagination {
     border: 1px solid #CCC;
     margin-inline-start: -1px;
     user-select: none;
-    &.disabled {
-      cursor: not-allowed;
-    }
+    @include lightDark(color, #555, #eee);
+    @include lightDark(border-color, #ccc, #666);
+  }
+  li.disabled {
+    cursor: not-allowed;
   }
   li.active span {
-    @include lightDark(color, #444, #eee);
-    @include lightDark(background-color, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
+    @include lightDark(color, #111, #eee);
+    @include lightDark(background-color, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.5));
   }
 }