User:Sandungas/vector.css: Difference between revisions

From PS3 Developer wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 9: Line 9:
}
}


/* Removes pading inside wikitable data cells */
/* Custom class to remove padding inside table data cells */
table.wikitable > td {
.nopadding td {
     padding:0px;
     padding:0px;
}
}

Revision as of 20:32, 13 September 2021

/* Prevents line wrapping inside <pre> and <syntaxhighlight> tags, and adds a scrollbar when needed */
pre {
    white-space: pre;
    overflow: auto;
    padding: 0px;
    margin: 0px;
    background-color: #f3f3f3;
    border: 1px solid #e0e0e0;
}

/* Custom class to remove padding inside table data cells */
.nopadding td {
    padding:0px;
}