MediaWiki:Vector.css: Difference between revisions

From aurawatch
Jump to navigation Jump to search
No edit summary
Tag: Manual revert
No edit summary
Line 104: Line 104:


/* Reset figure so it doesn't form the box */
/* Reset figure so it doesn't form the box */
/* Frame on the <figure> so figcaption is inside */
.mw-parser-output figure[typeof*="mw:File"],
.mw-parser-output figure[typeof*="mw:File"],
.mw-parser-output figure[typeof*="mw:Image"]{
.mw-parser-output figure[typeof*="mw:Image"] {
  display: inline-block !important;
  background: #2f2f2f !important;
  border: 1px solid #555 !important;
  padding: 4px !important;
  margin: 0 !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}
 
/* Inner border on the image wrapper: handle both direct <a> and <span><a> */
.mw-parser-output figure[typeof*="mw:File"] > a:first-child,
.mw-parser-output figure[typeof*="mw:Image"] > a:first-child,
.mw-parser-output figure[typeof*="mw:File"] > span:first-child > a,
.mw-parser-output figure[typeof*="mw:Image"] > span:first-child > a {
  display: block !important;
   background: transparent !important;
   background: transparent !important;
   border: 0 !important;
   border: 1px solid #bdbdbd !important;
   padding: 0 !important;
   padding: 0 !important;
  box-shadow: none !important;
}
}


/* The box is on the <a> only (so caption is outside) */
/* Ensure the image actually renders */
.mw-parser-output figure[typeof*="mw:File"] > a,
.mw-parser-output figure[typeof*="mw:"] img,
.mw-parser-output figure[typeof*="mw:Image"] > a{
.mw-parser-output img.mw-file-element,
   display:block !important;
.mw-parser-output img.thumbimage {
   line-height:0 !important;           /* removes bottom white strip */
   display: block !important;
   background: var(--thumb-bg) !important;
   max-width: 100% !important;
   border:1px solid var(--thumb-border) !important; /* outer */
  height: auto !important;
   padding:4px !important;                               /* mat */
   background: transparent !important;
   box-shadow: inset 0 0 0 1px var(--thumb-inner) !important; /* inner */
   border: 0 !important;
  box-shadow: none !important;
   opacity: 1 !important;
   visibility: visible !important;
}
}


/* Image itself */
/* Caption inside the frame */
.mw-parser-output figure[typeof*="mw:"] img.mw-file-element,
.mw-parser-output figure[typeof*="mw:"] figcaption,
.mw-parser-output figure[typeof*="mw:"] img.thumbimage{
.mw-parser-output .thumb .thumbcaption {
   display:block !important;
   margin: 6px 8px 4px !important;
   background:transparent !important;
  padding: 0 !important;
   border:0 !important;
   background: transparent !important;
   box-shadow:none !important;
   border: 0 !important;
   color: #bdbdbd !important;
}
}


/* Caption below the box */
/* Hide the magnify / file-description icon */
.mw-parser-output figure[typeof*="mw:"] figcaption{
.mw-parser-output figure .magnify,
   margin-top:6px !important;  /* outside the framed box */
.mw-parser-output figure a.mw-file-description {
  padding:0 !important;
   display: none !important;
  background:transparent !important;
  border:0 !important;
  color:var(--thumb-caption) !important;
}
}

Revision as of 12:15, 18 September 2025

div.vectorTabs ul li#ca-history {
    display: none;
}
.vector-menu-tabs-legacy li {
    background-color: transparent !important;
    color: #72777d;
    cursor: pointer;
}
.new.mw-list-item {
    background-color: transparent !important;
}
.new.mw-list-item a {
    background-color: transparent !important;
    color: #72777d;
    cursor: pointer;
    font-size: 0.8em;
}
.ca-talk {
    background-color: transparent !important;
    color: #72777d;
    cursor: pointer;
    font-size: 0.8em;
}
.vector-menu-portal .vector-menu-content li a,
.vector-menu-portal .vector-menu-content li a:visited {
    color: #72777d;
}
/* Additional rules to ensure transparency */
.vector-menu-tabs,
.vector-menu-tabs ul,
.vector-menu-tabs li,
.vector-menu-tabs a,
.vector-menu-tabs-legacy,
.vector-menu-tabs-legacy ul,
.vector-menu-tabs-legacy li,
.vector-menu-tabs-legacy a,
#p-namespaces,
#p-namespaces li,
#p-namespaces a,
#ca-nstab-main,
#ca-talk,
.vector-tab-noicon,
.mw-list-item-js {
    background-color: transparent !important;
    background: transparent !important;
    background-image: none !important;
}


.vector-menu-portal,
#mw-panel,
.vector-menu-portal .vector-menu-content {
    background-color: #202020 !important; /* Dark gray color similar to the first image */
}

.vector-menu-portal .vector-menu-heading {
    color: #cccccc;  /* Light gray for headers */
}

/* For the links */
.vector-menu-portal .vector-menu-content a {
    color: #3366bb;  /* Blue color for links */
}

/* Remove any borders that might be present */
.vector-menu-portal {
    border: none !important;
}


body {
    background-image: url('https://i.imgur.com/nBW7bEJ.png') !important;
    background-color: rgba(0, 0, 0, 0.9) !important; /* Semi-transparent black */
    background-blend-mode: overlay !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-attachment: fixed !important;
    background-size: cover !important;
}


#ca-view a, #ca-edit a, #ca-history a {
  color: inherit !important;
  background-color: transparent !important;
}

.mw-parser-output figure .magnify,
.mw-parser-output figure a.mw-file-description,
.mw-parser-output figure a.mw-file-description::before,
.mw-parser-output figure a.mw-file-description::after,
.mw-parser-output .thumb .thumbcaption .magnify {
  display: none !important;
  content: none !important;
  background: none !important;
}


:root{
  --thumb-bg:#2f2f2f;
  --thumb-border:#555;        /* outer */
  --thumb-inner:#bdbdbd;      /* thin inner */
  --thumb-caption:#bdbdbd;
}

/* Reset figure so it doesn't form the box */
/* Frame on the <figure> so figcaption is inside */
.mw-parser-output figure[typeof*="mw:File"],
.mw-parser-output figure[typeof*="mw:Image"] {
  display: inline-block !important;
  background: #2f2f2f !important;
  border: 1px solid #555 !important;
  padding: 4px !important;
  margin: 0 !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

/* Inner border on the image wrapper: handle both direct <a> and <span><a> */
.mw-parser-output figure[typeof*="mw:File"] > a:first-child,
.mw-parser-output figure[typeof*="mw:Image"] > a:first-child,
.mw-parser-output figure[typeof*="mw:File"] > span:first-child > a,
.mw-parser-output figure[typeof*="mw:Image"] > span:first-child > a {
  display: block !important;
  background: transparent !important;
  border: 1px solid #bdbdbd !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* Ensure the image actually renders */
.mw-parser-output figure[typeof*="mw:"] img,
.mw-parser-output img.mw-file-element,
.mw-parser-output img.thumbimage {
  display: block !important;
  max-width: 100% !important;
  height: auto !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Caption inside the frame */
.mw-parser-output figure[typeof*="mw:"] figcaption,
.mw-parser-output .thumb .thumbcaption {
  margin: 6px 8px 4px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  color: #bdbdbd !important;
}

/* Hide the magnify / file-description icon */
.mw-parser-output figure .magnify,
.mw-parser-output figure a.mw-file-description {
  display: none !important;
}