mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 18:40:05 +00:00
30 lines
430 B
Plaintext
30 lines
430 B
Plaintext
/*
|
|
* Citizen
|
|
*
|
|
* Module: mediawiki.skinning.content.links
|
|
* Version: REL1_39
|
|
*
|
|
* Date: 2022-11-14
|
|
*/
|
|
|
|
// Be more specific to replace default style
|
|
.skin-citizen {
|
|
a.mw-selflink {
|
|
font-weight: var( --font-weight-semibold );
|
|
}
|
|
}
|
|
|
|
// Hover states addition for new links
|
|
a {
|
|
&.new,
|
|
&.new:visited {
|
|
&:hover {
|
|
color: var( --color-link-new--hover );
|
|
}
|
|
|
|
&:active {
|
|
color: var( --color-link-new--active );
|
|
}
|
|
}
|
|
}
|