mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-02 09:57:01 +00:00
9e52ece21f
New changes: 3a6d868bf Separate (Comment/Link)InspectorTools into separate files cb5d36e32 Localisation updates from https://translatewiki.net. c75491b16 build: Extend 'svgmin' options and amend ddef270d9 Genericise activeLink behaviour to any annotation d13d44e12 Create simple comment annotation type for rebaser. 7e49a1f33 Add getters for author properties 1d341ca7d Follow-up I16942623d: Only filter inactive models if they are 'canBeActive' Local changes: Change .ve-ce-linkAnnotation-active > .ve-ce-linkAnnotation.ve-ce-annotation-active Bug: T185596 Change-Id: I2a49315d01aa075373f9b5f0d8802a7e7dd4dca3
17 lines
665 B
CSS
17 lines
665 B
CSS
/*!
|
|
* VisualEditor ContentEditable MWExternalLinkAnnotation styles.
|
|
*
|
|
* @copyright 2011-2018 VisualEditor Team and others; see http://ve.mit-license.org
|
|
*/
|
|
|
|
.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 */
|
|
}
|