mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 02:23:58 +00:00
45ff962bcd
When EditCheck is the first item in the menu, make the anchor pink as well. Relies on the :has selector in modern browsers. Change-Id: I66e760742da25b3797529b0c65a8d90871a0a1da
40 lines
890 B
Plaintext
40 lines
890 B
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;
|
|
}
|
|
}
|
|
|
|
.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;
|
|
}
|