-
Notifications
You must be signed in to change notification settings - Fork 34
/
NotAnAnswerFlagQueueHelper.user.js
650 lines (549 loc) · 22.1 KB
/
NotAnAnswerFlagQueueHelper.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
// ==UserScript==
// @name NAA / VLQ Flag Queue Helper
// @description Inserts several sort options for the NAA / VLQ / Review LQ Disputed queues
// @homepage https://github.com/samliew/SO-mod-userscripts
// @author Samuel Liew
// @version 5.0.13
//
// @match https://*.stackoverflow.com/admin/dashboard?flagtype=postother*
// @match https://*.serverfault.com/admin/dashboard?flagtype=postother*
// @match https://*.superuser.com/admin/dashboard?flagtype=postother*
// @match https://*.askubuntu.com/admin/dashboard?flagtype=postother*
// @match https://*.mathoverflow.net/admin/dashboard?flagtype=postother*
// @match https://*.stackapps.com/admin/dashboard?flagtype=postother*
// @match https://*.stackexchange.com/admin/dashboard?flagtype=postother*
// @match https://stackoverflowteams.com/c/*/admin/dashboard?flagtype=postother*
//
// @match https://*.stackoverflow.com/admin/dashboard?flagtype=postlowquality*
// @match https://*.serverfault.com/admin/dashboard?flagtype=postlowquality*
// @match https://*.superuser.com/admin/dashboard?flagtype=postlowquality*
// @match https://*.askubuntu.com/admin/dashboard?flagtype=postlowquality*
// @match https://*.mathoverflow.net/admin/dashboard?flagtype=postlowquality*
// @match https://*.stackapps.com/admin/dashboard?flagtype=postlowquality*
// @match https://*.stackexchange.com/admin/dashboard?flagtype=postlowquality*
// @match https://stackoverflowteams.com/c/*/admin/dashboard?flagtype=postlowquality*
//
// @match https://*.stackoverflow.com/admin/dashboard?flagtype=answernotananswer*
// @match https://*.serverfault.com/admin/dashboard?flagtype=answernotananswer*
// @match https://*.superuser.com/admin/dashboard?flagtype=answernotananswer*
// @match https://*.askubuntu.com/admin/dashboard?flagtype=answernotananswer*
// @match https://*.mathoverflow.net/admin/dashboard?flagtype=answernotananswer*
// @match https://*.stackapps.com/admin/dashboard?flagtype=answernotananswer*
// @match https://*.stackexchange.com/admin/dashboard?flagtype=answernotananswer*
// @match https://stackoverflowteams.com/c/*/admin/dashboard?flagtype=answernotananswer*
//
// @match https://*.stackoverflow.com/admin/dashboard?flagtype=reviewlowqualitydisputedauto*
// @match https://*.serverfault.com/admin/dashboard?flagtype=reviewlowqualitydisputedauto*
// @match https://*.superuser.com/admin/dashboard?flagtype=reviewlowqualitydisputedauto*
// @match https://*.askubuntu.com/admin/dashboard?flagtype=reviewlowqualitydisputedauto*
// @match https://*.mathoverflow.net/admin/dashboard?flagtype=reviewlowqualitydisputedauto*
// @match https://*.stackapps.com/admin/dashboard?flagtype=reviewlowqualitydisputedauto*
// @match https://*.stackexchange.com/admin/dashboard?flagtype=reviewlowqualitydisputedauto*
// @match https://stackoverflowteams.com/c/*/admin/dashboard?flagtype=reviewlowqualitydisputedauto*
//
// @exclude https://api.stackexchange.com/*
// @exclude https://data.stackexchange.com/*
// @exclude https://contests.stackoverflow.com/*
// @exclude https://winterbash*.stackexchange.com/*
// @exclude *chat.*
// @exclude *blog.*
// @exclude */tour
//
// @require https://raw.githubusercontent.com/samliew/SO-mod-userscripts/master/lib/se-ajax-common.js
// @require https://raw.githubusercontent.com/samliew/SO-mod-userscripts/master/lib/common.js
// @require https://raw.githubusercontent.com/samliew/ajax-progress/master/jquery.ajaxProgress.js
// ==/UserScript==
/* globals StackExchange, isSO */
/// <reference types="./globals" />
'use strict';
// This is a moderator-only userscript
if (!isModerator()) return;
const superusers = [584192];
const isSuperuser = superusers.includes(selfId);
var $postsContainer, $posts;
function purgeComments(pid) {
return new Promise(function (resolve, reject) {
if (typeof pid === 'undefined' || pid == null) { reject(); return; }
$.post({
url: `${location.origin}/admin/posts/${pid}/delete-comments`,
data: {
fkey: fkey,
'mod-actions': 'delete-comments',
'target-post-id': '',
duration: 1
}
})
.done(function (data) {
resolve();
})
.fail(reject);
});
}
// Mark all flags on post as helpful
function dismissAllHelpful(pid, comment = "") {
return new Promise(function (resolve, reject) {
if (typeof pid === 'undefined' || pid == null) { reject(); return; }
$.post({
url: `${location.origin}/messages/delete-moderator-messages/${pid}/${StackExchange.moderator.renderTimeTicks}?valid=true`,
data: {
fkey: fkey,
comment: comment
}
})
.done(function (data) {
resolve();
})
.fail(reject);
});
}
// Decline/dismiss all flags on post
function declinePostFlags(pid) {
return new Promise(function (resolve, reject) {
if (typeof pid === 'undefined' || pid == null) { reject(); return; }
$.post({
url: `${location.origin}/messages/delete-moderator-messages/${pid}/${StackExchange.moderator.renderTimeTicks}?valid=false`,
data: {
fkey: fkey,
comment: 2
}
})
.done(function (data) {
resolve();
})
.fail(reject);
});
}
// Close individual post
// closeReasonId: 'NeedMoreFocus', 'SiteSpecific', 'NeedsDetailsOrClarity', 'OpinionBased', 'Duplicate'
// if closeReasonId is 'SiteSpecific', offtopicReasonId : 11-norepro, 13-nomcve, 16-toolrec, 3-custom
function closeQuestionAsOfftopic(pid, closeReasonId = 'SiteSpecific', offtopicReasonId = 3, offTopicOtherText = 'I’m voting to close this question because ', duplicateOfQuestionId = null) {
const isSO = location.hostname == 'stackoverflow.com';
return new Promise(function (resolve, reject) {
if (!isSO) { reject(); return; }
if (typeof pid === 'undefined' || pid === null) { reject(); return; }
if (typeof closeReasonId === 'undefined' || closeReasonId === null) { reject(); return; }
if (closeReasonId === 'SiteSpecific' && (typeof offtopicReasonId === 'undefined' || offtopicReasonId === null)) { reject(); return; }
if (closeReasonId === 'Duplicate') offtopicReasonId = null;
// Logging actual action
console.log(`%c Closing ${pid} as ${closeReasonId}, reason ${offtopicReasonId}.`, 'font-weight: bold');
$.post({
url: `${location.origin}/flags/questions/${pid}/close/add`,
data: {
'fkey': fkey,
'closeReasonId': closeReasonId,
'duplicateOfQuestionId': duplicateOfQuestionId,
'siteSpecificCloseReasonId': offtopicReasonId,
'siteSpecificOtherText': offtopicReasonId == 3 && isSO ? 'This question does not appear to be about programming within the scope defined in the [help]' : offTopicOtherText,
//'offTopicOtherCommentId': '',
'originalSiteSpecificOtherText': 'I’m voting to close this question because ',
}
})
.done(resolve)
.fail(reject);
});
}
function initPurgeHelpful() {
// On any page update
$(document).ajaxComplete(function (event, xhr, settings) {
// Post expanded
if (settings.url.includes('/ajax-load?review=true') >= 0) {
// Expand comments?
$('.js-show-link.comments-link').trigger('click');
// Insert "purge comments and mark helpful" button
$('.post-detail').not('.js-has-helpful-purge').addClass('js-has-helpful-purge')
.append(`<div class="extra-actions"><input type="button" class="js-helpful-purge" value="purge comments and clear flags" /></div>`);
}
});
// Button event
$('.js-flagged-post').on('click', '.js-helpful-purge', function () {
const pid = Number($(this).parents('.js-flagged-post').attr('data-post-id')) || -1;
dismissAllHelpful(pid, function () {
purgeComments(pid);
$('#flagged-' + pid).remove();
});
});
}
function togglePosts(filter) {
console.log("Toggle by: " + filter);
const filterFunction = function () {
if (filter === 'deleted') return $(this).find('.bg-red-050').length > 0;
if (filter === 'self-answer') {
const postOwners = $(this).find('.post-owner');
return postOwners.length == 2 ? postOwners.get(0).href === postOwners.get(1).href : postOwners.parent().text().includes('Self-answered');
}
const pid = this.dataset.postId;
const postLink = this.dataset.postLink;
return postLink.includes('/questions/' + pid) == (filter === 'q');
}
$posts.hide().filter(filterFunction).show();
}
function sortPosts(filter) {
console.log("Sort by: " + filter);
if (filter === 'flagger-rank' && $('#load-flagger-stats').length > 0) {
$('#load-flagger-stats').trigger('click');
setTimeout(() => sortPosts('flagger-rank'), 4000);
}
const getFlaggerWeights = function (el) {
return el.filter('.elite').length * 12 +
el.filter('.gold').length * 8 +
el.filter('.silver').length * 6 +
el.filter('.bronze').length * 3 +
el.filter('.default').length * 2 +
el.filter('.hmmm, .horrible, .wtf').length * 0.5;
};
// Get sort function based on selected filter
let sortFunction;
switch (filter) {
case 'poster-rep':
sortFunction = function (a, b) {
let aRep = Number($(a).find('.js-body-loader:last .reputation-score').text().replace(/[^\d.]/g, '')),
bRep = Number($(b).find('.js-body-loader:last .reputation-score').text().replace(/[^\d.]/g, ''));
if (aRep % 1 > 0) aRep *= 1000;
if (bRep % 1 > 0) bRep *= 1000;
if (aRep == bRep) return 0;
return (aRep > bRep) ? 1 : -1;
};
break;
case 'date-posted':
sortFunction = function (a, b) {
let aDate = new Date($(a).find('.js-body-loader:last .relativetime:not(.old):last').attr('title')),
bDate = new Date($(b).find('.js-body-loader:last .relativetime:not(.old):last').attr('title'));
if (aDate == bDate) return 0;
return (aDate > bDate) ? 1 : -1;
};
break;
case 'delete-votes':
sortFunction = function (a, b) {
let aDelv = Number(($(a).find('.js-delete-post').val() || "0").replace(/\D+/g, '')),
bDelv = Number(($(b).find('.js-delete-post').val() || "0").replace(/\D+/g, ''));
if (aDelv == bDelv) return 0;
return (aDelv < bDelv) ? 1 : -1;
};
break;
case 'flag-count':
sortFunction = function (a, b) {
let aFlags = $(a).find('.js-post-flag-group .bounty-indicator-tab').map((i, el) => Number(el.innerText)).get().reduce((a, c) => a + c),
bFlags = $(b).find('.js-post-flag-group .bounty-indicator-tab').map((i, el) => Number(el.innerText)).get().reduce((a, c) => a + c);
if (aFlags == bFlags) return 0;
return (aFlags < bFlags) ? 1 : -1;
};
break;
case 'post-length':
sortFunction = function (a, b) {
let aLen = $(a).find('.js-body-summary').text().length,
bLen = $(b).find('.js-body-summary').text().length;
if (aLen == bLen) return 0;
return (aLen > bLen) ? 1 : -1;
};
break;
case 'flagger-rank':
sortFunction = function (a, b) {
let aBadges = $(a).find('.flag-badge'),
bBadges = $(b).find('.flag-badge');
let aScore = getFlaggerWeights(aBadges),
bScore = getFlaggerWeights(bBadges);
if (aScore == bScore) return 0;
return (aScore < bScore) ? 1 : -1;
};
break;
case 'has-modified':
sortFunction = function (a, b) {
let aMod = $(a).find('.js-post-flag-group:not(.js-cleared) .s-badge[title^="post edited"]').length > 0;
return aMod ? -1 : 1;
};
break;
case 'disputed-has-modified':
sortFunction = function (a, b) {
let aMod = $(a).find('.js-post-flag-group .s-badge[title^="post edited"]').length > 0;
return aMod ? -1 : 1;
};
break;
case 'post-undeleted':
sortFunction = function (a, b) {
let aUndel = $(a).find('.js-post-flag-group:not(.js-cleared) .revision-comment').text().includes('Post was undeleted by the author');
return aUndel ? -1 : 1;
};
break;
case 'post-good-delete':
sortFunction = function (a, b) {
let aDelv = $(a).find('.js-post-flag-group:not(.js-cleared) .revision-comment').text().includes('Post has a good score but received delete votes');
return aDelv ? -1 : 1;
};
break;
default:
location.reload();
return;
}
// Sort posts in-memory then reattach to container
$posts.filter(function () {
return $(this).find('.js-post-flag-group').is(':visible');
}).sort(sortFunction).detach().appendTo($postsContainer);
}
function doPageLoad() {
$postsContainer = $('.js-flagged-post').first().parent();
$posts = $('.js-flagged-post');
// Add class to post owners
let postOwners = $('.js-flagged-post .js-body-loader').find('a[href^="/users/"]:first').addClass('post-owner');
// Add post-modified class to edited badges
$('.s-badge[title^="post edited"]').addClass('post-modified');
const actionBtns = $('<div id="actionBtns"></div>');
$('.js-flagged-post').first().parent().prepend(actionBtns);
// If there are lots of flags and is superuser
if ($('.js-flagged-post').length > 3 && isSuperuser) {
// Delete all posts left on page button
$('<button class="s-btn s-btn__xs s-btn__filled s-btn__danger">Delete ALL</button>')
.on('click', function () {
if (!confirm('Confirm Delete ALL?')) return false;
$(this).remove();
const visiblePosts = $('.js-delete-post:visible');
$('body').showAjaxProgress(visiblePosts.length, { position: 'fixed' });
visiblePosts.trigger('click');
})
.appendTo(actionBtns);
// Decline all posts left on page button
$('<button class="s-btn s-btn__xs s-btn__filled s-btn__danger">Decline ALL</button>')
.on('click', function () {
if (!confirm('Confirm Decline ALL?')) return false;
$(this).remove();
const visiblePosts = $('.js-flagged-post:visible');
$('body').showAjaxProgress(visiblePosts.length, { position: 'fixed' });
visiblePosts.hide().each(function () {
declinePostFlags(this.dataset.postId);
});
})
.appendTo(actionBtns);
// Close all questions left on page button
$('<button class="s-btn s-btn__xs s-btn__filled s-btn__danger">Offtopic ALL</button>')
.on('click', function () {
if (!confirm('Confirm Close ALL as Unclear?')) return false;
$(this).remove();
const visiblePosts = $('.js-flagged-post:visible');
$('body').showAjaxProgress(visiblePosts.length, { position: 'fixed' });
visiblePosts.hide().each(function () {
closeQuestionAsOfftopic(this.dataset.postId, 'NeedsDetailsOrClarity');
});
})
.appendTo(actionBtns);
}
let $filterOpts = $(`<div id="flag-queue-tabs" class="tabs"></div>`);
$('.js-flagged-post').first().parent().prepend($filterOpts);
// If LQDisputed queue
if (location.search.includes('flagtype=reviewlowqualitydisputedauto')) {
initPurgeHelpful();
// Insert sort options
$filterOpts.append(`
<a data-filter="default" class="youarehere">Default</a>
<a data-filter="post-undeleted" title="Post was undeleted by the author">Undeleted by author</a>
<a data-filter="post-good-delete" title="Post has a good score but received delete votes">Del. Votes</a>
<a data-filter="disputed-has-modified" title="Changed since first flag">Modified</a>`);
}
else {
// Insert sort options
$filterOpts.append(`
<a data-filter="default" class="youarehere">Reset</a>
<a data-filter="poster-rep" title="Poster Rep">Rep</a>
<a data-filter="date-posted" title="Date Posted">Date</a>
<a data-filter="post-length" title="Post Length">Len</a>
<a data-filter="delete-votes" title="Delete Votes" class="dno">*Delv</a>
<a data-filter="flag-count" title="Flag Count">Flags</a>
<a data-filter="flagger-rank" title="Flagger Rank (click to sort again after stats loaded)" id="flagger-rank" class="dno">Rank</a>
<a data-filter="has-modified" title="Edited posts after being flagged">Edited</a>
<a data-toggle="q" title="Show Questions only">Q</a>
<a data-toggle="a" title="Show Answers only">A</a>
<a data-toggle="self-answer" title="Self Answer">Self</a>
<a data-toggle="deleted" title="Show Deleted only">Del</a>`);
}
// Sort options event
$('#flag-queue-tabs').on('click', 'a[data-filter]', function () {
sortPosts(this.dataset.filter);
// Update active tab highlight class
$(this).addClass('youarehere').siblings('[data-filter]').removeClass('youarehere');
return false;
});
// Toggle options event
$('#flag-queue-tabs').on('click', 'a[data-toggle]', function () {
togglePosts(this.dataset.toggle);
// Update active tab highlight class
$(this).toggleClass('youarehere').siblings('[data-toggle]').removeClass('youarehere');
return false;
});
// Insert 'skip' button to temporarily hide current post
$('.js-flagged-post > td').append(`<a class="js-skip-post" title="skip (hide) this post" href="#">skip post</a>`);
// Shorten additional actions descriptions after flag
$('.js-flag-text > span:last-child').not('[title]').not('.js-abbrev').addClass('js-abbrev').html(function (i, v) {
return v.replace(/(added (\d+) comments?)/, '<span title="$1">$2C</span>')
.replace(/(Vote Up)/gi, '<span title="$1">VU</span>')
.replace(/(Vote Down)/gi, '<span title="$1">VD</span>')
.replace(/(Deletion)/gi, '<span title="voted to delete">Deletion</span>')
.replace(/(Moderator Review)/gi, '<span title="a moderator took previous action in the mod queue">Mod</span>');
});
// On skip post link click
$('.js-flagged-post').on('click', '.js-skip-post', function () {
// Hide post immediately so we can move on
$(this).parents('.js-flagged-post').remove();
return false;
});
// Remove old "deemed invalid by" flags as they mess up sorting by flagger rank
$('.js-flag-row.js-cleared').filter((i, el) => el.innerText.includes('deemed invalid by')).remove();
// Selects default decline reason and focus submit button
$('.js-resolve-action[data-type="decline"]').on('click', function (evt) {
const flagOpts = $(this).closest('.js-post-flag-group, .js-post-flag-options');
setTimeout(() => {
const opt = flagOpts.find('input[name="dismiss-reason"][value="2"]:visible').get(0)?.click();
const btn = flagOpts.find('.js-submit-btn').focus();
}, 100);
});
// Hide post immediately on delete click
$('.js-delete-post').on('click', function () {
$(this).closest('.js-flagged-post').hide();
});
}
function listenToPageUpdates() {
// On any page update
$(document).ajaxComplete(function (event, xhr, settings) {
// Actions taken on post
if (settings.url.includes('/messages/delete-moderator-messages/') || // flags cleared
(settings.url.includes('/flags/questions/') && settings.url.includes('/close/add')) || // closed
settings.url.includes('/vote/10') || // deleted
settings.url.includes('/convert-to-comment')) {
// Remove post from mod queue
const pid = settings.url.match(/\/(\d+)\//)[0].replace(/\//g, '');
$(`.js-flagged-post[data-post-id="${pid}"]`).remove();
}
// Flagger stats loaded, allow sorting by
if (settings.url.includes('/users/flag-summary/')) {
$('#flag-queue-tabs #flagger-rank').removeClass('dno');
}
});
}
// Append styles
addStylesheet(`
.tabs:after,
#tabs:after {
content: '';
clear: both;
display: block;
}
.tabs .youarehere,
#tabs .youarehere {
position: relative;
z-index: 1;
}
#flag-queue-tabs {
float: none;
margin: 20px 24px 10px;
}
#flag-queue-tabs:after {
position: relative;
top: -1px;
border-bottom: 1px solid var(--black-075);
}
#flag-queue-tabs a {
float: left;
margin-right: 8px;
padding: 12px 8px 14px;
color: var(--black-400);
line-height: 1;
text-decoration: none;
border-bottom: 2px solid transparent;
transition: all .15s ease-in-out;
}
.extra-actions {
padding-right: 10px;
text-align: right;
}
#actionBtns {
margin: 25px 24px 20px;
}
#actionBtns button {
margin-top: 10px;
margin-right: 10px;
}
input.js-helpful-purge {
border-color: var(--red-500) !important;
}
.star-off, .star-on {
display: none;
}
.js-skip-post {
position: absolute !important;
bottom: 0;
right: 0;
margin-left: 20px;
padding: 5px 8px;
font-size: 1rem;
background: var(--black-050);
white-space: nowrap;
opacity: 0.3;
}
.js-skip-post:hover {
background: var(--blue-400);
color: var(--white);
opacity: 1;
}
/* General new mod interface stuff */
.js-admin-dashboard > div.flex--item {
position: relative; /* so the decline + delete option goes over the sidebar */
z-index: 1;
}
.js-mod-history-container {
margin: 10px 8px 15px !important;
background: var(--black-025);
}
.js-flagged-post {
margin-top: 10px !important;
margin-bottom: 20px !important;
}
.visited-post {
opacity: 0.7;
}
.js-flagged-post .bc-black-3 {
border-color: var(--black-050) !important;
}
.js-post-flag-group > .flex--item {
padding: 8px 0;
}
.js-post-flag-group > .flex--item.ta-right {
padding: 18px 8px !important;
}
.js-post-flag-group > .flex--item > div {
padding: 2px 0;
}
.js-admin-dashboard span[title]:hover {
cursor: help !important;
}
.js-flagged-post > div:first-child {
min-height: 155px;
}
/* Split helpful and decline out of popup to save a click */
.js-post-flag-options button.s-btn__dropdown.js-resolve-all {
display: none;
}
.js-post-flag-options button.s-btn__dropdown.js-resolve-all + .s-popover {
display: block !important;
position: unset !important;
background: none;
border: none;
box-shadow: none;
padding: 0;
position: unset;
min-width: unset;
max-width: unset;
width: auto !important;
transform: none !important;
z-index: unset !important;
}
.js-post-flag-options button.s-btn__dropdown.js-resolve-all + .s-popover > .js-resolve-action {
width: auto !important;
}
/* Specific to this userscript */
.s-badge.post-modified {
color: var(--red-500);
border-color: var(--red-500);
}
`); // end stylesheet
// On script run
(function init() {
doPageLoad();
listenToPageUpdates();
})();