Editing User talk:Derf
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 68: | Line 68: | ||
Btw, im pretty sure one of the tricks i been doing in some wikitables to hide table cells is going to be problematic with a dark skin because i was filling the table cell backgrounds and borders with white in RGB notation <code>color:#FFFFFF</code> (invisible over a white background, but very notable over a black background, oooops), the solution is easy, we need to use RGBA notation <code>color:rgba 0,0,0,0</code> (fully transparent black) or with syntax <code>color:transparent</code>, if some of you finds this kind of mistakes feel free to fix them<br> | Btw, im pretty sure one of the tricks i been doing in some wikitables to hide table cells is going to be problematic with a dark skin because i was filling the table cell backgrounds and borders with white in RGB notation <code>color:#FFFFFF</code> (invisible over a white background, but very notable over a black background, oooops), the solution is easy, we need to use RGBA notation <code>color:rgba 0,0,0,0</code> (fully transparent black) or with syntax <code>color:transparent</code>, if some of you finds this kind of mistakes feel free to fix them<br> | ||
--[[User:Sandungas|Sandungas]] ([[User talk:Sandungas|talk]]) 14:00, 8 May 2023 (CEST) | --[[User:Sandungas|Sandungas]] ([[User talk:Sandungas|talk]]) 14:00, 8 May 2023 (CEST) | ||
=== compatibility-tag class improvements === | |||
Please make the compatibility-tag class something generic for all skins and add this properties to it, i was talking about it [[Talk:PS2_Classics_Emulator_Compatibility_List#Header_sort_arrows_and_region_columns_width|here]] and i tryed it in my personal [[User:Sandungas/vector.css|vector.css]] but was not working. In the past i modifyed the global .css files but it was an emergency because defyboy was not helping, i really needed it, and i was sure what i was doing was working because did work in my personal css but this is not the case. So please do it asap to help me advance with the compatibility lists improvements, i been waiting for this since some days ago --[[User:Sandungas|Sandungas]] | |||
<syntaxhighlight lang="css"> | |||
.compatibility-tag { | |||
text-align: center; /* default: left */ | |||
font-weight: bold; /* default: normal */ | |||
white-space: nowrap; /* default: wrap */ | |||
padding: 0em; /* default: 0.2em 0.4em */ | |||
cursor: help; /* default: auto */ | |||
} | |||
</syntaxhighlight> |