MediaWiki:Common.css: Difference between revisions

From Hard Drop Tetris Wiki

Jump to: navigation, search
mNo edit summary
m (& I don't think this is doing anything)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
{{#tree:
*Root1
**Sub-item
**Another sub-item
*Root2
**Sub-item
**Another sub-item
}}
{{#menu:
*Root1
**Sub-item
**Another sub-item
*Root2
**Sub-item
**Another sub-item
}}
{{#tree:id=siteTree|openlevels=1|root=Organic Design|
*Root
**Sub-item
**Another sub-item
}}


/* hide potentially sensitive data on file pages */
/* hide potentially sensitive data on file pages */
Line 36: Line 13:
.darklinks a, .darklinks a:visited, .darklinks a.external, .darklinks a.extiw  {
.darklinks a, .darklinks a:visited, .darklinks a.external, .darklinks a.extiw  {
   color: #3d5c7f!important;
   color: #3d5c7f!important;
}
/* Makes redirects appear in italics on [[Special:Allpages]] */
.allpagesredirect,
.redirect-in-category,
.watchlistredir {
font-style: italic;
}
/* Hide license dropdown on [[Special:Upload]] */
p.mw-upload-editlicenses {
  display: none;
}
.mw-htmlform-field-Licenses {
    display: none;
}
.img-greyscale {
filter: grayscale(100%);
}
}

Latest revision as of 07:30, 2 March 2024

/* CSS placed here will be applied to all skins */

/* hide potentially sensitive data on file pages */
#mw_metadata .exif-gpslatitude,
#mw_metadata .exif-gpslongitude,
#mw_metadata .exif-artist {
  display: none;
}
/*consistent alternate link coloring, mostly for infoboxes or main page*/
.brightlinks a, .brightlinks a:visited, .brightlinks a.external, .brightlinks a.extiw {
  color: #FFFAFA!important;
}
.darklinks a, .darklinks a:visited, .darklinks a.external, .darklinks a.extiw  {
  color: #3d5c7f!important;
}

/* Makes redirects appear in italics on [[Special:Allpages]] */
.allpagesredirect,
.redirect-in-category,
.watchlistredir {
	font-style: italic;
}

/* Hide license dropdown on [[Special:Upload]] */
p.mw-upload-editlicenses {
  display: none;
}

.mw-htmlform-field-Licenses {
    display: none;
}
.img-greyscale {
	filter: grayscale(100%);
}