mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-27 23:50:30 +00:00
Remove watch and watched icons from repository in favor of Wikimedia UI
Note, because of the two versions of the watch icon, this will temporarily make the watchstar not display for JavaScript users. The accompanying patch Ic974b4d6dff14b0d72b8ca71b02c5ef73b1b1d93 will restore this. Bug: T231613 Change-Id: I16ca70f2892d7418ff245e15f838dfc2b092f3aa
This commit is contained in:
parent
3ad1dfbcf5
commit
98d91a66f3
|
@ -213,12 +213,12 @@ class ToolbarBuilder {
|
|||
|
||||
if ( $isWatched ) {
|
||||
$msg = $this->messageLocalizer->msg( 'unwatchthispage' );
|
||||
$icon = 'watched';
|
||||
$icon = 'unStar-progressive';
|
||||
} else {
|
||||
$msg = $this->messageLocalizer->msg( 'watchthispage' );
|
||||
$icon = 'watch';
|
||||
$icon = 'star-base20';
|
||||
}
|
||||
$iconClass = MinervaUI::iconClass( $icon, 'element', 'watch-this-article', 'mf' ) . ' jsonly';
|
||||
$iconClass = MinervaUI::iconClass( $icon, 'element', 'watch-this-article', 'wikimedia' );
|
||||
if ( $isWatched ) {
|
||||
$iconClass .= ' watched';
|
||||
}
|
||||
|
|
|
@ -69,11 +69,6 @@
|
|||
right: -@icon-padding-md;
|
||||
}
|
||||
|
||||
// overriding common.less `display:inherit` (which causes `display: flex;` in this instance).
|
||||
.client-js .jsonly#ca-watch {
|
||||
display: list-item;
|
||||
}
|
||||
|
||||
// Watchstar is hidden for anonymous no-js users
|
||||
// While we could link the icon to the login/signup form, this is not
|
||||
// a perfect experience and could be confusing.
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><title>star</title><path d="M20 7h-7L10 .5 7 7H0l5.46 5.47-1.64 7 6.18-3.7 6.18 3.73-1.63-7zm-10 6.9l-3.76 2.27 1-4.28L3.5 8.5h4.61L10 4.6l1.9 3.9h4.6l-3.73 3.4 1 4.28z"/></svg>
|
Before Width: | Height: | Size: 298 B |
|
@ -1 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><title>un-star</title><path d="M20 7h-7L10 .5 7 7H0l5.46 5.47-1.64 7 6.18-3.7 6.18 3.73-1.63-7z"/></svg>
|
Before Width: | Height: | Size: 225 B |
|
@ -304,11 +304,12 @@
|
|||
]
|
||||
},
|
||||
"skins.minerva.icons.wikimedia": {
|
||||
"selectorWithVariant": ".mw-ui-icon-wikimedia-{name}-{variant}:before",
|
||||
"selectorWithoutVariant": ".mw-ui-icon-wikimedia-{name}-base20:before, .mw-ui-background-icon-{name}",
|
||||
"useDataURI": false,
|
||||
"defaultColor": "#54595d",
|
||||
"class": "ResourceLoaderOOUIIconPackModule",
|
||||
"icons": [ "search", "userAvatar" ]
|
||||
"icons": [ "search", "userAvatar", "star", "unStar" ]
|
||||
},
|
||||
"skins.minerva.icons.images": {
|
||||
"class": "ResourceLoaderImageModule",
|
||||
|
@ -333,8 +334,6 @@
|
|||
"rtl": "resources/skins.minerva.icons.images/toc-rtl.svg"
|
||||
}
|
||||
},
|
||||
"watch": "resources/skins.minerva.icons.images/watch.svg",
|
||||
"watched": "resources/skins.minerva.icons.images/watched.svg",
|
||||
"warning": "resources/skins.minerva.icons.images/warning.svg",
|
||||
"mainmenu": "resources/skins.minerva.icons.images/hamburger.svg",
|
||||
"edit": "resources/skins.minerva.icons.images/editLocked.svg",
|
||||
|
|
Loading…
Reference in a new issue