Difference between revisions of "Module:Message box/ombox.css"

From WPRDC Wiki
Jump to navigation Jump to search
>ExE Boss
(Import {{Ombox}} styles from MediaWiki:Gadget‑enwp‑boxes.css)
>ExE Boss
(code style conventions)
Line 10: Line 10:
}
}


/* Other pages message box styles */
/**
* {{ombox}} (other pages message box) styles
*
* @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-enwp-boxes.css
* @revision 2021-07-06
*/
table.ombox {
table.ombox {
margin: 4px 10%;
margin: 4px 10%;
border-collapse: collapse;
border-collapse: collapse;
border: 1px solid #a2a9b1;    /* Default "notice" gray */
/* Default "notice" gray */
border: 1px solid #a2a9b1;
background-color: #f8f9fa;
background-color: #f8f9fa;
box-sizing: border-box;
box-sizing: border-box;
Line 20: Line 26:


table.ombox-notice {
table.ombox-notice {
border: 1px solid #a2a9b1;   /* Gray */
/* Gray */
border-color: #a2a9b1;
}
}
table.ombox-speedy {
table.ombox-speedy {
border: 2px solid #b32424;    /* Red */
/* Pink */
background-color: #fee7e6;   /* Pink */
background-color: #fee7e6;
}
}
table.ombox-speedy,
table.ombox-delete {
table.ombox-delete {
border: 2px solid #b32424;   /* Red */
/* Red */
border-color: #b32424;
border-width: 2px;
}
}
table.ombox-content {
table.ombox-content {
border: 1px solid #f28500;   /* Orange */
/* Orange */
border-color: #f28500;
}
}
table.ombox-style {
table.ombox-style {
border: 1px solid #fc3;       /* Yellow */
/* Yellow */
border-color: #fc3;
}
}
table.ombox-move {
table.ombox-move {
border: 1px solid #9932cc;   /* Purple */
/* Purple */
border-color: #9932cc;
}
}
table.ombox-protection {
table.ombox-protection {
border: 2px solid #a2a9b1;    /* Gray-gold */
/* Gray-gold */
border-color: #a2a9b1;
border-width: 2px;
}
}



Revision as of 17:25, 15 July 2021

/* Cell sizes for ambox/tmbox/imbox/cmbox/ombox/fmbox/dmbox message boxes */
th.mbox-text, td.mbox-text {   /* The message body cell(s) */
	padding: 0.25em 0.9em;     /* 0.9em left/right */
}
td.mbox-image {                /* The left image cell */
	padding: 2px 0 2px 0.9em;  /* 0.9em left, 0px right */
}
td.mbox-imageright {           /* The right image cell */
	padding: 2px 0.9em 2px 0;  /* 0px left, 0.9em right */
}

/**
 * {{ombox}} (other pages message box) styles
 *
 * @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-enwp-boxes.css
 * @revision 2021-07-06
 */
table.ombox {
	margin: 4px 10%;
	border-collapse: collapse;
	/* Default "notice" gray */
	border: 1px solid #a2a9b1;
	background-color: #f8f9fa;
	box-sizing: border-box;
}

table.ombox-notice {
	/* Gray */
	border-color: #a2a9b1;
}

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

table.ombox-speedy,
table.ombox-delete {
	/* Red */
	border-color: #b32424;
	border-width: 2px;
}

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

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

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

table.ombox-protection {
	/* Gray-gold */
	border-color: #a2a9b1;
	border-width: 2px;
}

/* These mbox-small classes must be placed after all other
   ambox/tmbox/ombox etc classes. "html body.mediawiki" is so
   they override "table.ambox + table.ambox" above. */
html body.mediawiki .mbox-small {   /* For the "small=yes" option. */
	clear: right;
	float: right;
	margin: 4px 0 4px 1em;
}