Admin page pagination color
beloniki opened this issue · 1 comments
beloniki commented
Hi there.
I'm glad to use this one. One little bug, that I've found is on the administration panel: the selected page numbers are not readable in a dark mode.
My solution is to add a rule for this class into css text:
...
/************** Admin panel & Account panel ******************/
.page-list a:not(.rc-button), .page-settings a:not(.rc-button) {
color: var(--primary-font-color);
}
/**** Addition start ****/
body.dark-mode .rcx-pagination__link:disabled {
color: var(--color-white);
}
/**** Addition end ****/
/*body.dark-mode .simplebar-content > .rcx-box => will also modify sidebar background */
body.dark-mode .simplebar-content > .rcx-css-fr02gd { /* main content */
background-color: var(--color-dark);
}
...
Be well! :)