From 4a0dc0366dd7470ee60b5fd70c4f7298ee8aeddb Mon Sep 17 00:00:00 2001 From: John Mertz Date: Thu, 28 Sep 2023 18:18:07 +0000 Subject: [PATCH] Pagination --- css/theme-gruvbox.css | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/css/theme-gruvbox.css b/css/theme-gruvbox.css index ae1fa03..387c5c5 100644 --- a/css/theme-gruvbox.css +++ b/css/theme-gruvbox.css @@ -138,12 +138,8 @@ a.item { border-color: #DB2828!important; } .ui.menu { - background: #0202aa; - border: 1px solid #203241; -} -.ui.menu .item { - background: #051865; - color: #aaaaaa; + background: none !important; + border: 0px !important; } .ui.menu .active.item:hover, .ui.vertical.menu .active.item:hover { @@ -1472,6 +1468,10 @@ div.ui.twelve.wide.column { .user.profile .ui.secondary.stackable.pointing.menu { border-bottom: none; } +.ui.menu .item > .label { + background-color: var(--white) !important; + color: var(--bghl) !important; +} .user.profile .ui.secondary.stackable.pointing.menu .item, .ui.secondary.pointing.tabular .item { background-color: var(--yellow) !important; color: var(--fghl) !important; @@ -1538,3 +1538,16 @@ div.ui.twelve.wide.column { .page-footer a:hover { color: var(--white); } +/* Pagination */ +.pagination a.disabled { + color: var(--fg) !important; +} +.pagination a { + background-color: var(--yellow) !important; + color: var(--fghl) !important; + margin-left: 0px !important; +} +.pagination a:hover, .pagination a.active { + background-color: var(--yellowhl) !important; + color: var(--white) !important; +}