2022-07-15 18:27:57 +00:00
|
|
|
@import '../../common/variables.less';
|
2020-03-06 21:03:06 +00:00
|
|
|
@import 'mediawiki.mixins.less';
|
2019-10-25 20:46:51 +00:00
|
|
|
@import 'mediawiki.mixins.rotation.less';
|
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
|
2020-06-16 16:55:23 +00:00
|
|
|
* (in which case it is inside `.vector-menu-dropdown` instead of `.vector-menu-tabs`). */
|
2022-09-02 14:57:31 +00:00
|
|
|
// Note: there's no watchstar for anon users so no need to worry about cached HTML when changing this class
|
|
|
|
// Loading watchstar link class.
|
2022-11-07 22:57:31 +00:00
|
|
|
.mw-watchlink a:before {
|
|
|
|
transition: transform 500ms;
|
|
|
|
}
|
2022-09-30 23:50:22 +00:00
|
|
|
|
2022-11-07 22:57:31 +00:00
|
|
|
.mw-watchlink .loading:before {
|
|
|
|
/* Suppress the hilarious rotating focus outline on Firefox */
|
|
|
|
outline: 0;
|
|
|
|
cursor: default;
|
|
|
|
pointer-events: none;
|
|
|
|
transform-origin: 50% 50%;
|
|
|
|
}
|
2022-09-30 23:50:22 +00:00
|
|
|
|
2022-11-07 22:57:31 +00:00
|
|
|
.mw-ui-icon-wikimedia-unStar:before,
|
|
|
|
.mw-ui-icon-wikimedia-star.loading:before {
|
|
|
|
transform: rotate( 72deg );
|
2022-09-02 14:57:31 +00:00
|
|
|
}
|