Pagination

This commit is contained in:
John Mertz 2023-09-28 18:18:07 +00:00
parent ff04bd24ca
commit 4a0dc0366d
1 changed files with 19 additions and 6 deletions

View File

@ -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;
}