MediaWiki:Common.css: Difference between revisions
From Compendum Caidis
Jump to navigationJump to search
Created page with "→CSS placed here will be applied to all skins: .mw-sticky-header th { position: sticky; top: 0; z-index: 10; →Ensures headers layer above other content: background-color: inherit; →Helps maintain existing header background color: }" |
No edit summary |
||
| Line 4: | Line 4: | ||
top: 0; | top: 0; | ||
z-index: 10; /* Ensures headers layer above other content */ | z-index: 10; /* Ensures headers layer above other content */ | ||
background-color: | background-color: #f9f9f9; /* Helps maintain existing header background color */ | ||
} | } | ||
Latest revision as of 19:57, 2 December 2025
/* CSS placed here will be applied to all skins */
.mw-sticky-header th {
position: sticky;
top: 0;
z-index: 10; /* Ensures headers layer above other content */
background-color: #f9f9f9; /* Helps maintain existing header background color */
}