Module:Message box/ombox.css: Difference between revisions
From Test Wiki
Content deleted Content added
m ExE Boss moved page Template:Ombox/styles.css to Module:Message box/ombox.css without leaving a redirect: mw:MediaWiki talk:Gadget-site.css § Last to TemplateStyles: mbox and MediaWiki:Gadget-enwp-boxes.css |
Copied from mw:Module:Message box/ombox.css |
||
Line 3: | Line 3: | ||
* |
* |
||
* @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-enwp-boxes.css |
* @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-enwp-boxes.css |
||
* @revision 2021-07- |
* @revision 2021-07-15 |
||
*/ |
*/ |
||
table.ombox { |
table.ombox { |
||
margin: 4px 10%; |
margin: 4px 10%; |
||
Line 13: | Line 12: | ||
background-color: #f8f9fa; |
background-color: #f8f9fa; |
||
box-sizing: border-box; |
box-sizing: border-box; |
||
} |
|||
/* An empty narrow cell */ |
|||
.ombox td.mbox-empty-cell { |
|||
border: none; |
|||
padding: 0; |
|||
width: 1px; |
|||
} |
|||
/* The message body cell(s) */ |
|||
.ombox th.mbox-text, |
|||
.ombox 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 */ |
|||
.ombox td.mbox-image { |
|||
border: none; |
|||
text-align: center; |
|||
/* 0.9em left, 0px right */ |
|||
/* @noflip */ |
|||
padding: 2px 0 2px 0.9em; |
|||
} |
|||
/* The right image cell */ |
|||
.ombox td.mbox-imageright { |
|||
border: none; |
|||
text-align: center; |
|||
/* 0px left, 0.9em right */ |
|||
/* @noflip */ |
|||
padding: 2px 0.9em 2px 0; |
|||
} |
} |
||
Line 50: | Line 84: | ||
/* Gray-gold */ |
/* Gray-gold */ |
||
border-color: #a2a9b1; |
border-color: #a2a9b1; |
||
border-width: 2px; |
|||
} |
|||
/** |
|||
* {{ombox|small=1}} styles |
|||
* |
|||
* These ".mbox-small" classes must be placed after all other |
|||
* ".ombox" classes. "html body.mediawiki .ombox" |
|||
* is so they apply only to other page message boxes. |
|||
* |
|||
* @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-enwp-boxes.css |
|||
* @revision 2021-07-15 |
|||
*/ |
|||
/* For the "small=yes" option. */ |
|||
html body.mediawiki .ombox.mbox-small { |
|||
clear: right; |
|||
float: right; |
|||
margin: 4px 0 4px 1em; |
|||
box-sizing: border-box; |
|||
width: 238px; |
|||
font-size: 88%; |
|||
line-height: 1.25em; |
|||
} |
} |