Module:Message box/ombox.css:修订间差异
外观
删除的内容 添加的内容
替换 ombox.css 为标准 enwiki 版(含 mbox-small 右浮动) |
更新 ombox.css 为 mworg 完整版(含暗色模式+响应式) |
||
| 第8行: | 第8行: | ||
margin: 4px 10%; |
margin: 4px 10%; |
||
border-collapse: collapse; |
border-collapse: collapse; |
||
/* Default "notice" gray */ |
|||
border: 1px solid #a2a9b1; |
border: 1px solid #a2a9b1; |
||
background-color: #f8f9fa; |
background-color: #f8f9fa; |
||
| 第14行: | 第15行: | ||
} |
} |
||
/* An empty narrow cell */ |
|||
.ombox td.mbox-empty-cell { |
.ombox td.mbox-empty-cell { |
||
border: none; |
border: none; |
||
| 第20行: | 第22行: | ||
} |
} |
||
/* The message body cell(s) */ |
|||
.ombox th.mbox-text, |
.ombox th.mbox-text, |
||
.ombox td.mbox-text { |
.ombox td.mbox-text { |
||
border: none; |
border: none; |
||
/* 0.9em left/right */ |
|||
padding: 0.25em 0.9em; |
padding: 0.25em 0.9em; |
||
/* Make all mboxes the same width regardless of text length */ |
|||
width: 100%; |
width: 100%; |
||
} |
} |
||
/* The left image cell */ |
|||
.ombox td.mbox-image { |
.ombox td.mbox-image { |
||
border: none; |
border: none; |
||
| 第33行: | 第39行: | ||
} |
} |
||
/* The right image cell */ |
|||
.ombox td.mbox-imageright { |
.ombox td.mbox-imageright { |
||
border: none; |
border: none; |
||
| 第40行: | 第47行: | ||
table.ombox-notice { |
table.ombox-notice { |
||
/* Gray */ |
|||
border-color: #a2a9b1; |
border-color: #a2a9b1; |
||
} |
} |
||
table.ombox-speedy { |
table.ombox-speedy { |
||
/* Pink */ |
|||
background-color: #fee7e6; |
background-color: #fee7e6; |
||
color: #333; |
color: #333; |
||
| 第50行: | 第59行: | ||
table.ombox-speedy, |
table.ombox-speedy, |
||
table.ombox-delete { |
table.ombox-delete { |
||
/* Red */ |
|||
border-color: #b32424; |
border-color: #b32424; |
||
border-width: 2px; |
border-width: 2px; |
||
| 第55行: | 第65行: | ||
table.ombox-content { |
table.ombox-content { |
||
/* Orange */ |
|||
border-color: #f28500; |
border-color: #f28500; |
||
} |
} |
||
table.ombox-style { |
table.ombox-style { |
||
/* Yellow */ |
|||
border-color: #fc3; |
border-color: #fc3; |
||
} |
} |
||
table.ombox-move { |
table.ombox-move { |
||
/* Purple */ |
|||
border-color: #9932cc; |
border-color: #9932cc; |
||
} |
} |
||
table.ombox-protection { |
table.ombox-protection { |
||
/* Gray-gold */ |
|||
border-color: #a2a9b1; |
border-color: #a2a9b1; |
||
border-width: 2px; |
border-width: 2px; |
||
} |
} |
||
/** |
|||
/* 小型消息框(如 Lua 通知) */ |
|||
* {{ombox|small=1}} styles |
|||
* |
|||
* These ".mbox-small" classes must be placed after all other |
|||
* ".ombox" classes. |
|||
*/ |
|||
html body.mediawiki .ombox.mbox-small { |
|||
clear: right; |
clear: right; |
||
float: right; |
float: right; |
||
| 第80行: | 第99行: | ||
font-size: 88%; |
font-size: 88%; |
||
line-height: 1.25em; |
line-height: 1.25em; |
||
} |
|||
@media screen { |
|||
html.skin-theme-clientpref-night table.ombox { |
|||
background-color: transparent; |
|||
color: inherit; |
|||
} |
|||
} |
|||
@media screen and (prefers-color-scheme: dark) { |
|||
html.skin-theme-clientpref-os table.ombox { |
|||
background-color: transparent; |
|||
color: inherit; |
|||
} |
|||
} |
|||
@media screen and (max-width: 720px) { |
|||
table.ombox { |
|||
margin: 4px auto; |
|||
} |
|||
} |
} |
||
2026年6月21日 (日) 15:46的最新版本
/**
* {{ombox}} (other pages message box) styles
*
* @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-enwp-boxes.css
* @revision 2021-07-15
*/
table.ombox {
margin: 4px 10%;
border-collapse: collapse;
/* Default "notice" gray */
border: 1px solid #a2a9b1;
background-color: #f8f9fa;
color: #333;
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;
padding: 2px 0 2px 0.9em;
}
/* The right image cell */
.ombox td.mbox-imageright {
border: none;
text-align: center;
padding: 2px 0.9em 2px 0;
}
table.ombox-notice {
/* Gray */
border-color: #a2a9b1;
}
table.ombox-speedy {
/* Pink */
background-color: #fee7e6;
color: #333;
}
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;
}
/**
* {{ombox|small=1}} styles
*
* These ".mbox-small" classes must be placed after all other
* ".ombox" classes.
*/
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;
}
@media screen {
html.skin-theme-clientpref-night table.ombox {
background-color: transparent;
color: inherit;
}
}
@media screen and (prefers-color-scheme: dark) {
html.skin-theme-clientpref-os table.ombox {
background-color: transparent;
color: inherit;
}
}
@media screen and (max-width: 720px) {
table.ombox {
margin: 4px auto;
}
}