Message box/imbox.css

From Eating Asturias, the Encyclopedia of Asturian Gastronomy
en>Izno
(move margin 10% to media query)
m (1 revision imported)
Line 1: Line 1:
/* {{pp|small=y}} */
/**
.imbox {
* {{imbox}} (image message box) styles
margin: 4px 0;
*
* @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-enwp-boxes.css
* @revision 2021-07-15
*/
table.imbox {
margin: 4px 10%;
border-collapse: collapse;
border-collapse: collapse;
border: 3px solid #36c;    /* Default "notice" blue */
/* Default "notice" blue */
border: 3px solid #36c;
background-color: #fbfbfb;
background-color: #fbfbfb;
box-sizing: border-box;
box-sizing: border-box;
Line 10: Line 16:
/* For imboxes inside imbox-text cells. */
/* For imboxes inside imbox-text cells. */
.imbox .mbox-text .imbox {
.imbox .mbox-text .imbox {
margin: 0 -0.5em; /* 0.9 - 0.5 = 0.4em left/right. */
/* 0.9 - 0.5 = 0.4em left/right.       */
/* TODO: Still needed? */
margin: 0 -0.5em;
display: block; /* Fix for webkit to force 100% width.  */
/* Fix for webkit to force 100% width.  */
display: block;
}
}


.imbox-speedy {
/* For imboxes inside other templates.  */
border: 3px solid #b32424;    /* Red */
.mbox-inside .imbox {
background-color: #fee7e6;   /* Pink */
margin: 4px;
}
}


.imbox-delete {
/* An empty narrow cell */
border: 3px solid #b32424;   /* Red */
.imbox td.mbox-empty-cell {
border: none;
padding: 0;
width: 1px;
}
}


.imbox-content {
/* The message body cell(s) */
border: 3px solid #f28500;   /* Orange */
.imbox th.mbox-text,
.imbox td.mbox-text {
border: none;
/* 0.9em left/right */
padding: 0.25em 0.9em;
/* Make all mboxes the same width regardless of text length */
width: 100%;
}
}


.imbox-style {
/* The left image cell */
border: 3px solid #fc3;      /* Yellow */
.imbox td.mbox-image {
/* 0.9em left, 0px right */
/* @noflip */
padding: 2px 0 2px 0.9em;
}
}


.imbox-move {
/* The right image cell */
border: 3px solid #9932cc;    /* Purple */
.imbox td.mbox-imageright {
/* 0px left, 0.9em right */
/* @noflip */
padding: 2px 0.9em 2px 0;
}
}


.imbox-protection {
table.imbox-notice {
border: 3px solid #a2a9b1;   /* Gray-gold */
/* Blue */
border-color: #36c;
}
}


.imbox-license {
table.imbox-speedy {
border: 3px solid #88a;      /* Dark gray */
/* Pink */
background-color: #f7f8ff;   /* Light gray */
background-color: #fee7e6;
}
}


.imbox-featured {
table.imbox-delete,
border: 3px solid #cba135;   /* Brown-gold */
table.imbox-speedy {
/* Red */
border-color: #b32424;
}
}


.imbox .mbox-text {
table.imbox-content {
border: none;
/* Orange */
/* @noflip */
border-color: #f28500;
padding: 0.25em 0.9em;
width: 100%;
}
}


.imbox .mbox-image {
table.imbox-style {
border: none;
/* Yellow */
/* @noflip */
border-color: #fc3;
padding: 2px 0 2px 0.9em;
text-align: center;
}
}


.imbox .mbox-imageright {
table.imbox-move {
border: none;
/* Purple */
/* @noflip */
border-color: #9932cc;
padding: 2px 0.9em 2px 0;
text-align: center;
}
}


/* An empty narrow cell */
table.imbox-protection {
.imbox .mbox-empty-cell {
/* Gray-gold */
border: none;
border-color: #a2a9b1;
padding: 0;
width: 1px;
}
}


.imbox .mbox-invalid-type {
table.imbox-license {
text-align: center;
/* Dark gray */
border-color: #88a;
/* Light gray */
background-color: #f7f8ff;
}
}


@media (min-width: 720px) {
table.imbox-featured {
.imbox {
/* Brown-gold */
margin: 4px 10%;
border-color: #cba135;
}
}
}

Revision as of 16:19, 28 May 2023

/**
 * {{imbox}} (image message box) styles
 *
 * @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-enwp-boxes.css
 * @revision 2021-07-15
 */
table.imbox {
	margin: 4px 10%;
	border-collapse: collapse;
	/* Default "notice" blue */
	border: 3px solid #36c;
	background-color: #fbfbfb;
	box-sizing: border-box;
}

/* For imboxes inside imbox-text cells. */
.imbox .mbox-text .imbox {
	/* 0.9 - 0.5 = 0.4em left/right.        */
	margin: 0 -0.5em;
	/* Fix for webkit to force 100% width.  */
	display: block;
}

/* For imboxes inside other templates.  */
.mbox-inside .imbox {
	margin: 4px;
}

/* An empty narrow cell */
.imbox td.mbox-empty-cell {
	border: none;
	padding: 0;
	width: 1px;
}

/* The message body cell(s) */
.imbox th.mbox-text,
.imbox td.mbox-text {
	border: none;
	/* 0.9em left/right */
	padding: 0.25em 0.9em;
	/* Make all mboxes the same width regardless of text length */
	width: 100%;
}

/* The left image cell */
.imbox td.mbox-image {
	/* 0.9em left, 0px right */
	/* @noflip */
	padding: 2px 0 2px 0.9em;
}

/* The right image cell */
.imbox td.mbox-imageright {
	/* 0px left, 0.9em right */
	/* @noflip */
	padding: 2px 0.9em 2px 0;
}

table.imbox-notice {
	/* Blue */
	border-color: #36c;
}

table.imbox-speedy {
	/* Pink */
	background-color: #fee7e6;
}

table.imbox-delete,
table.imbox-speedy {
	/* Red */
	border-color: #b32424;
}

table.imbox-content {
	/* Orange */
	border-color: #f28500;
}

table.imbox-style {
	/* Yellow */
	border-color: #fc3;
}

table.imbox-move {
	/* Purple */
	border-color: #9932cc;
}

table.imbox-protection {
	/* Gray-gold */
	border-color: #a2a9b1;
}

table.imbox-license {
	/* Dark gray */
	border-color: #88a;
	/* Light gray */
	background-color: #f7f8ff;
}

table.imbox-featured {
	/* Brown-gold */
	border-color: #cba135;
}