diff options
author | Jesús <heckyel@hyperbola.info> | 2019-04-05 15:18:08 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-04-05 15:18:08 -0500 |
commit | b8e0ab3671dbb8ce15787648772a992320cef16c (patch) | |
tree | cbf8676655fa337c3f5a4cfff1f625ab410a720e /src | |
parent | 0f3d51accfb4fc71ada94583488b5ddfc19db102 (diff) | |
download | libretube-theme-b8e0ab3671dbb8ce15787648772a992320cef16c.tar.lz libretube-theme-b8e0ab3671dbb8ce15787648772a992320cef16c.tar.xz libretube-theme-b8e0ab3671dbb8ce15787648772a992320cef16c.zip |
fix pagination color
Diffstat (limited to 'src')
-rw-r--r-- | src/scss/custom/_main.scss | 4 | ||||
-rw-r--r-- | src/scss/custom/_variables.scss | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/scss/custom/_main.scss b/src/scss/custom/_main.scss index 26d62d2..8c110b8 100644 --- a/src/scss/custom/_main.scss +++ b/src/scss/custom/_main.scss @@ -552,6 +552,7 @@ li.mini:nth-child(2) { .page-link { background-color: #222; border: 1px solid #111; + color: #fff; } .page-item.disabled .page-link { @@ -564,7 +565,8 @@ li.mini:nth-child(2) { .page-link:hover { text-decoration: none; background-color: $principal; - border: solid 1px #111; + border: solid 1px $principal-bold; + color: #fff; } .page-item.active .page-link { diff --git a/src/scss/custom/_variables.scss b/src/scss/custom/_variables.scss index 02f7d33..22a9394 100644 --- a/src/scss/custom/_variables.scss +++ b/src/scss/custom/_variables.scss @@ -1,5 +1,6 @@ // Colores $principal: #0091EA; +$principal-bold: #026de0; // Declare the color as RGB; SASS will treat this as hex $blue: rgb(0,145,234); // Declare an alpha |