MediaWiki:Common.css: Difference between revisions

OMNIVERSE
No edit summary
No edit summary
Line 4: Line 4:
     opacity: 0 !important;
     opacity: 0 !important;
     height: 0 !important;
     height: 0 !important;
}
/* --- MultimediaViewer: “clean lightbox” look --- */
/* Hide the bottom info strip (“More details”, license, etc.) */
.mw-mmv-info,
.mw-mmv-reuse,
.mw-mmv-credit,
.mw-mmv-download-pane,
.mw-mmv-permission {
  display: none !important;
}
/* Hide navigation arrows (optional) */
.mw-mmv-next-image,
.mw-mmv-prev-image {
  display: none !important;
}
/* Keep ONLY the close button; hide other toolbar buttons (optional) */
.mw-mmv-toolbar .mw-mmv-dialog-close {
  display: inline-block !important;
}
.mw-mmv-toolbar .mw-mmv-dialog-close + * {
  display: none !important;
}
/* Make it feel less “boxed in” */
.mw-mmv-overlay {
  background: rgba(0,0,0,0.92) !important;
}
.mw-mmv-image {
  box-shadow: none !important;
}
}

Revision as of 03:32, 25 January 2026

#p-pagemisc { 
    display: none !important; 
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
}
/* --- MultimediaViewer: “clean lightbox” look --- */

/* Hide the bottom info strip (“More details”, license, etc.) */
.mw-mmv-info,
.mw-mmv-reuse,
.mw-mmv-credit,
.mw-mmv-download-pane,
.mw-mmv-permission {
  display: none !important;
}

/* Hide navigation arrows (optional) */
.mw-mmv-next-image,
.mw-mmv-prev-image {
  display: none !important;
}

/* Keep ONLY the close button; hide other toolbar buttons (optional) */
.mw-mmv-toolbar .mw-mmv-dialog-close {
  display: inline-block !important;
}
.mw-mmv-toolbar .mw-mmv-dialog-close + * {
  display: none !important;
}

/* Make it feel less “boxed in” */
.mw-mmv-overlay {
  background: rgba(0,0,0,0.92) !important;
}
.mw-mmv-image {
  box-shadow: none !important;
}