[12:15:52] someone know some tool to delete items by a list? [12:16:20] much items [12:33:18] stanglavine: if they were created by the same QuickStatements batch, try EditGroups. Otherwise Special:Nuke [12:34:04] pintoch: QuickStatements and Nuke is not aplicable [12:34:30] I need input a list, and delete all items of this list [12:34:48] oh yeah, I thought Special:Nuke did that, but indeed not [12:35:16] no, because items are created by different users [12:35:34] have you discussed the deletion onwiki first? [12:36:38] is just technical delete, items of maintenance categories of one wikipedia [12:36:44] requested at RfD [12:38:17] maybe an external tool, by I don't know any [12:38:22] but** [12:46:43] https://phabricator.wikimedia.org/T68447 asked for this change on Special:Nuke, but it have 5 years old [16:09:36] what's wrong with the filter revision feature (https://www.wikidata.org/w/index.php?title=Wikidata:Main_Page&action=history&uselang=en)? the title is in right side, when in other projects it's in left side [16:12:50] hm, expand/collapse button also looks broken for me [16:14:43] I think it’s the text-align for .mw-collapsible-toggle in our [[MediaWiki:common.css]] [16:14:44] 10[1] 10https://www.wikidata.org/wiki/MediaWiki:common.css [16:14:51] if I disable that in dev tools both issues fix themselves [16:16:21] that rule dates back to *December 2012* o_O https://www.wikidata.org/w/index.php?title=MediaWiki:Common.css&diff=815894&oldid=718154 [16:16:30] heaven knows if it’s still required [16:16:47] user who added it hasn’t been active in 5 years [16:17:28] oh, Ammarpad already noticed the exact same thing, I’m late to the party https://www.wikidata.org/wiki/MediaWiki_talk:Common.css#Edit_request [16:18:01] I don’t have interface admin rights, though, so I can’t fix it [17:36:18] Lucas_WMDE: are you able to find out if we use the makecollapsible thing anywhere? [17:37:26] (the other person said it's not necessary, but I don't know how to verify it myself) [17:37:43] I only see two uses of $.makeCollapsible, in user scripts https://www.wikidata.org/w/index.php?search=insource%3AmakeCollapsible&ns2=1&ns8=1 [17:38:00] though the style could apply to other things, not sure [17:38:48] okay, sitelinks seem to use the same component [17:38:52] but they have their own styles [17:38:58] would it be used in the mediawiki or wikidata code? [17:39:01] (float: right, so that the text-align: right from common.css takes no effect) [17:40:46] apparently $.makeCollapsible is a MediaWiki library [17:40:52] but MediaWiki also ships its own styles for it [17:40:54] https://gerrit.wikimedia.org/g/mediawiki/core/+/825d66bfa44c5dae2b78e2fe4f3b16f16aff4a12/resources/src/jquery/jquery.makeCollapsible.styles.less [17:41:25] so I’m not sure why common.css has more styles for them [17:41:29] huh [17:42:44] also, the comment for .collapseButton a few lines above in common.css mentions “the CollapsibleTables javascript in [[MediaWiki:Common.js]]” [17:42:45] 10[2] 10https://www.wikidata.org/wiki/MediaWiki:Common.js [17:42:55] I see no such JavaScript in that page [17:43:29] I suspect both the .collapseButton and .mw-collapsible-toggle styles are either copy+pasted from another wiki or severely outdated [17:43:32] (or both) [17:44:24] ah, collapsible tables were removed in https://www.wikidata.org/w/index.php?title=MediaWiki:Common.js&diff=764003419&oldid=763980497 [17:46:03] so I guess the four styles with either .collapseButton or .mw-collapsible-toggle are ok to be removed? [17:46:17] I think so [17:46:44] you could add something like mw-collapsible-toggle { text-align: initial !important; } to your own common.css and see if you notice anything broken, if you want to be sure [17:47:08] (there should be a . in front of that mw-collapsible-toggle, sorry) [17:52:29] ah I found somewhere it's used and it is getting overridden by the float: right from mediawiki itself [17:52:43] ^^ [17:52:57] yeah, the selector in common.css is not very specific [17:53:07] most other styles will probably override it [17:53:11] instead of vice versa [17:54:23] haven't worked out where the .navbox .mw-collapsible-toggle with a width would be used though [17:59:01] oh found that too [17:59:34] https://www.wikidata.org/wiki/Wikidata:Administrators%27_noticeboard/Archive/2012/12#Collapsible_list if I toggle that, the "extended content" heading shifts slightly [17:59:37] I guess I'll leave that bit [18:01:06] hm, odd [18:01:15] looks like that’s because that toggle gets a hard-coded width? [18:01:20] .navbox .mw-collapsible-toggle { width: 6em; } [18:01:46] yeah [18:01:52] so there’s a 6em box floating to the right, and within that, the “expand” text is left-aligned again [18:02:04] and doesn’t quite fill 6em, at least not with my fonts [18:06:25] apparently that 6em width is also coming from common.css [18:06:35] yes, that's what I was just wondering about removing or not [18:06:40] hm [18:06:51] since it's part of the same section as the bit that we want to remove [18:10:33] I removed the bit we wanted removing anyway, and the two bits for collapsibletables [18:11:04] yay [18:11:06] thank you [18:12:44] no problem :D