mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-11-15 10:59:56 +00:00
52646d1a7c
Bug: T241880 Change-Id: Ie712d4edc2ef49dd3b1f4ca186b2e2d539ab8659
36 lines
1 KiB
CSS
36 lines
1 KiB
CSS
/*!
|
|
* VisualEditor ContentEditable MediaWiki MWReferenceNode styles.
|
|
*
|
|
* @copyright 2011-2018 VisualEditor Team's Cite sub-team and others; see AUTHORS.txt
|
|
* @license MIT
|
|
*/
|
|
|
|
/* HACK: Hide Ref errors in templates */
|
|
.mw-ext-cite-error {
|
|
display: none;
|
|
}
|
|
|
|
/* In IE, force hasLayout so the <sup>'s box gets measured correctly */
|
|
.ve-init-target-ie .ve-ce-mwReferenceNode {
|
|
display: inline-block;
|
|
}
|
|
|
|
/* Use transparency to hide the default rendering, rather than display:none.
|
|
* This allows the browser to paint the native selection background over it.
|
|
*
|
|
* The real content is displayed using the :after pseudo-element, but browsers
|
|
* do not allow them to be selected, which makes for a poor editing experience.
|
|
*
|
|
* Previously this was also required to work around a cursoring bug in Chromium
|
|
* (T123608), but as of 2020 that bug seems to be fixed in the browser.
|
|
*/
|
|
.ve-ce-mwReferenceNode span.mw-reflink-text {
|
|
color: transparent;
|
|
position: absolute;
|
|
display: inline;
|
|
}
|
|
|
|
.ve-ce-mwReferenceNode-placeholder a:after {
|
|
content: '[…]';
|
|
}
|