2022-11-14 21:34:37 +00:00
|
|
|
/*
|
|
|
|
* Citizen
|
|
|
|
*
|
|
|
|
* Module: mediawiki.skinning.content.links
|
|
|
|
* Version: REL1_39
|
|
|
|
*
|
|
|
|
* Date: 2022-11-14
|
|
|
|
*/
|
2022-11-14 21:09:14 +00:00
|
|
|
|
2022-11-15 21:08:36 +00:00
|
|
|
// Be more specific to replace default style
|
2022-11-14 21:09:14 +00:00
|
|
|
.skin-citizen {
|
|
|
|
a.mw-selflink {
|
|
|
|
font-weight: var( --font-weight-semibold );
|
|
|
|
}
|
|
|
|
}
|
2022-11-15 21:08:36 +00:00
|
|
|
|
|
|
|
// Hover states addition for new links
|
|
|
|
a {
|
|
|
|
&.new,
|
|
|
|
&.new:visited {
|
|
|
|
&:hover {
|
2024-07-01 00:49:50 +00:00
|
|
|
color: var( --color-link-red--hover );
|
2022-11-15 21:08:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
2024-07-01 00:49:50 +00:00
|
|
|
color: var( --color-link-red--active );
|
2022-11-15 21:08:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|