mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 10:38:19 +00:00
59 lines
894 B
Plaintext
59 lines
894 B
Plaintext
/*
|
|
* Citizen
|
|
*
|
|
* Module: mediawiki.skinning.content.externallinks
|
|
* Version: REL1_39
|
|
*
|
|
* Date: 2022-11-14
|
|
*/
|
|
|
|
.mw-parser-output {
|
|
a {
|
|
&.extiw,
|
|
&.external {
|
|
&:after {
|
|
display: inline-block;
|
|
width: 0.75em;
|
|
height: 0.75em;
|
|
margin-left: 0.125em;
|
|
background-color: currentcolor;
|
|
content: '';
|
|
/* @embed */
|
|
-webkit-mask: url( images/linkExternal.svg ) no-repeat 50% 50%;
|
|
/* @embed */
|
|
mask: url( images/linkExternal.svg ) no-repeat 50% 50%;
|
|
-webkit-mask-size: contain;
|
|
mask-size: contain;
|
|
}
|
|
|
|
// Somehow this get overriden
|
|
&:hover,
|
|
&:visited:hover {
|
|
color: var( --color-link--hover );
|
|
}
|
|
}
|
|
}
|
|
|
|
.plainlinks a {
|
|
&.extiw,
|
|
&.external {
|
|
&:after {
|
|
content: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.mw-content-rtl {
|
|
.mw-parser-output {
|
|
a {
|
|
&.extiw,
|
|
&.external {
|
|
&:after {
|
|
transform: scaleX( -1 );
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|