MediaWiki:Vector.css: Difference between revisions

From kJams Wiki
Jump to navigation Jump to search
 
Fix external link icon display
 
(2 intermediate revisions by 2 users not shown)
Line 3: Line 3:
     background-color: #f9f9f9;
     background-color: #f9f9f9;
     /* this assumes that your wiki is installed at '/w' in the web root */
     /* this assumes that your wiki is installed at '/w' in the web root */
     background-image: url('/w/skins/MonoBook/resources/images/headbg.jpg');
     background-image: url('https://karaoke.kjams.com/w/skins/header_background.jpg');
     background-repeat: no-repeat;
     background-repeat: no-repeat;
}
}
Line 10: Line 10:
   background-image: none;
   background-image: none;
   background-color: transparent;
   background-color: transparent;
}
/* Fix external link icon */
.mw-parser-output a.external {
    background-image: url('https://karaoke.kjams.com/w/skins/Vector/resources/skins.vector.styles.legacy/images/link-external-small-ltr-progressive.svg') !important;
}
}

Latest revision as of 02:42, 25 December 2025

/* CSS placed here will affect users of the Vector skin */
body {
    background-color: #f9f9f9;
    /* this assumes that your wiki is installed at '/w' in the web root */
    background-image: url('https://karaoke.kjams.com/w/skins/header_background.jpg');
    background-repeat: no-repeat;
}

#mw-page-base {
  background-image: none;
  background-color: transparent;
}
/* Fix external link icon */
.mw-parser-output a.external {
    background-image: url('https://karaoke.kjams.com/w/skins/Vector/resources/skins.vector.styles.legacy/images/link-external-small-ltr-progressive.svg') !important;
}