MediaWiki:Common.css: Difference between revisions

From kubu
Jump to navigationJump to search
No edit summary
Tag: Reverted
No edit summary
Tag: Manual revert
 
(9 intermediate revisions by the same user not shown)
Line 3: Line 3:
     display: none;
     display: none;
}
}
.container { 
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "aloita ."
    ". ."
    "problems .";
}
.aloita { grid-area: aloita; }
.problems { grid-area: problems; }

Latest revision as of 11:58, 26 July 2024

/* CSS placed here will be applied to all skins */
.no-edit-button .mw-editsection {
    display: none;
}