-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathwikipedia-black.user.css
1685 lines (1451 loc) · 74.8 KB
/
wikipedia-black.user.css
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
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* ==UserStyle==
@name Wikipedia and sister projects: black, minimal
@namespace https://github.com/vitaly-zdanevich/wikipedia-userstyle-dark-minimum
@version 1.4.36
@description Black, with removed elements that I do not need.
@author Vitaly Zdanevich
==/UserStyle== */
/* For use with Wikimedia backend, without a browser extension - remove these lines */
@-moz-document domain("wikisource.org"),
domain("wikimedia.org"),
domain("wikipedia.org"),
domain("wiktionary.org"),
domain("wikidata.org")
{
/* End of lines for removing, also remove "}" at the end of this file */
a:not(.navbox .mw-selflink.selflink, .mw-mmv-stripe-button.mw-mmv-description-page-button.cdx-button.cdx-button--weight-primary.cdx-button--action-progressive.cdx-button--size-large.cdx-button--fake-button.cdx-button--fake-button--enabled.mw-mmv-repo-button-commons, .new, .oo-ui-tool-link.ve-ui-toolbar-saveButton), /* :not("More details" in image viewer, red link, on edit top-right button "Publish changes...") */
.vector-menu-dropdown .mw-list-item a,
.mw-parser-output .main-box:not(:hover) .main-box-header a:not(:focus), /* https://ru.wikipedia.org/wiki/Заглавная_страница */
.mw-parser-output .module-clickable-button-3.module-clickable-button-quiet a, /* https://ru.wikipedia.org/wiki/Заглавная_страница */
#xtools_result a,
.popup_mainlink a, /* Gadget */
.contributing a
{
color: #37d !important;
}
.mw-parser-output .wmf-navbar-body-row1-links ul li a, /* https://meta.wikimedia.org/wiki/Grants:Project/Rapid */
.term a, /* https://meta.wikimedia.org/wiki/Grants:Project/Rapid#Timeline */
.cr-learn-link a /* https://meta.wikimedia.org/wiki/Grants:Project/Rapid#Eligibility_requirements */
{
color: #37d !important;
}
a:visited {
color: #b2b !important;
}
input,
.unsolved,
.summaryButtons button, /* Wikipedia: editing source: buttons to set Summary text */
.ts-Врезка, /* Quote at the right https://ru.wikipedia.org/wiki/Калибр_(игра) */
[style='float:right; border:1px solid #abd5f5; background:#f1f5fc; margin-left:0.5em; padding:0.5em;'], /* https://commons.wikimedia.org/wiki/Commons:User_scripts */
[style='margin-bottom: 1em; border: 1px solid #AAA; background-color: ivory; padding: 0.5em; display: flex; align-items: center;'],
[style='border-bottom:1px solid #fad67d; background-color:#faecc8; padding:0.2em 0.5em 0.2em 0.5em; font-size:100%; font-weight: ;'], /* Titles at https://be.wikipedia.org/wiki/Вікіпедыя:Даведка */
[style='border-bottom:1px solid #abd5f5; background-color:#d0e5f5; padding:0.2em 0.5em 0.2em 0.5em; font-size:100%; font-weight: ;'] /* Titles at https://be.wikipedia.org/wiki/Вікіпедыя:Даведка */
{
background: #000 !important;
color: #ddd !important;
border-color: #555 !important;
}
button {
color: #ddd;
background: #222;
border: 0;
padding: 5px;
margin: 10px !important;
cursor: pointer;
}
#p-personal {
top: 15px !important;
left: 180px;
}
/* "Welcome to Wikipedia, the free encyclopedia that anyone can edit" */
#mp-topbanner,
body.page-Main_Page #firstHeading,
body.page-Main_Page .main-top-left, /* "Добро пожаловать в Википедию *https://ru.wikipedia.org/wiki/Заглавная_страница */
.main-top-articleCount,
/* "Wikipedia is written by volunteer editors and hosted by the Wikimedia Foundation, a non-profit organization that also hosts a range of other volunteer projects:" */
#mp-sister-content > p,
/* "This Wikipedia is written in English. Many other Wikipedias are available; some of the largest are listed below." */
.wikipedia-languages.nourlexpansion > p,
.wikipedia-languages-prettybars, /* Main page: "Wikipedia languages": lines at left/right of numbers "1,000,000+ articles", "250,000+ articles", "50,000+ articles" */
/* Wikipedia: link edit popup: "Link" */
.ve-ui-linearContextItem-title,
/* Wikipedia: link edit popup: "Text" */
.ve-ui-linkContextItem-label-label,
.ve-ui-linearContextItem-title span.oo-ui-widget,oo-ui-widget-enabled,oo-ui-iconElement,oo-ui-iconElement-icon,oo-ui-icon-link,oo-ui-labelElement-invisible,oo-ui-iconWidget,
.ext-discussiontools-ui-replyWidget-footer, /* After comment textarea: "By clicking "Reply", you agree to our Terms of Use and agree to irrevocably release your text under the CC BY-SA 4.0 License and GFDL. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license" */
#mw-uploadtext, /* https://en.wikipedia.org/wiki/Special:Upload */
#siteSub, /* "From Wikipedia, the free encyclopedia" */
hr,
a[title='Log out'],
#coordinates,
#mw-indicator-mw-helplink, /* Help link on diff */
#mw-indicator-0-coord,
#siteNotice, /* Banners with internal ad */
#p-cactions, /* Dropdown menu at the left from input search */
#p-views, /* Separator vertical line - at the left of search input */
.mw-specialpage-summary, /* Text line "Please visit Commons:Help desk if you need to ask questions about uploading files." */
.footer-content, /* Mobile pages */
#editpage-copywarn,
.oo-ui-icon-reload, /* Because full block is clickable, and with Reload text */
.mw-preview-loading-elements span:nth-child(2), /* Redundant text */
#ct-popup, /* https://be.wikisource.org/wiki/Новая_зямля_(1923)/I when mouse hover on page number, to drop vertical scroll */
#editpage-copywarn2, /* "Калі ласка, не капіюйце тэксты з крыніц, якія ахоўваюцца аўтарскімі правамі (з кніг, сайтаў і іншых), бо такія матэрыялы будуць выдаленыя */
#editpage-copywarn3, /* Editing page: "Do not copy text from other websites without permission. It will be deleted. */
.mwe-upwiz-metadata-notice, /* "EXIF metadata in this file may contain location or other personal data automatically added by your camera" */
.mwe-upwiz-license-metadata, /* Commons uploading: step Describe: bottom of the page - block about captions license (always the same text) */
/* Commons: uploading: Description textarea: big list of languages */
.uls-menu h3,
.uls-lcd-region-section:not([data-region='EU']),
.uls-language-block a:not([lang='ru'], [lang='en'], [lang='be']),
.sister-projects-wmf, /* Commons main page: logo of Wikimedia */
.sister-projects-family, /* Commons main page: text "Wikimedia Commons is part of the non-profit, multilingual, free-content Wikimedia family */
.oo-ui-fieldsetLayout-help, /* Wikipedia image editing popup: help ico */
.oo-ui-fieldLayout-help,
#histlegend span[style="white-space:nowrap;"]:first-child, /* History page: "араўнаньне: адзначце пунктамі дзьве вэрсіі для параўнаньня і націсьніце «ўвод» альбо кнопку ўнізе." https://be-tarask.wikipedia.org/w/index.php?title=Шаблён:Беларускія_пэрыядычныя_выданьні&action=history */
#histlegend li:first-child, /* History page: drop help texts */
#histlegend li:nth-child(2),
#histlegend li:nth-child(3),
.wd-mp-headerimage img, /* Wikidata main page: remove big white image */
#talkheader tr:first-child, /* https://en.wikipedia.org/wiki/Talk:Warcraft_III:_Reign_of_Chaos */
.talkheader-policies, /* https://en.wikipedia.org/wiki/Talk:Warcraft_III:_Reign_of_Chaos */
#mw-clearyourcache, /* "Note: After saving, you have to bypass your browser's cache to see the changes. Internet Explorer: press... */
[style='margin: 20px auto; clear:both; padding-top: 15px; border-top:3px double #CCC; color:#222; line-height:120%; width: 80%;'], /* Wikidata main page: bottom block about the project */
[style='background:#f0f8ff; border:1px dotted #8bcbff; padding:10px; margin-top:10px'], /* Каб пазбегнуць паломак старонак, дзе ўжыты гэты шаблон, пажадана эксперыментаваць у сваёй асабістай прасторы. https://be.wikipedia.org/wiki/Шаблон:Картка/Вікісховішча */
[src$='Blue-bg_rounded.svg/350px-Blue-bg_rounded.svg.png'], /* be.wikipedia.org main page */
[src$='Yellow-bg_rounded.svg/350px-Yellow-bg_rounded.svg.png'],
[style='background:#d0f5e5; border:1px solid #a6c4b5; text-align:left; margin:1px; margin-bottom: 1px; padding:3px;'], /* Bottom https://be.wikisource.org/wiki/Галоўная_старонка */
[style='background:#ffe9a6; border:1px solid #dcbe73; text-align:left; margin:1px; margin-bottom: 1px; padding:3px;'], /* Bottom https://be.wikisource.org/wiki/Галоўная_старонка */
.mw-newarticletext div[style*='background:#F8FFFF']:first-child /* Help text in Wiktionary edit screen */
{
display: none !important;
}
.mwe-upwiz-ownwork-purpose { /* Commons: uploading: "This work provides knowledge, instructions, or information to others." that checked by my JS */
opacity: 0;
}
.documentation,
.iw-resultset,
.mw-parser-output .divbox-gray,
.mwe-upwiz-license-metadata,
figure[typeof~="mw:File/Thumb"],
.page-actions-menu,
footer,
.last-modified-bar,
#filetoc, /* https://commons.wikimedia.org/wiki/File:Сердце_смилович.jpg links above image "Download", "Use this file"... */
li.gallerybox div.thumb, /* https://commons.wikimedia.org/wiki/Category:Historical_images_of_Pryłuki */
#mw-content-text .flaggedrevs_editnotice, /* Wikipedia editing source code: texts "The stable version was checked on...", "Notice: Some of the pending changes affect the area of the page you are editing" */
.mw-editTools div, /* Wikipedia editing source code: fast strings at the bottom */
[style*='white'], /* Talk page, for example https://meta.wikimedia.org/w/index.php?title=Talk:Pageviews_Analysis&diff=next&oldid=26270848 */
.mw-mmv-image-metadata, /* Commons media viewer: bottom part with description, after scroll too https://commons.wikimedia.org/wiki/Category:Complex_Numbers_(musical_group):_%D0%A0%D1%83%D1%81%D0%B0%D0%BB%D0%BE%D1%87%D0%BA%D0%B0#/media/File:The-little-mermaid--info.tif */
.mw-newarticletext [style='border:1px solid #CCC; padding:7px;'], /* Commons: creating new category */
[style='height: 16pt; background-color: #D2D2F0; border: 0px; border-bottom: 1px #AAAAC8; border-style: solid; font: 11pt; font-weight: bolder; position: relative;']
{
background-color: #000 !important;
border: 0 !important;
}
.documentation-startbox,
.mw-parser-output .sister-projects, /* Commons: main page, near the text "Wikimedia Commons is part of the non-profit, multilingual, free-content Wikimedia family" */
.mw-heading, /* Talk page - line between comment title and comment body */
.sdms-page-result, /* Commons SERP */
.filled + .filled, /* Commons: uploading: separation between files */
.mw-parser-output .wpvg-sidebar-header-cont, /* Right https://en.wikipedia.org/wiki/Wikipedia:WikiProject_Video_games */
.oo-ui-panelLayout-framed /* Preferences */
{
border: 0 !important;
}
/* "Insert" -> "Template" -> "Quote": popup top-left: vertical line between checkboxes and fields */
.ve-ui-mwTwoPaneTransclusionDialogLayout > .oo-ui-menuLayout-menu,
/* Wikipedia page that not exists: top-right popup: "Wikipedia does not have a page with this exact title. To start a page called..." */
.ve-ui-mwNoticesPopupTool-items > div:not(:first-child),
.mw-parser-output .mp-box, /* Main page "Other areas of Wikipedia" */
/* Wikipedia: link edit popup */
.ve-ui-desktopContext .ve-ui-linkContextItem .ve-ui-linkContextItem-label,
.infobox td[style='text-align: right; vertical-align: top; border-top: 1px solid #d0e1e0; padding: 1px 5px 1px 5px;'], /* https://be-tarask.wikipedia.org/wiki/Дашкаўка */
.infobox td[style='border-top:1px solid #d0e1e0; padding: 1px 1px 1px 9px;'], /* https://be-tarask.wikipedia.org/wiki/Дашкаўка */
.oo-ui-searchWidget-query, /* Wikipedia: "Media settings" popup about inserting/uploading an image: separator horizontal line between search and images */
.wikiEditor-ui-toolbar .group,
.wikiEditor-ui .wikiEditor-ui-view,
.mw-parser-output .community-page-wrapper /* https://commons.wikimedia.org/wiki/Commons:Help_desk */
{
border: 0 !important;
}
.mw-diff-table-prefix {
/* Diff page: drop horizontal scrollbar https://meta.wikimedia.org/w/index.php?title=Talk:Pageviews_Analysis&diff=next&oldid=26270848 */
margin-right: 5px;
}
/* "Low-importance" https://en.wikipedia.org/wiki/Talk:Armies_of_Exigo */
.wpb-header-bubbles[style="background:#FFE7FF;border:0.075em solid #FFE7FF"] {
color: #bbb;
border: 1px solid #555 !important;
}
/* https://be.wikipedia.org/wiki/Галоўная_старонка */
.MainPageBG [style="padding:0.2em 0.6em; font-size:95%; overflow: hidden;"],
[style="padding:0.2em 0.6em;; font-size:95%;"]
{
padding-top: 50px !important;
}
#mw-fr-reviewnotice,
.navbox,
.navbox-group {
background-color: #000 !important;
color: #888;
border: none !important;
}
#p-page {
position: absolute;
left: 175px;
top: -15px;
}
#p-user {
position: absolute;
left: 230px;
top: -13px;
}
#searchform {
position: absolute;
top: -9px;
right: 0;
}
#mw-head .vector-menu-content-list {
position: absolute;
top: -16px;
left: 0;
}
.vector-menu-tabs-legacy li {
/* Without this - on pages like https://meta.wikimedia.org/wiki/User:Vitaly_Zdanevich/global.js "User Page", "Discussion" will use more space */
height: initial;
}
.ve-init-mw-editSwitch .oo-ui-popupToolGroup.oo-ui-iconElement .oo-ui-popupToolGroup-handle, /* Edit page: right button with switch between source and visual editors */
#left-navigation .vector-menu-content-list { /* Buttons "Page", "Discussion" */
filter: invert();
}
/* "Спампацаць" button on Wikisource
* https://be.wikisource.org/wiki/Новая_зямля_(1923)
*
* https://en.wikisource.org/wiki/Alice's_Adventures_in_Wonderland_(1907)/Chapter_8
*
* https://en.wikisource.org/wiki/Popular_Science_Monthly/Volume_54/December_1898/General_Notices
*/
.mw-indicators {
top: 100px;
}
.mw-special-MediaSearch .mw-indicators {
top: 156px;
}
.sidebar-list.mw-collapsible.mw-made-collapsible div, /* Infobox nav bottom https://en.wikipedia.org/wiki/Apple_Podcasts */
.mw-parser-output .current-events-calendar caption, /* <month> <year> navigation https://en.wikipedia.org/wiki/Portal:Current_events/June_2005 */
.ns-0 #mw-content-text .mw-heading1, /* https://ru.wiktionary.org/w/index.php?title=severe */
.mw-mmv-post-image, /* Image viewer: bottom part after scroll */
body,
[style*="#CFFF9F;"],
.mw-echo-notifications-badge,
.mw-highlight,
aside li, /* related articles */
.NavHead,
.mw-parser-output .main-top-left, /* https://ru.wikipedia.org/wiki/Заглавная_страница */
[style*="#CFFF9F;"],
div.vectorTabs,
div.vectorTabs span,
#mw-head .vectorMenu h3,
#wdinfoboxcaption, /* Infobox category https://commons.wikimedia.org/wiki/Category:1995_in_Lithuania */
#editpage-specialchars a,
tr,
.infobox [style='background:#ddddff;line-height: 1.5em;margin: 0.0em 0.1em 0.1em 0.1em; text-align:center'], /* https://be.wikipedia.org/wiki/Дашкаўка_(Магілёўскі_раён) */
.quotebox,
.sistersitebox,
.oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button,
.mw-advancedSearch-fieldContainer,
.oo-ui-tagMultiselectWidget.oo-ui-widget-enabled,
.mw-advancedSearch-namespace-selection,
.wikibase-toolbar-wrapper,
.wikibase-sitelinklistview .wikibase-sitelinkview .wikibase-sitelinkview-siteid-container,
.flaggedrevs-color-0 /* diff: phrase "Pending revisions" */,
#pagehistory li.selected,
.wbmi-item.wbmi-item-read .wbmi-item-container, /* Structured data block, on file info page */
.header-container.header-chrome, /* https://be.m.wikisource.org/wiki/Беларускі_правапіс_(1927)/Часьць_другая/32 */
#mw-mf-page-center,
.content .mw-index-pager-list-header,
#doc,
.mw-parser-output .community-tabs > ul > li.active, /* https://commons.wikimedia.org/wiki/Commons:Help_desk */
.mw-parser-output .shortcut2,
.ts-doc-header,
.mw-parser-output .template-documentation, /* https://commons.wikimedia.org/wiki/Creator:Frank_Schulenburg */
.mw-collapsible, [style='background-color:#CCCCFF;'], /* https://ru.wikipedia.org/wiki/%D0%94%D0%A2-75 */
.mw-collapsible caption[style='background:#eaecf0; border:1px solid #a2a9b1'], /* https://ru.wikipedia.org/wiki/Речицкий_уезд */
.oo-ui-selectFileInputWidget.oo-ui-widget-enabled.oo-ui-selectFileInputWidget-dropTarget, /* https://commons.wikimedia.org/wiki/Special:UploadWizard */
.mw-parser-output .ts-Скрытый_блок-gray .ts-Скрытый_блок-title, /* Infobox: block names with [Expand] https://ru.wikipedia.org/wiki/Коммунизм */
#upload-wizard .arrow,
.mw-parser-output .wst-process-header .wst-header-notes, /* https://en.wikisource.org/wiki/Help:Beginner%27s_guide_to_adding_texts */
#mwe-upwiz-deeds-thumbnails, /* Commons upload: 'Release rights' step */
.mwe-upwiz-deed-subgroup, /* Commons upload: 'Release rights' step: node about public domain info */
.ui-suggester-list .ui-state-hover, /* Wikidata: property name suggestion */
.sdms-search-results__details--expanded, /* Commons search: right preview https://commons.wikimedia.org/w/index.php?search=crispa.uw.edu.pl%2F&title=Special:MediaSearch&go=Go&type=image */
.mw-mmv-above-fold, /* Commons: file preview: bottom block with name and button More */
#p-page-label, /* "Page" button at the top (from gadget MoreMenu): vertical line at the right */
#p-user-label, /* "User" button at the top: vertical line at the right */
.mw-htmlform-submit-buttons, /* Preferences: bottom panel with Save button */
.oo-ui-tagMultiselectWidget-handle, /* History page: node with "Active filters" buttons */
.mw-parser-output .wd-mp-overlay, /* Wikidata main page: top block with "Welcome to Wikidata" */
.mwe-upwiz-info-file .mwe-upwiz-thumbnail, /* Commons: was white square at the left of "Copy information to all uploads following..." when uploading multiple images */
.ext-discussiontools-ui-replyWidget-preview, /* Talk page: preview */
.talkheader-help, /* https://en.wikipedia.org/wiki/Talk:Warcraft_III:_Reign_of_Chaos */
#wikiEditor-ui-toolbar,
.oo-ui-menuSelectWidget, /* Dropdown at the right of "Watch this page" https://commons.wikimedia.org/w/index.php?title=Category:50_rubles_banknotes&action=edit */
.mw-parser-output .category-redirect-content
{
background: #000 !important;
}
/* Image viewer: buttons */
.cdx-button:enabled,
.cdx-button.cdx-button--fake-button--enabled
{
--background-color-interactive-subtle: #000;
}
/* Red block on a page that does not exists, for example https://en.wikipedia.org/wiki/B2Broker
* make darker background
* */
.mw-warning-with-logexcerpt.mw-warning-with-logexcerpt.mw-warning-with-logexcerpt {
--background-color-error-subtle: #100;
}
/* Page of article that not exists, right block:
* "Look for <article name> on one of Wikipedia's sister projects:"
*/
.mw-parser-output .no-article-text-sister-projects {
--background-color-neutral-subtle: #000;
border: 0;
}
.oo-ui-buttonElement.oo-ui-widget-enabled > .oo-ui-buttonElement-button > .oo-ui-iconElement-icon:not(.oo-ui-image-invert), /* Wikipedia: popup "Media settings" when embedding an image: back button: make visible */
.oo-ui-icon-close, /* Download popup: close button X https://ru.wikisource.org/wiki/Новая_Земля_(1934,_перевод_Сергея_Городецкого) */
.ve-ui-mwMediaInfoFieldWidget.oo-ui-iconElement .ve-ui-mwMediaInfoFieldWidget-icon /* Wikipedia: "Media settings" popup: icons */
{
filter: invert();
}
.ts-talk-quote, /* https://ru.wikipedia.org/wiki/Обсуждение_участницы:Megitsune-chan/Архив/2024 */
.flaggedrevs-pending,
.mw-parser-output .templatebox-usagesample, /* https://commons.wikimedia.org/wiki/Creator:Frank_Schulenburg */
.mw-parser-output .templatebox-languagedependant, /* https://commons.wikimedia.org/wiki/Creator:Frank_Schulenburg */
.sdms-quick-view__cta, /* Commons search: button "More Details" */
.mwe-upwiz-file:hover .mwe-upwiz-visible-file, /* Commons: step Upload: node hover of uploaded */
.oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-optionWidget-selected /* Preferences: panel with buttons like "User profile", "Appearance", "Editing"...: active button */
{
background: #220 !important;
}
.current-events-title, /* For example "June 28, 2005 (Tuesday)" https://en.wikipedia.org/wiki/Portal:Current_events/2005_June_28 */
h2,
#pagehistory li.selected,
#mf-tagline-title div, /* Top block with "Wikimedia Commons" and description of the project https://commons.wikimedia.org/wiki/Main_Page */
#mf-picture-title,
.mainpage-box-title, /* "Monthly photo challenge" */
.oo-ui-fieldLayout-header, /* Label for commit message input */
.mwe-upwiz-label-title a, /* "Do you know what Creative Commons license this work was published under?" */
.cdx-tabs:not(.cdx-tabs--framed) > .cdx-tabs__header .cdx-tabs__list__item:enabled, /* Commons search: top bar buttons */
.mainpage-box-content [style*='#000;'], /* Commons: main page: block with text like "Upload your local culture photos during Wiki Loves Folklore 2024" */
#xtools_result,
.wikibase-snakview-value.wikibase-snakview-variation-valuesnak, /* Wikidata text data */
.hatnote,
#clearprefcache, /* Text about caching, for example here https://en.wikipedia.org/wiki/User:Vitaly_Zdanevich/languagesToBottom.js */
.side-box-text, /* Wikipedia: texts like "Wikimedia Commons has media related to Gentoo" */
.mwe-upwiz-stepdiv, /* Commons uploading: main texts */
#mw-upload-form, /* https://en.wikipedia.org/wiki/Special:Upload */
.language-lexical-category-widget, /* Wikidata lexeme https://www.wikidata.org/wiki/Lexeme:L152015 */
.wikibase-lexeme-form-id,
.wikibase-lexeme-form-grammatical-features-header,
.mw-parser-output .collapse-mobile > .mw-collapsible-toggle, /* Unfoldable titles https://meta.wikimedia.org/wiki/Grants:Project/Rapid */
.funds-timeline-content, /* Text like "Cycle 5" in boxes https://meta.wikimedia.org/wiki/Grants:Project/Rapid#Timeline */
.wmf-department-info-title, /* Titles here https://meta.wikimedia.org/wiki/Grants:Project/Rapid#Timeline */
cite, /* Wikipedia quote */
.mw-filepage-resolutioninfo, /* Commons: "Size of this preview:", "Other resolutions:" */
#ooui-php-7 .oo-ui-labelElement-label, /* Commons: "File information" */
#ooui-php-8 .oo-ui-labelElement-label, /* Commons: "Structured data" */
.wbmi-entityview-caption, /* Commons: "File information": names of languages */
#mw-hidden-catlinks, /* Commons: "Hidden categories" */
#p-page-label, /* "Page" button at the top (from gadget MoreMenu): vertical line at the right */
#p-user-label, /* "User" button at the top: vertical line at the right */
.sub, /* https://be.wikipedia.org/wiki/Галоўная_старонка -> Вікіпраекты */
.oo-ui-fieldsetLayout-header, /* Preferences: subtitles of group of prefs */
#mw-prefsection-rendering-skin .oo-ui-fieldLayout-field, /* Preferences: labels */
.popupData, /* Gadget */
.navpopup .reference-text .citation, /* Gadget */
.popupPreview, /* Gadget */
[style='padding-left: 51px; color:#333;'], /* Titles at https://be.wikipedia.org/wiki/Вікіпедыя:Што_рабіць */
[style='padding-left: 38px; color:#333;'],
.category-redirect-header, /* https://commons.wikimedia.org/wiki/Category:Rakaw */
.category-redirect-header + div, /* https://commons.wikimedia.org/wiki/Category:Rakaw */
#mw-category-empty, /* https://commons.wikimedia.org/wiki/Category:Rakaw */
#wdinfobox + .multilingual, /* Top text at https://commons.wikimedia.org/wiki/Category:Rakaŭ */
.mw-rcfilters-ui-cell.mw-rcfilters-ui-watchlistTopSectionWidget-watchlistDetails, /* Watchlist description at https://be.wikipedia.org/wiki/Адмысловае:Watchlist?hidepreviousrevisions=1&hidecategorization=1&hideWikibase=1&limit=250&days=3&urlversion=2 */
#mw-fr-revisiontag-edit, /* History page: text like "The stable version was checked on 21 February 2024. There is 1 pending change awaiting review." https://be.wikipedia.org/w/index.php?title=Новая_зямля_(паэма)&action=history */
.mw-pager-navigation-bar, /* History page: nav like (newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500) https://be.wikipedia.org/w/index.php?title=Новая_зямля_(паэма)&action=history */
.wikibase-entitytermsview-heading-description, /* https://www.wikidata.org/wiki/Property:P9001 */
.prp-pages-output div:nth-child(3), /* Title at https://en.wikisource.org/wiki/Popular_Science_Monthly/Volume_54/December_1898/General_Notices */
.catlinks, /* https://commons.wikimedia.org/wiki/Category:Historical_images_of_Belarus */
.catlinks + .description,
.sdms-did-you-mean, /* Commons search "Did you mean: ..." */
.sdms-page-result div:nth-child(2), /* Commons search: found */
.sdms-search-filters__namespace, /* Commons search: button "Namespace: All" */
#main-wotw, /* Work-Of-The-Week https://ru.wikipedia.org/wiki/Заглавная_страница */
.description.mw-content-ltr, /* Top https://commons.wikimedia.org/wiki/Category:Receipts */
#fileinfotpl_date + td, /* https://be-tarask.wikipedia.org/wiki/Файл:Miensk_Vilenski._Менск_Віленскі_(1926).jpg */
#fileinfotpl_src + td,
#fileinfotpl_aut + td,
.afd-notice, /* Talk page https://en.wikipedia.org/wiki/User_talk:Vitaly_Zdanevich */
.metadata.divbox.divbox-gray, /* Talk page https://en.wikipedia.org/wiki/User_talk:Vitaly_Zdanevich */
.mp-frame-body, /* Wikidata main page: label in block "Discover" */
.wpImageAnnotatorHasNotesMsg, /* "This file has annotations. Move the mouse pointer over the image to see them." https://commons.wikimedia.org/wiki/File:Complex-numbers--first-group-photo.jpg */
.stockphoto_buttonrow_text, /* Commons: image page: links at the right "Download", "Use this file", ... https://commons.wikimedia.org/wiki/File:Complex-numbers--first-group-photo.jpg */
.rlicense-declaration, /* Commons file page: "This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license." https://commons.wikimedia.org/wiki/File:Complex-numbers--first-group-photo.jpg */
.mw-newarticletext, /* Commons: creating new category: help page title "Wikimedia Commons does not currently have a category called..." */
.mw-parser-output .funds-title, /* https://meta.wikimedia.org/wiki/Grants:Project/Rapid/Browse_applications_and_reports */
#linkstoimage, /* "The following pages on the English Wikipedia use this file (pages on other projects are not listed):" https://en.wikipedia.org/wiki/File:Wikimedia-external-dark-and-minimal-style.png */
#page-count, /* Commons search, for example https://commons.wikimedia.org/w/index.php?search=kaunas&title=Special:MediaSearch&go=Go&type=page */
table.wikitable > tr > th, table.wikitable > * > tr > td, /* https://ru.wikipedia.org/wiki/Памятные_монеты_Кыргызстана */
.wikitable caption, /* Table title https://meta.wikimedia.org/wiki/Grants:Programs/Wikimedia_Community_Fund/Rapid_Fund/Upload_~120_GB_of_photos_from_glubinka.by_-_photos_of_Belarus,_with_appropriate_meta-data_(Wikidata,_Categories,_add_to_articles_on_Wikipedia)_(ID:_22495955) */
.infobox td[style='text-align:center;'],
.infobox-above,
.infobox th.plainlist,
.infobox th.wikidatainfobox-lcell, /* https://commons.wikimedia.org/wiki/Category:1995_in_Lithuania */
.infobox td.plainlist:not(:has(div)),
.infobox .infobox-header,
.infobox [style='text-align:center'], /* Infobox: first line https://be.wikipedia.org/wiki/Дашкаўка_(Магілёўскі_раён) */
.infobox [style='background:inherit;width:100%'] [style='white-space:nowrap'],
.infobox table[style='background:inherit;width:100%'] td, /* https://be.wikipedia.org/wiki/Дашкаўка_(Магілёўскі_раён) */
.infobox td[style='font-size: 130%; text-align: center; vertical-align: top; background:#d0e1e0'], /* https://be-tarask.wikipedia.org/wiki/Дашкаўка */
.description, /* https://commons.wikimedia.org/wiki/File:LT-1997-50lit%C5%B3-First_book-b.png */
.commons-file-information-table, /* https://commons.wikimedia.org/wiki/File:LT-1997-50lit%C5%B3-First_book-b.png */
#mw-imagepage-content table, /* Commons: file page: description https://ru.wikipedia.org/wiki/Файл:Закладная_дворянского_земельного_банка_часть_1.jpg */
.wikitable.filehistory, /* https://commons.wikimedia.org/wiki/File:LT-1997-50lit%C5%B3-First_book-b.png */
.mw-datatable.listfiles, /* Commons: list of uploaded files */
#mw_metadata, /* Bottom of the page https://commons.wikimedia.org/wiki/File:Монета_5_лет_Независимости_50_литов_back.jpg */
.mbox-text, /* Top https://commons.wikimedia.org/wiki/Category:PD-LT-exempt_(coins) */
.licensetpl,
.messagebox.layouttemplate, /* https://commons.wikimedia.org/wiki/File:Iranian_Fire_God_Adur_(Atar)_on_a_coin_of_Tegin_Shah,_728_CE.jpg */
.mergedtoprow td, /* https://en.wikipedia.org/wiki/Vilnius */
.infobox-label,
.infobox-data,
.thumbcaption, /* https://en.wikipedia.org/wiki/Vilnius#Early_history_and_Grand_Duchy_of_Lithuania */
.switcher-container, /* https://commons.wikimedia.org/wiki/Category:Vilnius */
.mw-headline a span /* https://meta.wikimedia.org/wiki/Software_Collaboration_for_Wikidata/Open_Call */,
.vgr-title, /* Table at the right with marks, title "Reception" https://en.wikipedia.org/wiki/Project_Snowblind */
.diff, /* https://ru.wikipedia.org/w/index.php?title=Радио-Т&diff=next&oldid=136646509 */
tr.bright + *,
.wikibase-entitytermsview-entitytermsforlanguagelistview, /* Wikidata: top block with labels */
.searchdidyoumean, /* Commons search: "Did you mean" */
/* Ctrl-K "Add a link" popup menu */
.oo-ui-window-frame label:not(.oo-ui-widget.oo-ui-widget-enabled.oo-ui-labelElement-label.oo-ui-labelWidget.oo-ui-processDialog-title.oo-ui-labelElement),
.mw-selflink, /* https://en.wikipedia.org/wiki/Wikipedia:WikiProject_Video_games */
table.standard tr:not(:first-child), /* https://ru.wikipedia.org/wiki/Солнечное_затмение_8_апреля_2024_года */
table[style='text-align:center; border:1px solid black; background:#fafafa'] tr, /* https://en.wikipedia.org/wiki/Batumi#Demographics */
#query-result td, /* Wikidata query service */
[style='width:100%; clear:both; margin:0.5em auto; background-color:#f7f8ff; border:2px solid #8888aa; direction: ltr; border-spacing: 8px; padding: 0px;'], /* Licensing table https://commons.wikimedia.org/wiki/File:Catholic_Christianity_(silver)_rv.png */
td[style='text-align:center; font-style: italic;'], /* Infobox: "Онлайн-фестиваль белорусского документального кино" https://ru.wikipedia.org/wiki/BelarusDocs */
.sidebar-collapse, /* https://en.wikipedia.org/wiki/Culture_of_Belarus#Music */
.property-navibox-main tr, /* https://www.wikidata.org/wiki/Wikidata:Property_proposal/myabandonware.com_game_id */
#talkheader td[style='border-bottom: 1px solid #c0c090; font-weight: bold;'],
.banner-shell-header, /* https://en.wikipedia.org/wiki/Talk:Warcraft_III:_Reign_of_Chaos */
.wikibase-entitytermsforlanguagelistview .wikibase-entitytermsforlanguagelistview-listview .wikibase-entitytermsforlanguageview .wikibase-entitytermsforlanguageview-description textarea,
.infobox-caption,
/* Infobox https://be-tarask.wikipedia.org/wiki/Царква_Сьвятых_Барыса_і_Глеба_(Горадня) */
td[style='font-size:100%; line-height: 130%;'],
table[style='float: right; margin-left: 1em; margin-bottom: 0.5em; clear: right;;background:#FAFAFA;border:1px solid #BBBBBB;width:258px;font-size:11px'] td[style='width:50%;text-align:left;padding-left:0.5em;padding-right:0.5em;'],
table[style='float: right; margin-left: 1em; margin-bottom: 0.5em; clear: right;;background:#FAFAFA;border:1px solid #BBBBBB;width:258px;font-size:11px'] td[style='background:#d0e1e0;width:50%;text-align:right;padding-left:0.5em;padding-right:0.5em;'],
table [style='line-height: 1.3em; padding-top: 2px; padding-bottom: 2px;'],
.localmap-caption, /* Above the map */
.tool2-userscript, /* https://www.wikidata.org/wiki/Wikidata:Tools/Enhance_user_interface */
.tool2-external,
.tool2-gadget,
.track-listing, /* https://en.wikipedia.org/wiki/13_Reasons_Why */
#huvudsidaintro, /* https://be.wikipedia.org/wiki/Галоўная_старонка */
[style='bwidth: 100%; margin: 2px 0; border: 2px ridge #CAE1FF; background-color: #DFEFFF; padding: 2px;'] [style='padding: 10px 0 5px 10px;'] [style='width:100%;vertical-align:top;'], /* https://en.wikipedia.org/wiki/Wikipedia:User_scripts/List */
/* Commons: uploading: license text for {{PD-BY-exempt}}: "This work is not an object of copyright according to the Law of the Belarus No. 370-XIII of May 16, 1996 on Copyright and Neighbouring Rights. ....." */
[style='width: 100%; clear: both; margin: 0.5em auto; background-color: var(--background-color-neutral-subtle, #f7f8ff); color: var(--color-base, #202122); border: var(--border-subtle, 2px solid #8888aa); border-spacing: 8px; padding: 0px;'],
/* Commons: file page: bottom text "No pages on the English Wikipedia use this file (pages on other projects are not listed)" */
#nolinkstoimage,
/* Wikipedia: source editing */
.ve-ce-branchNode.ve-ce-documentNode.ve-ce-attachedRootNode.ve-ce-rootNode.mw-content-ltr.mw-parser-output.mw-show-empty-elt p,
[style='background: #F9F9F9; border-width:1px; border-color: #ababab; padding: 0px; width: 100%;'] .mw-collapsible.mw-made-collapsible th[colspan='2'], /* Right https://en.wikipedia.org/wiki/Wikipedia:WikiProject_Video_games */
[style='width: 77%; vertical-align:top;border: 1px solid #AAAAAA; background-color:white;'] [style='width: 50%'], /* https://en.wikipedia.org/wiki/Wikipedia:WikiProject_Video_games */
[style='width: 77%; vertical-align:top;border: 1px solid #AAAAAA; background-color:white;'] [style='max-width: 40%'], /* https://en.wikipedia.org/wiki/Wikipedia:WikiProject_Video_games */
[style='width: 100%; vertical-align:top;border: 1px solid #aaa; background-color:white;'] th, /* Text "Related WikiProjects and task forces" https://en.wikipedia.org/wiki/Wikipedia:WikiProject_Video_games */
[style='text-align: left; border-spacing: 0; border: 1px solid silver; margin-bottom: 1em; background: transparent; font-size: 85%;'] [role='heading'],
[style='width: 100%; border-spacing: 10px; background:none;'], /* https://en.wikipedia.org/wiki/Wikipedia:WikiProject_Video_games */
[style='width: 100%; background:none; border-spacing: 16px'] td,
[style='max-width:800px;padding-top:10px;'] [style='position:relative;min-height:320px;min-width:800px;max-width:800px;'], /* Graph at https://ru.wikipedia.org/wiki/Ханты-Мансийский_автономный_округ_—_Югра#Население */
[style='float:right; margin: 0 0 1em 4%; min-width: 22em; width: 28%;'] span, /* Right "infobox" https://meta.wikimedia.org/wiki/Grants:Programs/Wikimedia_Community_Fund/Rapid_Fund/Wwwyzzerdd_user_experience_improvements_and_critical_maintenance_(ID:_22024892) */
[style='text-align:center; font-size:8pt; padding:4pt; line-height:1.25em; color:#000000;'],
[style='width:45px; height:45px; background:#dddddd; text-align:center; font-size:14pt; font-weight:bold; color:#000000;'], /* Right https://be.wikipedia.org/wiki/Удзельнік:Lš-k. */
[style='border-radius: 1em; -moz-border-radius: 1em; -webkit-border-radius: 1em; box-shadow: 0.1em 0.1em 0.5em rgba(0,0,0,0.75); -moz-box-shadow: 0.1em 0.1em 0.5em rgba(0,0,0,0.75); -webkit-box-shadow: 0.1em 0.1em 0.5em rgba(0,0,0,0.75);; background-color: #F5DEB3; border: 1px solid #777777; padding: 5px;'] span /* Bottom node "Спаборніцтва па колькасці артыкулаў паміж беларускім і найбліжэйшымі раздзеламі Вікіпедыі" https://be.wikipedia.org/wiki/Удзельнік:Lš-k. */
{
color: #bbb !important;
}
.flaggedrevs-color-1,
kbd[style*='background:#EEEEEE'],
.oo-ui-menuOptionWidget.oo-ui-optionWidget-selected,
.sd-select-menu__list-item--selected /* Commons: search: dropdowns with "File Type", "Image size": selected element */
{
background-color: #334 !important;
}
/* "Browse history interactively" botton on file info page */
.oo-ui-buttonElement-frameless.oo-ui-widget-enabled > .oo-ui-buttonElement-button {
color: #69f;
}
#upload-wizard {
max-width: 99%
}
.arrowSteps li.arrow::before,
.arrowSteps li.arrow::after {
border-left-color: #222 !important;
}
#mwe-upwiz-step-thanks {
background: #000
}
.ts-Taxonomy-rang-name, /* Infobox https://ru.wikipedia.org/w/index.php?title=Мухомор_красный */
#mwe-upwiz-steps li.head,
.wb-empty /* Wikidata: top block with labels: "No label defined", "No description defined" */
{ /* Commons: uploading: highlight current step */
color: green !important;
}
/* Commons: Uploading: first step Upload: drag-n-drop reaction */
.oo-ui-selectFileInputWidget.oo-ui-widget-enabled.oo-ui-selectFileInputWidget-canDrop.oo-ui-selectFileInputWidget-dropTarget {
font-size: 50px;
border: 9px dashed red;
}
/* background highlight color, like here https://commons.wikimedia.org/wiki/User:Nichalp/Upload_script */
[style*="#e8ece3"],
.wbmi-entity-header /* File info page: Structured data labels */
{
background-color: #111 !important;
}
.mw-highlight .hll,
.mainpage-box-orange .mainpage-box-title /* Commons main page: orange titles of blocks */
{
background: #330 !important;
}
/* https://www.wikidata.org/wiki/Wikidata:SPARQL_query_service/queries/example */
.mw-highlight .nv {
color: #36f;
}
.mainpage-box-green .mainpage-box-title, /* Commons main page: green titles of blocks */
.wb-preferred .wikibase-statementview-mainsnak /* Wikidata: preferred property name */
{
background: #131 !important; /* Darkgreen */
}
.mw-parser-output .wst-header .wst-header-mainblock /* https://en.wikisource.org/wiki/Alice%27s_Adventures_in_Wonderland_(1907)/Chapter_8 */
{
background: #131 !important; /* Darkgreen */
border: none;
}
.mw-parser-output .current-events-nav a, /* Bottom navigation with dates https://en.wikipedia.org/wiki/Portal:Current_events/2005_June_28 */
.mainpage-box-blue .mainpage-box-title /* Commons main page: blue titles of blocks */
{
background: #003 !important;
}
/* Page diff: tag. For example
* https://commons.wikimedia.org/w/index.php?title=File:Rudna--culture-club.jpg&diff=next&oldid=772568011
*/
.mw-tag-markers {
background: #311;
}
.mw-parser-output .property-proposal-header-steps, /* Block "Before proposing a property" https://www.wikidata.org/wiki/Wikidata:Property_proposal/Person */
.mw-parser-output .community-tabs > ul > li, /* https://commons.wikimedia.org/wiki/Commons:Help_desk */
.mw-parser-output .discussion-menu,
.licensetpl_wrapper,
.cdx-tabs:not(.cdx-tabs--framed) > .cdx-tabs__header, /* Commons search: top bar with buttons */
.mw-message-box-warning, /* Block with text "Remember that this is only a preview. Your changes have not yet been saved!" */
.navpopup /* Gadget */
{
background: #222 !important;
border: 0 !important;
}
/* Revisions interactive widget, for example here
* https://commons.wikimedia.org/w/index.php?diff=846250953&oldid=772568011&title=File:Rudna--culture-club.jpg
*/
.mw-revslider-container,
.mw-revslider-slider-wrapper,
[style='margin-top: 16px; border:1px solid #d0f5e5; background:transparent; vertical-align:top; padding: 5px'], /* Bottom https://be.wikisource.org/wiki/Галоўная_старонка */
.wb-lexeme .lemma-widget_lemma /* Wikidata lexeme */
{
border: 0 !important;
}
.oo-ui-buttonElement-frameless.oo-ui-widget-enabled > .oo-ui-buttonElement-button:hover,
.sd-select-menu__list-item--active, /* Commons: search: dropdown of "File Type", "Image size" */
.oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-widget-enabled:hover
{
color: #555 !important;
}
html body p.ve-ce-branchNode-newSlug, /* When insert a paragraph between quotes https://ru.wikipedia.org/w/index.php?title=Любовник_Большой_Медведицы_(книга) */
.mw-revslider-revision,
span[style='background-color:#EDF0FF'], /* https://be.wiktionary.org/wiki/маркотна#Значэнне */
.sdms-search-filters .sd-select__content:hover /* Commons search: buttons "License", "File Type"... */
{
background: #222 !important;
}
.wbmi-entityview-captionsPanel,
.mw-parser-output .ts-doc-doc,
#editpage-specialchars
{
border-color: #333 !important;
}
.mw-revslider-revision-border-box {
border: 0;
}
.mw-parser-output .events-by-month, /* Navigation https://en.wikipedia.org/wiki/Portal:Current_events/June_2005 */
.mw-parser-output .current-events-main, /* https://en.wikipedia.org/wiki/Portal:Current_events/2005_June_28 */
.oo-ui-buttonElement-framed.oo-ui-widget-disabled > .oo-ui-buttonElement-button,
.mw-parser-output .main-box, /* https://ru.wikipedia.org/wiki/Заглавная_страница */
.toccolours, /* Top years at https://en.wikipedia.org/wiki/Category:2004_video_games */
.Reception, /* https://ru.wikipedia.org/wiki/Warhammer_40,000:_Dawn_of_War#Рецензии */
.ve-ui-mwSaveDialog-options, /* "Save your changes" popup: block with checkboxes "This is a minor edit", "Watch this page" */
.hlist
{
background: 0 !important;
border: 0 !important;
}
/* Wikidata popup on warning click */
.oo-ui-popupWidget-popup {
background: #111;
color: #bbb !important;
border: 0;
}
/* Wikipedia: Ctrl-F toolbar for Search-and-Replace */
.oo-ui-toolbar-bar {
left: 0 !important;
right: 0 !important;
}
.ext-WikiEditor-ManualWidget {
background: #333;
border: 0;
}
.ext-discussiontools-init-targetcomment {
background: 0;
border: 5px dashed #4f4;
}
/* https://be.wikipedia.org/wiki/Галоўная_старонка: space between Image of the day and the image */
[style='text-align:left; position:relative; left:4px; top:2px; margin:0;']:nth-child(9) {
margin-bottom: 60px !important;
}
.quotebox,
.oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button,
.oo-ui-tagMultiselectWidget-handle,
.wbmi-tabs-container .oo-ui-panelLayout-framed,
.wbmi-entityview-statementsGroup,
.wbmi-entityview-statementsGroup,
.mainpage-box-orange, /* Commons main page */
.mainpage-box-green, /* Commons main page */
.mainpage-box-blue, /* Commons main page */
.oo-ui-panelLayout-framed,
.plainlist,
.mw-edittools-wiki-markup, /* page for editing code - below the code */
.infobox, /* infobox - is the right from the article */
table,
td
{
border-color: #222 !important;
}
.vectorTabs .selected {
background-image: none;
background: gray;
}
div.vectorTabs ul li{
background-image: none;
background: #000;
}
.infobox [style='width:100%;background:#ccccff'], /* https://be.wikipedia.org/wiki/Дашкаўка_(Магілёўскі_раён) */
.mw-advancedSearch-fieldContainer .oo-ui-labelElement > .oo-ui-fieldsetLayout-header > .oo-ui-labelElement-label,
.sdms-search-filters .sd-select__content, /* Commons search: buttons "License", "File Type", "Image size", ... */
[style='background:#F0F8FF;border:1px dotted #8BCBFF;padding:10px;margin-top:10px;clear:both;'], /* https://be.wikipedia.org/wiki/Шаблон:Картка/Вікісховішча */
.oo-ui-tabOptionWidget
{
background: #000 !important;
color: lightgray;
}
#mw-previewheader, /* "Remember that this is only a preview. Your changes have not yet been published!" https://www.wikidata.org/w/index.php?title=Wikidata:Property_proposal/dtf.ru_person_ID&action=submit */
#siteSub,
#mw-usercssyoucanpreview
{
display: none;
}
/* main font */
.mw-body-content,
.popupPreview /* Gadget */
{
font-size: 120%;
}
#mwdw, /* Popup in editing mode */
.oo-ui-popupWidget-popup h3, /* Commons: mouse hover on "application/pdf": "Privacy considerations" and text after https://commons.wikimedia.org/wiki/File:Minskij_Listok_1886_03.pdf */
ol.references li:target, /* Click to source[1] - highlight the source */
.popupPreview .popupDiff, /* Gadget */
.guider_description, /* Popup with messages like "Welcome to improved Recent Changes filtering" */
.rt-tooltip cite, /* Popup tooltip on English Wikipedia */
/* #ooui-11, /1* Popup tooltip on English Wikipedia: preferences *1/ */
/* Commented to fix "External site" on "Add a link" Wikipedia popup */
.oo-ui-window-frame .oo-ui-labelElement li, /* ..."One of the categories lacks a description page. Are you sure you typed the name correctly?" */
.oo-ui-window-frame .oo-ui-fieldLayout-header .oo-ui-labelElement-label /* "Save your changes" popup with Summary - color of "This is a minor edit" and "Watch this page" */
{
color: #000 !important;
}
/* Commons: file uploading: popup with custom license text */
#mw-teleport-target ~ .oo-ui-window-frame,
.oo-ui-windowManager-modal > .oo-ui-dialog > .oo-ui-window-frame {
background: 0;
backdrop-filter: blur(5px);
}
.oo-ui-windowManager-modal > .oo-ui-dialog > .oo-ui-window-frame label /* Wikipedia: "Media settings" popup: labels for checkboxes "Wrap text around this item" and "Border" */
{
color: #bbb !important;
}
.oo-ui-widget.oo-ui-widget-enabled.oo-ui-floatableElement-floatable.oo-ui-popupWidget-anchored.oo-ui-popupWidget.oo-ui-popupWidget-anchored-top {
width: 50vw;
}
.ve-ui-context-menu.ve-ui-desktopContext-menu
{
width: 50vw;
}
/* Wikipedia: visual editor: top-right notice: to make text in one line (because the container is already wide - from previous fix on link edit popup list);
* Wikidata also affect - warning popups
* */
.oo-ui-clippableElement-clippable.oo-ui-popupWidget-body
{
width: 50vw !important;
max-width: 50vw !important;
}
#mw-teleport-target .oo-ui-processDialog > .oo-ui-window-frame /* Wikipedia: UI for media Search and Upload */
{
height: 80% !important;
/* With bigger value - JS will not load next images, because it triggers on scroll :(
* TODO fix JS?
*/
}
.oo-ui-windowManager-modal > .oo-ui-dialog {
/* Wikipedia: editing: popup for images inserting */
background: #1119;
}
.oo-ui-windowManager-modal:not(.oo-ui-windowManager-size-full) > .oo-ui-dialog > .oo-ui-window-frame {
border-color: #111;
}
.oo-ui-processDialog-content > .oo-ui-window-head,
.oo-ui-window-foot /* Commons: uploading popup error: "This wiki requires that files have an extension — like ".JPG" at the end of the filename. The allowed extensions are: ..." */
{
outline: 0 !important;
}
/* Commons uploading: Category chip on step "Describe": increase distance between a category name and "X" of removing */
.oo-ui-tagItemWidget.oo-ui-widget-enabled:not(.oo-ui-tagItemWidget-fixed) {
padding-right: 30px;
}
/* https://www.wikidata.org/wiki/Q171976 */
.wb-deprecated .wikibase-statementview-mainsnak,
.ui-closeable.wb-error /* Wikidata: when Commons category not exists */
{
background: #733;
}
/* "Insert link" popup: dropdown */
/* Dropdown element onhover highlight https://commons.wikimedia.org/w/index.php?title=Category:50_rubles_banknotes&action=edit */
.oo-ui-widget.oo-ui-widget-enabled.oo-ui-labelElement.oo-ui-optionWidget.oo-ui-decoratedOptionWidget.oo-ui-menuOptionWidget.oo-ui-optionWidget-highlighted {
background: #733;
}
.oo-ui-widget.oo-ui-widget-enabled.oo-ui-labelElement.oo-ui-optionWidget.oo-ui-decoratedOptionWidget.oo-ui-menuOptionWidget.oo-ui-optionWidget-highlighted * {
color: #fff !important;
}
/* Wikidata: bottom block with links to articles, Wikibooks, Wikiquote... */
.wikibase-sitelinkgrouplistview {
width: 100%
}
.wikibase-sitelinkview-enwiki,
.wikibase-sitelinkview-ruwiki,
.wikibase-sitelinkview-bewiki,
.wikibase-sitelinkview-be_x_oldwiki,
.interwiki-en,
.cx-new-interlanguage-link,
.interwiki-ru,
.interwiki-be,
.interwiki-be-x-old,
.interwiki-be-tarask
{
font-size: 40px;
}
#helpdeskheader, /* Top big block "How to use Commons" https://commons.wikimedia.org/wiki/Commons:Help_desk */
figure[typeof~="mw:File/Thumb"] > figcaption,
.video-game-reviews caption, /* https://en.wikipedia.org/wiki/Project_Snowblind#Reception */
#ruwiki-ku-header, /* https://ru.wikipedia.org/wiki/Википедия:К_удалению/14_апреля_2021#Complex_Numbers_(музыкальная_группа) */
#histlegend /* "Вонкавыя прылады: статыстыка правак · пошук праўкі · статыстыка наведваньняў. Тлумачэньне: (цяп) = адрозьненьні ад цяперашняй вэрсіі, (папярэдняя) = адрозьненьні ад папярэдняй вэрсіі, д = дробная праўка." History page: description of stat links https://be-tarask.wikipedia.org/w/index.php?title=Шаблён:Беларускія_пэрыядычныя_выданьні&action=history */
{
background: #000 !important;
color: lightgray;
border: none !important;
}
.mw-parser-output #wdinfobox {
width: 40% !important; /* https://commons.wikimedia.org/wiki/Category:Frank_Schulenburg */
}
.gallery.mw-gallery-traditional.center /* Without this in Firefox I have horizontal scrollbar https://be-tarask.wikipedia.org/wiki/Дашкаўка */
{
width: 99%;
}
div.thumbinner,
.editOptions /* page for editing css - below code */
{
background-color: #000;
border: none !important;
}
.oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button {
color: gray !important;
}
.mw-parser-output #mp-left, /* Main page */
.mw-parser-output #mp-right, /* Main page */
.mw-parser-output #mp-left .mp-h2, /* Main page */
.mw-parser-output #mp-right .mp-h2, /* Main page */
.mw-parser-output #mp-lower .mp-h2, /* Main page */
.mw-parser-output #mp-lower, /* Main page */
#Other_areas_of_Wikipedia, /* Main page "Other areas of Wikipedia" */
h2[id$='sister_projects'], /* #Wikipedia's_sister_projects */
#Wikipedia_languages,
.ve-ui-targetWidget:not(.oo-ui-pendingElement-pending), /* Wikipedia: popup "Media settings" when embedding an image: textarea */
.infobox [style='border:solid #bbb; border-width:1px 0;width:100%;background:#ccccff;font-weight:800; text-align:center'], /* https://be.wikipedia.org/wiki/Дашкаўка_(Магілёўскі_раён) */
.mw-parser-output .shortcut2, /* https://commons.wikimedia.org/wiki/Commons:Help_desk */
table,
.plainlinks,
.editOptions,
.catlinks,
.noprint,
.mw-parser-output .responsive-license-cc, /* https://commons.wikimedia.org/w/index.php?title=File:Browser-extension--intelligent-speaker.png&diff=next&oldid=835447881 */
.wmf-footer-container, /* Footer with links https://meta.wikimedia.org/wiki/Grants:Project/Rapid#Timeline */
.mwe-upwiz-file.odd .mwe-upwiz-visible-file, /* Commons: when uploading multiple files */
[style='margin:0.5em; background:#eeeeee; border:1px solid #ddd; color:#222; padding:0.2em 0.4em; font-size:120%; font-weight:bold; font-family:inherit;'],
[style='background: #f9f9f9; border: 1px solid #aaaaaa; float: right; clear: right; margin: .5em 0em .8em 1.4em; font-size: 90%; padding: .5em 1em; width: 230px; height: auto;'], /* https://be.wikipedia.org/wiki/Вікіпедыя:Спасылкі_на_крыніцы */
[style='background-color: #E3E3F5; border-top: #D2D2F0 1px solid; text-align: right; font-size: 90%; padding-right: 0.5em'],
.mw-parser-output .wst-header .wst-header-notes /* https://en.wikisource.org/wiki/Alice%27s_Adventures_in_Wonderland_(1907)/Chapter_8 */
{
background: #000 !important;
border: none !important;
}
table.wikitable > tr > th, table.wikitable > * > tr > th {
background-color: gray;
}
span[style='background-color:yellow'], /* [крыніца?] /* https://be.wikipedia.org/wiki/Вікіпедыя:Спасылкі_на_крыніцы */
span[style='background:yellow'] /* https://en.wikipedia.org/wiki/Wikipedia:Tools/Navigation_popups#Options */
{
background: #742 !important;
}
.ts-Taxonomy-rang-label, /* Infobox https://ru.wikipedia.org/w/index.php?title=Мухомор_красный */
.tfa-recent, /* Main page: "Recently featured" */
.potd-recent, /* Main page: "Recently featured" image of the day */
#mp-otd div[style='margin-top:0.5em;'], /* Main page: "More anniversaries" */
/* Commons: file page */
#fileinfotpl_desc,
#fileinfotpl_date,
#fileinfotpl_src,
#fileinfotpl_aut,
#fileinfotpl_ver, /* https://commons.wikimedia.org/wiki/File:1_Soviet_Ruble_Note_02.tif */
#rationale_desc, /* https://en.wikipedia.org/wiki/File:Gc_squad_config.PNG */
#rationale_src,
.mw-heading, /* h1, h2, h3... */
[style='border-bottom: 1px solid #aaaaaa; padding-bottom: .4em; font-weight: bold; font-size: 120%;'], /* https://be.wikipedia.org/wiki/Вікіпедыя:Спасылкі_на_крыніцы */
.oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-optionWidget-selected, /* Preferences: panel with subpages like "User profile", "Appearance", "Editing"... */
.excerpt, /* Excerpt from more detailed article https://en.wikipedia.org/wiki/Kyrgyzstan#Glaciers_and_climate_change */
.wikitable tr:not(td), /* https://ru.wikipedia.org/wiki/Памятные_монеты_Литвы#Статистика */
tr.bright,
.wikitable.sortable th, /* https://en.wikipedia.org/wiki/List_of_video_games_considered_the_best */
[style='position:absolute;top:162.75px;left:100px;width:145px;'], /* Население at https://ru.wikipedia.org/wiki/Тыпкысыр */
[style='position:absolute;height:162.75px;min-width:100px;max-width:100px;top:0px;left:0px;'], /* Население at https://ru.wikipedia.org/wiki/Тыпкысыр */
td[width='50%'] [style='margin-left: 1.6em; font-style: italic;'], /* Text "No major discussions" https://en.wikipedia.org/wiki/Wikipedia:WikiProject_Video_games */
td[width='50%'] .hlist [style='font-style: italic;'], /* Text "No did you know nominations" https://en.wikipedia.org/wiki/Wikipedia:WikiProject_Video_games */
h3[data-mw-thread-id] + table.wikitable th, /* https://ru.wikipedia.org/wiki/Википедия%3AЧто_делать%2C_если_Википедия_заблокирована#Сравнительная_таблица_вариантов */
table.standard tr:first-child, /* https://ru.wikipedia.org/wiki/Солнечное_затмение_8_апреля_2024_года */
table.vgr-aggregators.wikitable tr th, /* https://en.wikipedia.org/wiki/S.W.I.N.E. */
table.vgr-aggregators.wikitable caption, /* https://en.wikipedia.org/wiki/S.W.I.N.E. */
table.vgr-reviews.wikitable caption, /* https://en.wikipedia.org/wiki/S.W.I.N.E. */
.tpl-hidden-headertext, /* Commons main page */
table.wikitable.filehistory th, /* https://commons.wikimedia.org/wiki/File:LT-1996-50lit%C5%B3-Gediminas-b.png */
table.wikitable > tbody > tr > th, /* https://en.wikipedia.org/wiki/Russian_language#Vocabulary */
table caption b, /* https://ru.wikipedia.org/wiki/Речицкий_уезд */
table[style='text-align:center; border:1px solid black; background:#fafafa'] th, /* https://en.wikipedia.org/wiki/Batumi#Demographics */
#query-result th, /* Wikidata query service */
.vgr-hrow th, /* https://en.wikipedia.org/wiki/S.W.I.N.E. */
.plainlinks i, /* https://en.wikipedia.org/wiki/Talk:Warcraft_III:_Reign_of_Chaos */
.metadata.plainlinks, /* https://ru.wikipedia.org/wiki/Проект:Кино/Списки/Список_фильмов_студии_«Беларусьфильм» */
.article-history-milestones, /* https://en.wikipedia.org/wiki/Talk:Warcraft_III:_Reign_of_Chaos */
.ext-discussiontools-init-pageframe-latestcomment, /* Top after page title, text like "Latest comment: 54 minutes ago by Sgt.McHale in topic "Native American-sounding music for the Night Elves" at https://en.wikipedia.org/wiki/Talk:Warcraft_III:_Reign_of_Chaos */
.quotebox-title, /* https://en.wikipedia.org/wiki/Llama_(language_model)#Architecture_and_training */
.block-indent /* https://be.wikipedia.org/wiki/Вікіпедыя:Адказы_на_частую_крытыку */
{
color: wheat !important;
}
tr:before {
background: none !important;
border: none !important;
}
th {
border-color: #222 !important;
}
.mw-body,
.main-block.main-top /* https://ru.wikipedia.org/wiki/Заглавная_страница top "Добро пожаловать в Википедию" */
{
background: #000;
border-width: 0;
}
/* Commons main page */
.mainpage.mw-content-ltr {