This suppresses the 3D background in any table on the WLoH pages.
Useful if your zoom settings are incompatible with the height of the background gif image.
flatTable by za1111
Details
Authorza1111
LicenseCDDL-1.0
Categorywordfeud.aasmul.net
Created
Updated
Size767 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
To make the table heads flat, too, edit the code yourself - the "How To" is IN THE CODE
Source code
/* ==UserStyle==
@name flatTable
@version 1.1.1
@namespace userstyles.world/user/za1111
@description suppress the 3D background of table lines in WLoH
@author za1111
@license CDDL-1.0
==/UserStyle== */
@-moz-document domain("wordfeud.aasmul.net") {
/* to disable 3D effect for table headers too, (1)
table>thead>tr>th,
table>thead>tr>th:focus,
table>thead>tr>th:hover,
table>thead>tr,
table>thead>tr:focus,
table>thead>tr:hover,
remove these lines (1)-(3) completely (2)
INCLUDING the leading/trailing slash&asterisk! (3) */
table>tbody>tr>td,
table>tbody>tr>td:focus,
table>tbody>tr>td:hover,
table>tbody>tr,
table>tbody>tr:focus,
table>tbody>tr:hover {
background-image: none !important;
}
}