MediaWiki:Minerva.less/infobox.less

From Brighter Shores Wiki
Jump to navigation Jump to search
/* ====================
       infoboxes
   ==================== */

@infobox-background: @BODY_LIGHT;
@infobox-header-color: @BODY_DARK;
@infobox-border-color: @BODY_BORDER;
@infobox-subheader-color: @BODY_MID;

.infobox {
    font-size: 85%;
    table-layout: fixed;
    border-collapse: separate;
    
    // override minerva's mobile-friendlyness
    // our infoboxes shouldn't be scrollable anyway
    .content & {
    	display: table;
    	
    	caption {
    		display: table-caption;
    		background: none; // bg in > 720px
    	}
    }
    
    caption.infobox-caption {
    	text-align: center;
    }

    td {
        padding: 0.25em 0.5em;
        line-height: 1.6em;

        &.infobox-nested {
            padding: 0.25em 0;
            line-height: 1em;
        }
    }
    
    .infobox-padding {
        padding: 0;
        border: 0;
    }
    
    .infobox-image {
        text-align: center;
    }

    .infobox-nested {
        text-align: center;

        &+.infobox-nested {
            border-left: 2px solid @infobox-subheader-color;
        }
    }
    
    .infobox-cell-hidden {
        display: none;
    }

    .infobox-full-width-content {
        max-width: 300px;
        text-align: center;
        overflow-x: hidden;
        padding: 0;
    }
}

.infobox-buttons {
    margin-top: 0.5em;
    text-align: center;
}

// Hides advanced data. Class gets replaced by .advanced-data-display
// if the showAdvancedData gadget is enabled.
.advanced-data {
    display: none;
}

@media screen and (min-width: @width-breakpoint-tablet) {
    .content table.infobox {
    	float: right;
        margin-top: 0.5em;
        margin-left: 1em;
        width: 300px !important; // Needed to compete with !important for .content table
        
        &.skill-info {
        	float: none;
        	margin: 0 0 1em 0;
        }
	}
}

@media screen and (min-width: @width-breakpoint-tablet) {
	.multi-infobox {
		float: right;
		margin-left: 1em;
		width: 300px;
	}
}