2017-01-23 14:59:47 +00:00
|
|
|
@import 'mediawiki.mixins.rotation';
|
2014-08-07 11:38:34 +00:00
|
|
|
|
|
|
|
/* Watch/Unwatch Icon Styling */
|
2017-10-01 18:12:11 +00:00
|
|
|
/* Only use icon if the menu item is not collapsed into the "More" dropdown
|
|
|
|
* (in which case it is inside .vectorMenu instead of .vectorTabs). */
|
|
|
|
.vectorTabs {
|
|
|
|
#ca-unwatch.icon a,
|
|
|
|
#ca-watch.icon a {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
display: block;
|
2017-11-05 03:29:49 +00:00
|
|
|
width: 28px;
|
2017-10-01 18:12:11 +00:00
|
|
|
/* This hides the text but shows the background image */
|
2018-06-26 14:37:50 +00:00
|
|
|
/* Must not exceed parent's height, otherwise the background disappears on Chrome (T196610) */
|
|
|
|
padding-top: 2.5em / 0.8125;
|
2017-10-01 18:12:11 +00:00
|
|
|
height: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
background-position: 5px 60%;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
#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: 0;
|
|
|
|
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;
|
|
|
|
}
|
2014-08-07 11:38:34 +00:00
|
|
|
}
|