“MediaWiki:Common.css”的版本间差异

来自Wikioe
跳到导航 跳到搜索
无编辑摘要
无编辑摘要
第93行: 第93行:




/* 放置于这里的CSS将应用于所有皮肤 */
 
/* == 浮动目录 == */
/* == 浮动目录 == */
#toc, .toc {
#toc.mbox-image { display: none; }
      display: block;
table.toc {
      position: fixed;
        position: fixed;
      top: 100px;
        top: 100px;
      right: 0px;
        right: 0px;
      min-width: 200px;
        border: 0px;
      max-width: 350px;
        width: 300px;
      max-height: 600px;
        border-bottom: 1px SOLID #CCC;
      overflow-y: scroll;
        border-left: 1px SOLID #CCC;
      border: 1px solid #aaa;
}
      border-radius: 0 0 1px 1px;
table.toc tbody tr td ul {
      -moz-border-radius: 0 0 1px 1px;
        overflow: auto;
      background: rgba(249,249,249,0.85);
        max-height: 400px;
      padding: 12px;
}
      box-shadow: 0 1px 8px #000;
      -webkit-box-shadow: 0 1px 8px #000;
table.toc tbody tr td ul ul {
      -moz-box-shadow: 0 1px 8px #000;  
        overflow: auto;
}  
        max-height: 10000px;
}
body { overflow-x: hidden;}
body { overflow-x: hidden;}

2021年5月16日 (日) 04:54的版本

/* 这里放置的CSS将应用于所有皮肤 */


/**
 * by eijux
 * 2021/05/16
 */
/**
 * Styling for links generated by [[MediaWiki:Edittools]]
 * @source https://www.mediawiki.org/wiki/Extension:CharInsert#Styling
 * @updated 2020-03-17
.mw-charinsert-buttons {
	border: 1px solid #aaa;
	margin-top: 10px;
	padding: 1px;
	font-size: 1.1em;
	text-align: center;
}
.mw-charinsert-buttons a {
	background-color: #cde !important;
	color: #000;
	border: thin #069 outset;
	padding: 0 1px 1px;
	font-weight: bold;
	font-size: .9em;
	text-decoration: none;
}
.mw-charinsert-buttons a:hover,
.mw-charinsert-buttons a:active {
	background-color: #bcd;
	border-style: inset;
}
.client-js .mw-edittools-section {
	display: inline;
}
.client-js .mw-edittools-section input[type="button"] {
	font-size: .9em;
	margin-left: 1px;
	padding-left: 1px;
	padding-right: 1px;
}
 */
/**
 * Styling for links generated by [[MediaWiki:Edittools]] in WikimediaUI inspired theme.
 * @source https://www.mediawiki.org/wiki/Extension:CharInsert#Styling
 * @updated 2020-03-17
 */
.mw-charinsert-buttons {
	margin-top: 8px;
	border: 1px solid #c8ccd1;
	padding: 2px 4px 4px;
	font-size: 1.1em;
	text-align: center;
}
.mw-charinsert-buttons a {
	background-color: #f8f9fa !important;
	color: #202122;
	border: thin #36c outset;
	padding: 0 1px 2px;
	font-size: 0.9em;
	font-weight: bold;
	text-decoration: none;
}
.mw-charinsert-buttons a:hover {
	background-color: #fff;
    color: #404244;
}
.mw-charinsert-buttons a:active {
	background-color: #c8ccd1;
	border-style: inset;
}
.client-js .mw-edittools-section {
	display: inline;
}
.client-js .mw-edittools-section input[type="button"] {
	background-color: #f8f9fa;
	color: #202122;
	margin-left: 1px;
    border-radius: 2px;
	padding: 1px 6px;
	font-size: .9em;
    /* Apply pointer cursor to all interactive elements. */
    cursor: pointer;
}
.client-js .mw-edittools-section input[type="button"]:hover {
	background-color: #fff;
    color: #404244;
}
.client-js .mw-edittools-section input[type="button"]:active {
	background-color: #c8ccd1;
    color: #000;
}



/* == 浮动目录 == */
#toc.mbox-image { display: none; }
table.toc {
        position: fixed;
        top: 100px;
        right: 0px;
        border: 0px;
        width: 300px;
        border-bottom: 1px SOLID #CCC;
        border-left: 1px SOLID #CCC;
}
table.toc tbody tr td ul {
        overflow: auto;
        max-height: 400px;
}
 
table.toc tbody tr td ul ul {
        overflow: auto;
        max-height: 10000px;
}
 
body { overflow-x: hidden;}