XF 2.1 Searched and searched - Style Properties for page numbers

torontotim

Member
I've searched, scanned all the Style Properties in ACS, Googled...

Which style properties impact the page number buttons? They clearly don't have their own distinct set of properties, so which controls the background, the text, the hover background etc.?
 
Add this in extra.less templte (change colors to what you want)

Code:
/* START Brojevi stranica u threadu */
.structItem-pageJump a
{
    color: #000000;
    background: #91cd9c;
}
/* END Brojevi stranica u threadu */

and

Code:
/* START Boja pozadine za broj stranica - jump to page */
a.pageNav-jump.pageNav-jump--prev
{
    background: #d5f9dc;
    color: #022e11;
}

a.pageNav-jump.pageNav-jump--prev:hover
{
    background: #276b73;
    color: #ffffff;
}

a.pageNav-jump.pageNav-jump--next
{
    background: #d5f9dc;
    color: #022e11;
}

a.pageNav-jump.pageNav-jump--next:hover
{
    background: #276b73;
    color: #ffffff;
}

li.pageNav-page
{
    background: #91cd9c;
    color: #000000;
}

li.pageNav-page:hover
{
    background: #d5f9dc;
    color: #022e11;
}

li.pageNav-page.pageNav-page--current
{
    background: #0a3b07;
    color: #fff;
    border: 1px solid #78b890;
}

li.pageNav-page.pageNav-page--current:hover
{
    background: #d5f9dc;
    color: #000000;
    border: 1px solid #78b890;
}
/* END Boja pozadine za broj stranica - jump to page */
 
Top Bottom