mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-25 06:47:16 +00:00
38 lines
650 B
Plaintext
38 lines
650 B
Plaintext
/*
|
|
* Citizen
|
|
*
|
|
* Module: mediawiki.skinning.content.externallinks
|
|
* Version: REL1_39
|
|
*
|
|
* Date: 2022-11-14
|
|
*/
|
|
|
|
.mw-parser-output {
|
|
a.external:after {
|
|
display: inline-block;
|
|
width: 0.75em;
|
|
height: 0.75em;
|
|
margin-left: 0.25em;
|
|
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;
|
|
}
|
|
|
|
.plainlinks a.external:after {
|
|
content: none;
|
|
}
|
|
}
|
|
|
|
.mw-content-rtl {
|
|
.mw-parser-output {
|
|
a.external:after {
|
|
transform: scaleX( -1 );
|
|
}
|
|
}
|
|
}
|