User:Sandungas/vector.css: Difference between revisions

From PS3 Developer wiki
Jump to navigation Jump to search
m (Removing <pre> padding looks fine and is not problematic, but requires a review of the {{keyboard}} template... and by now im a bit stressed of that kind of work)
mNo edit summary
Line 1: Line 1:
/* Experiments with the <pre> tag temporally disabled because i need to revert my wiki profile to the "common" settings to continue experimenting other stuffings
/* Experiments with the <pre> tag temporally disabled because i need to revert my wiki profile to the "common" settings to continue experimenting other stuffings
pre {
pre {
Line 13: Line 5:
}
}
*/
*/





Revision as of 02:30, 28 September 2021

/* Experiments with the <pre> tag temporally disabled because i need to revert my wiki profile to the "common" settings to continue experimenting other stuffings
pre {
    padding: 0em; /* default 1em */
    tab-width: 4; /* default TAB characters takes the width of 8 spaces */
}
*/


/* This experiment works, but the result is a bit weird when applyed to a whole table IF the table contains plain texts
/* Removes padding inside table data cells */
table.wikitable > tr > th, table.wikitable > tr > td,
table.wikitable > * > tr > th, table.wikitable > * > tr > td {
    padding: 0em; /* default 0.2em 0.4em */
}
*/