Page 1 of 1

About the H2O theme

Posted: Sun Jun 30, 2024 4:50 pm
by fade2gray
Is it possible to fix the background and font colours used for text posted between spoiler tags? The contrast makes spoilers near impossible to read using this theme.

Re: About the H2O theme

Posted: Mon Jul 01, 2024 10:33 am
by STN
fade2gray wrote:
Sun Jun 30, 2024 4:50 pm
Is it possible to fix the background and font colours used for text posted between spoiler tags? The contrast makes spoilers near impossible to read using this theme.
The easiest solution is to get stylish for your browser and edit the style manually on client side. GreenHouse used to have a theme for FRF but he deleted it unfortunately. You can do this for the search box as well.

The fix on server side (by me) involves too many changes as it's not a theme specific change.


I might make a stylish theme myself but time is a luxury these days unfortunately

Re: About the H2O theme

Posted: Mon Jul 01, 2024 11:00 am
by fade2gray
The easiest solution is to get stylish for your browser and edit the style manually on client side
Good idea, thanks.

Re: About the H2O theme

Posted: Mon Jul 01, 2024 12:01 pm
by fade2gray
Works for me ...

Code: Select all

.spoiler-body{
	background: #2D2D2D !important;
	color: #fe0 !important;
}

Re: About the H2O theme

Posted: Thu Jul 04, 2024 11:59 pm
by cheatenginedead
fade2gray wrote:
Mon Jul 01, 2024 12:01 pm
Works for me ...

Code: Select all

.spoiler-body{
	background: #2D2D2D !important;
	color: #fe0 !important;
}
Would you share your theme please

Re: About the H2O theme

Posted: Fri Jul 05, 2024 2:39 pm
by fade2gray

Code: Select all

/* Fixes for H2O theme */

/* For Spoilers */
.spoiler-body{
	background: #2D2D2D !important;
	color: #fe0 !important;
}

/* For the Google search field */
#gs_tti50 {
    color: black !important
}
table.gstl_50:nth-child(3) {
    color: black !important
}

Re: About the H2O theme

Posted: Fri Jul 05, 2024 2:42 pm
by fade2gray

Code: Select all

@-moz-document domain("fearlessrevolution.com") {
/* Fixes for H2O theme */

/* For Spoilers */
.spoiler-body{
	background: #2D2D2D !important;
	color: #fe0 !important;
}

/* For the Google search field */
#gs_tti50 {
    color: black !important
}
table.gstl_50:nth-child(3) {
    color: black !important
}
}