MediaWiki: Tweeki.css: Difference between revisions

From Renoise User Manual
Jump to: navigation, search
No edit summary
No edit summary
Line 25: Line 25:


/* Change the silly padlock icon used for https links to the regular link icon /*
/* Change the silly padlock icon used for https links to the regular link icon /*
div#content a.external[href ^="https://"] {
div#bodyContent a.external[href ^="https://"] {
   background: url(https://upload.wikimedia.org/wikipedia/commons/4/44/Icon_External_Link.svg) center right no-repeat;
   background: url(https://upload.wikimedia.org/wikipedia/commons/4/44/Icon_External_Link.svg) center right no-repeat;
}
}

Revision as of 11:55, 3 January 2019

/* CSS placed here will affect users of the Tweeki skin */

/* Scroll left sidebar with the entire screen */
@media (min-width: 992px) {
  .sidebar-left-wrapper {
      position:absolute;
  }
}

/* More condensed site-map tree */
.sidebar-left-wrapper ol, ul {
    padding-left: 1em;
}

/* Hide footer - it overflows the left, fixed side-bar */
#footer.footer {
    display: none;
}

/* Prevent that images in the main content flow into the right sidebar */
div#bodyContent img {
    max-width: 100%;
    height: auto;
}

/* Change the silly padlock icon used for https links to the regular link icon /*
div#bodyContent a.external[href ^="https://"] {
   background: url(https://upload.wikimedia.org/wikipedia/commons/4/44/Icon_External_Link.svg) center right no-repeat;
}