aboutsummaryrefslogtreecommitdiffstats
path: root/resources/src/mediawiki.special/watchlist.css
Commit message (Collapse)AuthorAgeFilesLines
* Special:EditWatchlist: Hide check-all in no JS modeNeil Shah-Quinn2023-04-061-0/+6
| | | | | Bug: T334252 Change-Id: I8792b2d2a7f73c1273ec03574ee41af730bc6df3
* Add watchlist clock icon to RecentChangesSam Wilson2020-07-281-9/+0
| | | | | | | | | Extend the watchlist expiry clock icon from Special:Watchlist to also be displayed on Special:RecentChanges for expiring watchlist items. Bug: T258310 Change-Id: I254570addd1835119c863639111bd5394cb4b697
* Add clock icon to expiring items in Special:WatchlistSam Wilson2020-06-191-0/+9
| | | | | | | | | If a changeslist item has an expiry date, add a grey clock icon after the page title, with a tooltip indicating when the item expires. Bug: T250212 Change-Id: I38f8c85321cf257eeea8de5a3bd73bbc0b5ea393
* Unify code comments across special page stylesheetsVolker E2019-03-291-1/+1
| | | | Change-Id: I6311b441552bfd05f737f106b534f213797d426a
* mediawiki.special: Combine various tiny specialpage style modulesTimo Tijhof2018-05-161-0/+15
These stylesheets are sufficiently tiny that it doesn't make sense to offer them the ability to be loaded separately from each other (saving bytes in double-digits) at the cost of 1) exporting a dedicated registry item with meta data shipped on every page view, 2) reduced cache re-use from increased fragmentation. Instead, move these to the 'mediawiki.special' style module. The entries retain their own files to keep them as easy to find and edit as before. Where not already, ensure addModuleStyles() is always placed above any addModules() call in the same method. The load order isn't affected by the call order, but given blocking style-modules load before async JS, it helps to order them in a way that visually matches the effective load order (from top to bottom). The following 7 modules were remove without deprecation: 1. "mediawiki.special.apisandbox.styles" (1 rule) 2. "mediawiki.special.edittags.styles" (3 rules) 3. "mediawiki.special.movePage.styles" (1 rule) 4. "mediawiki.special.pagesWithProp" (1 rule) 5. "mediawiki.special.upload.styles" (2 rules) 6. "mediawiki.special.watchlist.styles" (3 rules) 7. "mediawiki.special.comparepages.styles" (4 rules) These module names were only used on the core classes loading them, and aren't depended on outside core by module name, rather, extensions and gadgets depend on the styles styles being loaded in a blocking manner on these pages, which remains unaffected. Bug: T192623 Change-Id: I6e663dc3c80c7104c9b9abdde44c654543185373