Message box/imbox.css
From Eating Asturias, the Encyclopedia of Asturian Gastronomy
en>Izno (move margin 10% to media query) |
JonTillman (talk | contribs) m (1 revision imported) |
||
| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
/* {{ | /** | ||
.imbox { | * {{imbox}} (image message box) styles | ||
margin: 4px | * | ||
* @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; | ||
/* 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 { | ||
/* 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; | |||
} | } | ||
.imbox- | /* An empty narrow cell */ | ||
border: | .imbox td.mbox-empty-cell { | ||
border: none; | |||
padding: 0; | |||
width: 1px; | |||
} | } | ||
.imbox- | /* The message body cell(s) */ | ||
border: | .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- | /* The left image cell */ | ||
.imbox td.mbox-image { | |||
/* 0.9em left, 0px right */ | |||
/* @noflip */ | |||
padding: 2px 0 2px 0.9em; | |||
} | } | ||
.imbox- | /* The right image cell */ | ||
.imbox td.mbox-imageright { | |||
/* 0px left, 0.9em right */ | |||
/* @noflip */ | |||
padding: 2px 0.9em 2px 0; | |||
} | } | ||
.imbox- | table.imbox-notice { | ||
border: | /* Blue */ | ||
border-color: #36c; | |||
} | } | ||
.imbox- | table.imbox-speedy { | ||
/* Pink */ | |||
background-color: # | background-color: #fee7e6; | ||
} | } | ||
.imbox- | table.imbox-delete, | ||
border: | table.imbox-speedy { | ||
/* Red */ | |||
border-color: #b32424; | |||
} | } | ||
.imbox | table.imbox-content { | ||
/* Orange */ | |||
/* | border-color: #f28500; | ||
} | } | ||
.imbox | table.imbox-style { | ||
/* Yellow */ | |||
/* | border-color: #fc3; | ||
} | } | ||
.imbox | table.imbox-move { | ||
/* Purple */ | |||
/* | border-color: #9932cc; | ||
} | } | ||
table.imbox-protection { | |||
.imbox | /* Gray-gold */ | ||
border-color: #a2a9b1; | |||
} | } | ||
.imbox | table.imbox-license { | ||
/* Dark gray */ | |||
border-color: #88a; | |||
/* Light gray */ | |||
background-color: #f7f8ff; | |||
} | } | ||
table.imbox-featured { | |||
/* Brown-gold */ | |||
border-color: #cba135; | |||
} | } | ||
Latest revision as of 16:45, 13 October 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;
}