More actions
Created page with "→All CSS here will be loaded for users of the Citizen skin: table.infobox { float: right; background-color: var(--border-color-base) !important; clip-path: polygon(0 10.00px,10.00px 0,calc(100% - 8px) 0,100% 10.00px,100% calc(100% - 10.00px),calc(100% - 10.00px) 100%,10.00px 100%,0 calc(100% - 10.00px)); border-collapse: unset; →originally collapse, but this caused problems with yellow borders not showing up properly: margin: 10px; padding: 10p..." |
No edit summary |
||
| Line 3: | Line 3: | ||
table.infobox { | table.infobox { | ||
float: right; | float: right; | ||
background-color: var(--border-color-base) | background-color: var(--color-surface-2); | ||
border: var(--border-width-base) solid var(--border-color-base); | |||
clip-path: polygon(0 10.00px,10.00px 0,calc(100% - 8px) 0,100% 10.00px,100% calc(100% - 10.00px),calc(100% - 10.00px) 100%,10.00px 100%,0 calc(100% - 10.00px)); | clip-path: polygon(0 10.00px,10.00px 0,calc(100% - 8px) 0,100% 10.00px,100% calc(100% - 10.00px),calc(100% - 10.00px) 100%,10.00px 100%,0 calc(100% - 10.00px)); | ||
border-collapse: unset; /* originally collapse, but this caused problems with yellow borders not showing up properly */ | border-collapse: unset; /* originally collapse, but this caused problems with yellow borders not showing up properly */ | ||
Revision as of 16:44, 22 December 2024
/* All CSS here will be loaded for users of the Citizen skin */
table.infobox {
float: right;
background-color: var(--color-surface-2);
border: var(--border-width-base) solid var(--border-color-base);
clip-path: polygon(0 10.00px,10.00px 0,calc(100% - 8px) 0,100% 10.00px,100% calc(100% - 10.00px),calc(100% - 10.00px) 100%,10.00px 100%,0 calc(100% - 10.00px));
border-collapse: unset; /* originally collapse, but this caused problems with yellow borders not showing up properly */
margin: 10px;
padding: 10px;
}