From: Dan Brown Date: Sun, 26 Jul 2020 14:07:47 +0000 (+0100) Subject: Updated pagination colors for visibility X-Git-Tag: v0.30.0~1^2~20 X-Git-Url: http://source.bookstackapp.com/bookstack/commitdiff_plain/6e4132121c0f472f2314d0186a6fdaf75b3b0c8d Updated pagination colors for visibility Fixes #1839 --- diff --git a/resources/sass/_lists.scss b/resources/sass/_lists.scss index 2ac487e85..a3a58e6c6 100644 --- a/resources/sass/_lists.scss +++ b/resources/sass/_lists.scss @@ -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)); } }