mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-05 14:22:56 +00:00
6cbbb23cde
Based on the discussion on T56307, this change is controversial
and not necessarily wanted. In summary:
* Green star looks out of place with blue Vector (Edokter, Esanders, Trevor)
* Clashes with WikiLove heart icon (Edokter)
* Flat design doesn't fit with Vector's gradient style (Rillke)
* Green means constructive in MediaWiki UI, however clicking the
green star removes a page from your watchlist (Krinkle)
This reverts commit 56825d209e
.
Change-Id: I46f75a0eb83f9643fc0b51befe02aad4a84efc4e
49 lines
1.3 KiB
Plaintext
49 lines
1.3 KiB
Plaintext
@import "mediawiki.mixins.rotation"
|
|
|
|
/* Watch/Unwatch Icon Styling */
|
|
#ca-unwatch.icon a,
|
|
#ca-watch.icon a {
|
|
margin: 0;
|
|
padding: 0;
|
|
display: block;
|
|
width: 26px;
|
|
/* This hides the text but shows the background image */
|
|
padding-top: 3.1em;
|
|
margin-top: 0;
|
|
/* Only applied in IE6 */
|
|
margin-top: -0.8em !ie;
|
|
height: 0;
|
|
overflow: hidden;
|
|
background-position: 5px 60%;
|
|
}
|
|
#ca-unwatch.icon a {
|
|
.background-image-svg('images/unwatch-icon.svg', 'images/unwatch-icon.png');
|
|
}
|
|
#ca-watch.icon a {
|
|
.background-image-svg('images/watch-icon.svg', 'images/watch-icon.png');
|
|
}
|
|
#ca-unwatch.icon a:hover,
|
|
#ca-unwatch.icon a:focus {
|
|
.background-image-svg('images/unwatch-icon-hl.svg', 'images/unwatch-icon-hl.png');
|
|
}
|
|
#ca-watch.icon a:hover,
|
|
#ca-watch.icon a:focus {
|
|
.background-image-svg('images/watch-icon-hl.svg', 'images/watch-icon-hl.png');
|
|
}
|
|
#ca-unwatch.icon a.loading,
|
|
#ca-watch.icon a.loading {
|
|
.background-image-svg('images/watch-icon-loading.svg', 'images/watch-icon-loading.png');
|
|
.rotation(700ms);
|
|
/* Suppress the hilarious rotating focus outline on Firefox */
|
|
outline: none;
|
|
cursor: default;
|
|
pointer-events: none;
|
|
background-position: 50% 60%;
|
|
-webkit-transform-origin: 50% 57%;
|
|
transform-origin: 50% 57%;
|
|
}
|
|
#ca-unwatch.icon a span,
|
|
#ca-watch.icon a span {
|
|
display: none;
|
|
}
|