mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-04 18:58:37 +00:00
fec0f4ecf5
Since this was written, the specificity of the selector it was overriding has increased, so isn't required any more. Bug: T335292 Change-Id: Ib3494524f6ddfc2ea59d6d3d13a1a90138cd84af
24 lines
888 B
CSS
24 lines
888 B
CSS
/*!
|
|
* VisualEditor ContentEditable MWExternalLinkAnnotation styles.
|
|
*
|
|
* @copyright 2011-2020 VisualEditor Team and others; see http://ve.mit-license.org
|
|
*/
|
|
|
|
/* stylelint-disable-next-line selector-class-pattern */
|
|
.plainlinks a.ve-ce-linkAnnotation.ve-ce-annotation-active.external {
|
|
/*
|
|
* plainlinks is a MW core class which tries to suppress the normal
|
|
* external-link appearance; we don't want it to also suppress the
|
|
* active-link styling that VE apples.
|
|
* This is applying the same values as ve.ce.LinkAnnotation in VE core.
|
|
*/
|
|
background-color: #e6f1ff !important; /* stylelint-disable-line declaration-no-important */
|
|
padding: 2px !important; /* stylelint-disable-line declaration-no-important */
|
|
}
|
|
|
|
/* stylelint-disable-next-line selector-class-pattern */
|
|
.ve-ce-linkAnnotation.ve-ce-annotation-active.external {
|
|
/* Reset -2px from VE-core */
|
|
margin-right: 0;
|
|
}
|