MediaWiki:Common.css: Difference between revisions

From KDE Community Wiki
(Created page with "→‎CSS placed here will be applied to all skins: input.oo-ui-inputWidget-input { height: 2em; }")
 
m (Make it responsive)
 
(4 intermediate revisions by 2 users not shown)
Line 2: Line 2:


input.oo-ui-inputWidget-input {
input.oo-ui-inputWidget-input {
height: 2em;
height: 2.5em;
}
 
.noautonum .tocnumber { display: none; }
 
@media screen {
  .mw-page-container {
    min-width: 0;
  }
}
 
@media all {
  .mw-logo {
    min-width: 0;
  }
}
 
.mw-file-description > img {
  max-width: 100%;
  height: auto;
}
}

Latest revision as of 15:55, 22 July 2023

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

input.oo-ui-inputWidget-input {
height: 2.5em;
}

.noautonum .tocnumber { display: none; }

@media screen {
  .mw-page-container {
    min-width: 0;
  }
}

@media all {
  .mw-logo {
     min-width: 0;
   }
}

.mw-file-description > img {
  max-width: 100%;
  height: auto;
}