change page number chooser color

alprly

Active member
Registered
Joined
Apr 24, 2020
Messages
32
Points
18

Reputation:

Screenshot_27.png

hello how to change this page chooser background color?
on hover its white color i need to change to dark
 

BattleKing

Spirit of darkness
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P Member
Collaborate
Registered
Joined
May 24, 2020
Messages
3,515
Points
523

Reputation:

Put this in extra.less

change the colors to your needs, first one is the selected color background, color is text color of selected one and the last one is the color if you hove over it.

Less:
.pageNav-page.pageNav-page--current {
    background: #3b3b3b;
    color: #bab8b8;
}

.pageNav-page.pageNav-page--current:hover, .pageNav-page.pageNav-page--current:active {
    background: #333;
}
 
Top