mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-12 09:21:11 +00:00
d8bcb73647
Depends-on: Ibd762c810e1d89047e39ce3af792b43689bf11e3 Bug: T335909 Change-Id: I5b42780416b466cc3fc33d29220aef2979ac3239
17 lines
595 B
Plaintext
17 lines
595 B
Plaintext
@import '../../common/variables.less';
|
|
@import 'mediawiki.mixins.less';
|
|
@import 'mediawiki.mixins.rotation.less';
|
|
|
|
/* Watch/Unwatch Icon Styling */
|
|
/* Only use icon if the menu item is not collapsed into the "More" dropdown
|
|
* (in which case it is inside `.vector-menu-dropdown` instead of `.vector-menu-tabs`). */
|
|
// Note: there's no watchstar for anon users so no need to worry about cached HTML when changing this class
|
|
// Loading watchstar link class.
|
|
.mw-watchlink .mw-ui-icon::before {
|
|
transition: transform 500ms;
|
|
}
|
|
|
|
.mw-ui-icon-wikimedia-unStar::before {
|
|
transform: rotate( 72deg );
|
|
}
|