mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-25 14:56:20 +00:00
7b96fbe3d2
This node type represents <meta> or <link> (transparently, based on the style attribute). I had to make two node types for this and hack the toData conversion code directly into ve.dm.Converter, because we don't have native support for node types that can be both inline and block. (We should add this in the node API rewrite.) The CE implementation renders a placeholder (with the same styles as an alien node) right now. I'm not sure how nice that is, but it's better than rendering raw <meta>/<link> tags. This whole thing is a total pile of hacks to make VE deal with <meta>/<link> tags until we have a proper node types API. Change-Id: Id6783fcfc35a896db088ff424ff9faaabcaff716
49 lines
1,019 B
CSS
49 lines
1,019 B
CSS
/**
|
|
* VisualEditor content editable Node styles.
|
|
*
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
|
|
.ve-ce-alienBlockNode,
|
|
.ve-ce-alienInlineNode,
|
|
.ve-ce-metaBlockNode,
|
|
.ve-ce-metaInlineNode {
|
|
background-color: rgb(255, 255, 186) rgba(255, 255, 186, 0.3);
|
|
border: rgba(0, 0, 0, 0.3) dashed 1px;
|
|
}
|
|
|
|
.ve-ce-alienBlockNode,
|
|
.ve-ce-metaBlockNode {
|
|
display: block;
|
|
}
|
|
|
|
.ve-ce-alienInlineNode,
|
|
.ve-ce-metaInlineNode {
|
|
display: inline;
|
|
}
|
|
|
|
.ve-ce-slug {
|
|
/*
|
|
display: inline-block;
|
|
margin-right: -1px;
|
|
width: 1px;
|
|
*/
|
|
}
|
|
|
|
.ve-ce-branchNode h1:empty:before,
|
|
.ve-ce-branchNode h2:empty:before,
|
|
.ve-ce-branchNode h3:empty:before,
|
|
.ve-ce-branchNode h4:empty:before,
|
|
.ve-ce-branchNode h5:empty:before,
|
|
.ve-ce-branchNode h6:empty:before,
|
|
.ve-ce-branchNode p:empty:before {
|
|
content: url('data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==');
|
|
}
|
|
|
|
li.ve-ce-branchNode p.ve-ce-branchNode:first-child {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|