mediawiki-extensions-Visual.../modules/ve-mw/ce/styles/annotations/ve.ce.MWExternalLinkAnnotation.css
Ed Sanders fec0f4ecf5 Remove padding override from active external links
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
2023-04-24 15:08:14 +01:00

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;
}