MediaWiki:Common.css: Difference between revisions

m minor
Added flex-grid layout classes for div
 
Line 81: Line 81:


/* Modal End */
/* Modal End */
/* Flex Grid Layout Start */
div.flex-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    border: 1px solid #aaa;
    box-sizing: border-box;
    padding: 2px 2px 0 2px;
}
div.grid-row {
    display: grid;
    grid-column-gap: 2px;
    width: 100%; 
    margin: 0 0 2px 0;
}
div.grid-cell {
    background-color: #f8f8f8;
    padding: 2px;
}
/* Flex Grid Layout End */


/* Remove the [edit|edit source] links next to each section */
/* Remove the [edit|edit source] links next to each section */
.mw-editsection { display:none; }
.mw-editsection { display:none; }