mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-23 22:13:34 +00:00
291844dbee
Change-Id: I8e0f087ae3d2644df85a85791b9c49c09567c0f4
42 lines
1 KiB
Plaintext
42 lines
1 KiB
Plaintext
/* Toolbar */
|
|
|
|
.ve-ui-toolbar-group-title {
|
|
font-weight: bold;
|
|
flex: 5 !important; /* stylelint-disable-line declaration-no-important */
|
|
line-height: 3em;
|
|
}
|
|
|
|
/* Context item */
|
|
|
|
.ve-ui-editCheckContextItem {
|
|
> .ve-ui-linearContextItem-head {
|
|
background: #fce7fe;
|
|
}
|
|
|
|
&-actions {
|
|
margin-top: 16px;
|
|
}
|
|
}
|
|
|
|
/* Fix the callout border color in browsers which support :has */
|
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
.ve-ui-desktopContext > .oo-ui-popupWidget:has( .ve-ui-editCheckContextItem:first-child ) .oo-ui-popupWidget-anchor::after {
|
|
border-bottom-color: #fce7fe;
|
|
}
|
|
|
|
/* Selections */
|
|
|
|
.ve-ce-surface-selections-editCheck .ve-ce-surface-selection {
|
|
opacity: 0.2;
|
|
}
|
|
|
|
.ve-ce-surface-selections-editCheck .ve-ce-surface-selection > div {
|
|
mix-blend-mode: darken;
|
|
// Adjust target colours to account for 50% opacity
|
|
background: ( #fce7fe - 0.8 * ( #fff ) ) / 0.2;
|
|
// border: 1px solid ( ( #d02aac - 0.8 * ( #fff ) ) / 0.2 );
|
|
border-radius: 2px;
|
|
padding: 2px;
|
|
margin: -2px 0 0 -2px;
|
|
}
|