this post was submitted on 11 Jun 2023
22 points (100.0% liked)

Kbin Userstyles and Userscripts

4 readers
1 users here now

Custom CSS and JS to help improve your Kbin experience! ### Userscripts Greasy Fork ### Stylesheets UserStyles.world ### Userscript managers

founded 1 year ago
 

Here's a place to share your little tweaks that you might think aren't big enough to warrant a full post, share away!

you are viewing a single comment's thread
view the rest of the comments
[–] uwu@kbin.social 0 points 1 year ago (1 children)

Is there a way to implement the vote button colors in the custom CSS and JS inputs in the appearance section of the Magazine Panel?

[–] artillect@kbin.social 0 points 1 year ago (1 children)

If you add that to the custom CSS, it should work

[–] uwu@kbin.social 2 points 1 year ago (1 children)

I have this in the custom CSS:

#middle { background: url(https://karab.in/build/images/shape2.png); height: 100%; }

.vote .active.vote__up button  {
  color: #ff8f65;
}

.vote .active.vote__down button  {
  color: #9494ff;
}

But only the background works. Is that how you intended or should it be in a #middle or something? The votes are just both still white. Does the site theme override it?

[–] artillect@kbin.social 0 points 1 year ago (1 children)

I think the site might be overriding it, try changing it to this:

.vote .active.vote__up button {
  color: #ff8f65 !important;
}

.vote .active.vote__down button {
  color: #9494ff !important;
}

[–] uwu@kbin.social 0 points 1 year ago (1 children)

Thanks, though unfortunately that didn't help either as far as I can tell. Appreciate it anyway

[–] artillect@kbin.social 0 points 1 year ago (1 children)

Based on what I've seen from others, it seems to not be working at the moment

[–] uwu@kbin.social 1 points 1 year ago

Ahhhhh that would explain it. Excited to go ham once it's possible