Jump to content

Icons missing?

myselfolli

Photographic evidence as to why dark theme is the best theme:

image.png.cf6b8cf0148c56be13f3d15d65a742a7.png

 

Using Chrome on Windows, if it at all matters to know :) 

"We're all in this together, might as well be friends" Tom, Toonami.

 

mini eLiXiVy: my open source 65% mechanical PCB, a build log, PCB anatomy and discussing open source licenses: https://linustechtips.com/topic/1366493-elixivy-a-65-mechanical-keyboard-build-log-pcb-anatomy-and-how-i-open-sourced-this-project/

 

mini_cardboard: a 4% keyboard build log and how keyboards workhttps://linustechtips.com/topic/1328547-mini_cardboard-a-4-keyboard-build-log-and-how-keyboards-work/

Link to comment
Share on other sites

Link to post
Share on other sites

  • 2 weeks later...
// ==UserScript==
// @name         Gimme icons
// @version      0.1
// @description  give a background color to fix the invisible icons on a profiles reputation page.
// @author       Lars
// @include      https://linustechtips.com/main/profile/*/reputation/*
// ==/UserScript==

$( window ).on( "load", function() {$(".ipsGrid_span6").css({"background-color": "#222" });});

Because I couldn't stand the discrimination against light mode (and because I wanted to try) I wrote a tiny userscript that makes the background color behind the icons dark. It's quite a bad and temporary fix until next update but it works (on chrome at least as that's where I tested it). You can add it via an add-onn like tampermonkey on chrome if you like :)

It makes the it look like this btw (not perfect but it works):

Spoiler

image.png.74cfe2da764af85d306cee0afcfbdab1.png

 

while (alive == true) { breathe(); }

 

Link to comment
Share on other sites

Link to post
Share on other sites

25 minutes ago, Kleine IJsbeer said:

// ==UserScript==
// @name         Gimme icons
// @version      0.1
// @description  give a background color to fix the invisible icons on a profiles reputation page.
// @author       Lars
// @include      https://linustechtips.com/main/profile/*/reputation/*
// ==/UserScript==

$( window ).on( "load", function() {$(".ipsGrid_span6").css({"background-color": "#222" });});

Because I couldn't stand the discrimination against light mode (and because I wanted to try) I wrote a tiny userscript that makes the background color behind the icons dark. It's quite a bad and temporary fix until next update but it works (on chrome at least as that's where I tested it). You can add it via an add-onn like tampermonkey on chrome if you like :)

It makes the it look like this btw (not perfect but it works):

  Hide contents

image.png.74cfe2da764af85d306cee0afcfbdab1.png

 

I'd recommend using

$(".cProfileRepScore ~ .ipsBox .ipsGrid_span6").addClass("lmgReactionListRow_icon")

inside the load function, which will make it consistent with the other rep stuff (making the resulting user script

// ==UserScript==
// @name         Gimme icons
// @version      0.1
// @description  give a background color to fix the invisible icons on a profiles reputation page.
// @author       Lars
// @include      https://linustechtips.com/main/profile/*/reputation/*
// ==/UserScript==

$( window ).on( "load", function() {$(".cProfileRepScore ~ .ipsBox .ipsGrid_span6").addClass("lmgReactionListRow_icon");});

)

image.png

HTTP/2 203

Link to comment
Share on other sites

Link to post
Share on other sites

@colonel_mortis that's way nicer, completely forgot there's already icons that work on a white background to steal their class ?

while (alive == true) { breathe(); }

 

Link to comment
Share on other sites

Link to post
Share on other sites

  • 1 month later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×