mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-11-13 17:53:09 +00:00
475d825918
Also "unwrap" paragraphs using CSS instead of DOM manipulation. Change-Id: I5565c2c43580d5d47bc65ee06d9d14fccace90c6 Depends-On: Ibbf989dcebf2d21fd2ac481f17062f366ff29e41 Depends-On: I284bcd5dd25cdbb883427ebacb41af1bbf50b60f
20 lines
478 B
CSS
20 lines
478 B
CSS
/*!
|
|
* VisualEditor ContentEditable MediaWiki MWReferencesListNode styles.
|
|
*
|
|
* @copyright 2011-2018 VisualEditor Team's Cite sub-team and others; see AUTHORS.txt
|
|
* @license MIT
|
|
*/
|
|
|
|
/* Remove the styling of the preview wrapper, and any
|
|
* generated paragraph wrappers
|
|
*/
|
|
.ve-ce-mwReferencesListNode .ve-ui-previewElement,
|
|
.ve-ce-mwReferencesListNode .ve-ce-generated-wrapper {
|
|
display: inline;
|
|
}
|
|
|
|
.ve-ce-mwReferencesListNode-muted {
|
|
color: #72777d;
|
|
font-style: italic;
|
|
}
|