User:Sandungas/vector.css: Difference between revisions

From PS3 Developer wiki
Jump to navigation Jump to search
mNo edit summary
m (Auch, thats what happens when doing hex calculations with the fingers o0)
Line 3: Line 3:
     color: #222; /* default #000 */
     color: #222; /* default #000 */
     background-color: #f3f4f5; /* default #f8f9fa */
     background-color: #f3f4f5; /* default #f8f9fa */
     border: 1px solid #e0e2e4; /* default 1px solid #eaecf0 */
     border: 1px solid #e0e2e6; /* default 1px solid #eaecf0 */
     padding: 0em; /* default 1em */
     padding: 0em; /* default 1em */
     white-space: pre; /* default pre-wrap */
     white-space: pre; /* default pre-wrap */

Revision as of 17:05, 14 September 2021

/* Prevents line wrapping inside <pre> and <syntaxhighlight> tags, and adds a scrollbar when needed */
pre {
    color: #222; /* default #000 */
    background-color: #f3f4f5; /* default #f8f9fa */
    border: 1px solid #e0e2e6; /* default 1px solid #eaecf0 */
    padding: 0em; /* default 1em */
    white-space: pre; /* default pre-wrap */
    overflow: auto; /* default... not used */
    margin: 0px; /* default... around 12px top and bottom, 4px left and right */
}

/* Trying to remove padding inside table data cells */
table.wikitable > tr > th, table.wikitable > tr > td,
table.wikitable > * > tr > th, table.wikitable > * > tr > td {
    padding: 0em; /* default padding: 0.2em 0.4em */
}