MediaWiki:Common.css: Difference between revisions

From bits & Bytes Minecraft Wiki
Jump to navigation Jump to search
Created page with "→‎CSS placed here will be applied to all skins: →‎**** Portable Infobox ****: .portable-infobox { overflow: hidden; border: 1px solid #C0C0C0; border-radius: 3px; } .portable-infobox.pi-theme-scroll{ } .portable-infobox.pi-theme-scroll .pi-background { background-color: maroon; } .portable-infobox.pi-theme-scroll .pi-secondary-background { background-color: maroon; } .pi-section-navigation, .pi-media-collection-tabs { -ms-flex-wrap..."
 
Tag: Replaced
 
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
/***** Portable Infobox  *****/
.portable-infobox {   
    overflow: hidden;
    border: 1px solid #C0C0C0;
    border-radius: 3px;
}
.portable-infobox.pi-theme-scroll{
}
.portable-infobox.pi-theme-scroll .pi-background {
    background-color: maroon;
}
.portable-infobox.pi-theme-scroll .pi-secondary-background {
    background-color: maroon;
}
.pi-section-navigation, .pi-media-collection-tabs {
    -ms-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    justify-content: unset;
    overflow-x: auto;
}
.pi-section-navigation .pi-section-tab, .pi-media-collection .pi-tab-link {
    max-width: none;
    overflow: unset;
    text-overflow: unset;
    -ms-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    justify-content: unset;
    overflow-x: auto;
}
.portable-infobox .pi-media {
    margin-top: 15px;
    max-width: 95%;
    text-align: center;
}

Latest revision as of 16:54, 29 October 2023

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