MediaWiki:Vector.css: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
(6 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
/* All CSS here will be loaded for users of the Vector skin */ | /* All CSS here will be loaded for users of the Vector skin */ | ||
/* | /* Change the background color of all elements with IDs starting with "result-card-page-" */ | ||
div[id^="result-card-page-"] { | |||
background-color: rgb(32, 33, 34) !important; | |||
} | } | ||
/* Make the background of the .card-data-section children transparent */ | |||
div[id^="result-card-page-"] .card-data-section { | |||
background-color: transparent !important; | |||
. | |||
. | |||
} | } |
Latest revision as of 23:14, 26 February 2025
/* All CSS here will be loaded for users of the Vector skin */ /* Change the background color of all elements with IDs starting with "result-card-page-" */ div[id^="result-card-page-"] { background-color: rgb(32, 33, 34) !important; } /* Make the background of the .card-data-section children transparent */ div[id^="result-card-page-"] .card-data-section { background-color: transparent !important; }