mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
56a3aa9f01
Bug: T124305 Depends-On: Iad48fb559f3dae16cc0013791b79ec71308a1f9f Change-Id: I341a15199bddb45e2cd8391b9b00c86e1c3a193e
52 lines
1.3 KiB
CSS
52 lines
1.3 KiB
CSS
/*!
|
|
* VisualEditor MediaWiki UserInterface internal link context item styles.
|
|
*
|
|
* @copyright 2011-2018 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
.ve-ui-mwInternalLinkContextItem .ve-ui-linearContextItem-body {
|
|
overflow: auto;
|
|
white-space: normal;
|
|
}
|
|
|
|
.ve-ui-mwInternalLinkContextItem-withImage > .oo-ui-iconElement.oo-ui-iconElement-icon {
|
|
float: left;
|
|
font-size: 2em; /* double-size icon */
|
|
background-color: #c8ccd1;
|
|
border: 0.35714em solid #c8ccd1;
|
|
opacity: 0.4;
|
|
margin-bottom: 0.3em;
|
|
}
|
|
|
|
.ve-ui-mwInternalLinkContextItem-hasImage {
|
|
background-color: transparent;
|
|
background-size: cover;
|
|
}
|
|
|
|
.ve-ui-mwInternalLinkContextItem-withImage > .ve-ui-mwInternalLinkContextItem-hasImage.oo-ui-iconElement-icon {
|
|
border: 0;
|
|
background-size: cover;
|
|
opacity: 1;
|
|
padding: 0.35714em;
|
|
}
|
|
|
|
.ve-ui-mwInternalLinkContextItem-link,
|
|
.ve-ui-mwInternalLinkContextItem-description {
|
|
display: block;
|
|
}
|
|
|
|
.ve-ui-mwInternalLinkContextItem-description {
|
|
color: #72777d;
|
|
margin-top: 0.5em;
|
|
}
|
|
|
|
.ve-ui-mwInternalLinkContextItem-withImage .ve-ui-mwInternalLinkContextItem-link,
|
|
.ve-ui-mwInternalLinkContextItem-withImage .ve-ui-mwInternalLinkContextItem-description {
|
|
margin-left: 5.5em;
|
|
}
|
|
|
|
.ve-ui-mwInternalLinkContextItem-withDescription .ve-ui-mwInternalLinkContextItem-link {
|
|
font-weight: bold;
|
|
}
|