mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-26 08:35:42 +00:00
97cf735de2
Can be tested by appending ?vectorvisualenhancementnext=1 to URL Bug: T310838 Bug: T234990 Bug: T234550 Depends-On: I76d0d94c9006cc5f5680849ecdd1c382c16e34ba Depends-On: Ib7c3021db014827b4b88cac855afc0b54a360f8c Change-Id: Ie2ffa5c3ecf270c1bb1f315937023ae7ace5ed30
75 lines
2.1 KiB
Plaintext
75 lines
2.1 KiB
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
|
|
.vector-feature-visual-enhancement-next-disabled .vector-menu-tabs {
|
|
@size-watchlink-icon: unit( 16 / @font-size-tabs / @font-size-browser, em );
|
|
|
|
.mw-watchlink.icon a {
|
|
overflow: hidden;
|
|
text-indent: -99999px;
|
|
color: transparent;
|
|
|
|
&:before {
|
|
content: '';
|
|
display: block;
|
|
width: @size-watchlink-icon;
|
|
height: @size-watchlink-icon;
|
|
}
|
|
}
|
|
|
|
#ca-unwatch.icon a:before {
|
|
background-image: url( ../common/images/unwatch-icon.svg );
|
|
}
|
|
|
|
#ca-unwatch.mw-watchlink-temp.icon a:before {
|
|
background-image: url( ../common/images/unwatch-temp-icon.svg );
|
|
}
|
|
|
|
#ca-watch.icon a:before {
|
|
background-image: url( ../common/images/watch-icon.svg );
|
|
}
|
|
|
|
#ca-unwatch.icon a:hover:before,
|
|
#ca-unwatch.icon a:focus:before {
|
|
background-image: url( ../common/images/unwatch-icon-hl.svg );
|
|
}
|
|
|
|
#ca-unwatch.mw-watchlink-temp.icon a:hover:before,
|
|
#ca-unwatch.mw-watchlink-temp.icon a:focus:before {
|
|
background-image: url( ../common/images/unwatch-temp-icon-hl.svg );
|
|
}
|
|
|
|
#ca-watch.icon a:hover:before,
|
|
#ca-watch.icon a:focus:before {
|
|
background-image: url( ../common/images/watch-icon-hl.svg );
|
|
}
|
|
|
|
// Loading watchstar link class.
|
|
#ca-unwatch.icon .loading:before,
|
|
#ca-watch.icon .loading:before {
|
|
.rotation( 700ms );
|
|
/* Suppress the hilarious rotating focus outline on Firefox */
|
|
outline: 0;
|
|
cursor: default;
|
|
pointer-events: none;
|
|
transform-origin: 50% 50%;
|
|
}
|
|
}
|
|
|
|
// Loading watchstar link class.
|
|
.vector-feature-visual-enhancement-next-enabled {
|
|
.mw-watchlink .loading:before {
|
|
.rotation( 500ms );
|
|
/* Suppress the hilarious rotating focus outline on Firefox */
|
|
outline: 0;
|
|
cursor: default;
|
|
pointer-events: none;
|
|
transform-origin: 50% 50%;
|
|
}
|
|
}
|