XF 2.2 SourceJump and Quote/Reply Button Colors

Matthew Hutchinson

Active member
I recently bought a copy of @Pixel Exit 's Core Dark theme and have hit a couple of final snags trying to customize it. I've already posted these questions on their support board but figured I'd try getting some help here, too, while I wait for their reply.

First, I'm trying to target the 'a.bbBlock-sourcejump' color in quoted posts with a custom color via the extras.less template, but the style is not adhering to my code:

a.bbCodeBlock-sourceJump
{ color: orange;
text-decoration: none;
}

Any idea what I might be doing wrong?

Second, how do I target the Quote/Reply button color in extras.less?

quote-reply buttons.jpg
 
Problem solved, thanks to @Pixel Exit !

I added the following SourceJump code to my extra.less template:

.bbWrapper a.bbCodeBlock-sourceJump
{ color: orange;
text-decoration: none;
}

.fr-element a, .bbWrapper a
{
color: #a6dcff;
}

And turned the Quote / Repy tooltip into a button:

.tooltip.tooltip--selectToQuote .tooltip-content
{
background: #4979b8;
.tooltip-arrow
{
border-bottom-color: #4979b8;
}
a
{
background-color: #4979b8;
color: #fff;
padding: 5px 10px;
border-radius: @xf-borderRadiusMedium;
border: 1px solid #6084b4;
}
}
 
Top Bottom