Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
/****************************** Font Settings ******************************/
/* Override Fonts to MS YaHei, and can fallback to default */
html * {
font-family: "Microsoft YaHei";
}
/****************************** Content Box Shadow ******************************/
#content {
box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
/****************************** Extension Tabber (Alias tabs) Styles ******************************/
div.tabberlive, ul.tabbernav, ul.tabbernav > li {
margin: 0 !important;
padding: 0 !important;
}
/* Later Modification Needed. */
/*ul.tabbernav {
height: 26px !important;
line-height: 26px !important;
}
ul.tabbernav > li:before {
content: "";
margin: 0;
margin-top: -26px;
padding: 0;
width: 0px;
height: 0px;
border-style: solid;
border-width: 0 0 26px 26px;
border-color: transparent transparent lightblue transparent;
}*/
/****************************** Extension MenuSidebar Styles ******************************/
/* Allow popup submenus to overflow the sidebar area for the Vector skin */
#mw-panel div.portal div.body ul li {
overflow: visible !important;
}
/* Positioning tweak for submenus specific to vector */
.menuSidebar ul div {
top: -1px !important; /* vertical offset of submenus */
}
/* keep nested list fonts from continually decreasing in size with each nesting */
#mw-panel div.portal div.body ul li {
font-size: small !important;
}
/* Allow popup submenus to overflow the sidebar area */
#mw-panel div.portal div.body ul li {
overflow: visible !important;
}
/* minor adjustments to the sidebar area for the Vector skin */
.menuSidebar ul div {
top: -1px !important; /* vertical offset of submenus */
}
.menuSidebar ul {
width: 8em; /* width of main menu */
}
/****************************** Webkit Scrollbar Styles ******************************/
::-webkit-scrollbar {
width: 12px;
height: 12px;
background-color: white;
}
::-webkit-scrollbar-track {
border-radius: 6px;
border: 1px white solid;
}
::-webkit-scrollbar-track:hover {
background-color: #e4e3e3;
}
::-webkit-scrollbar-thumb {
border-width: 1px;
border-style: solid;
border-radius: 6px;
background-color: #c6c3bd;
}
::-webkit-scrollbar-thumb:vertical {
border-color: transparent white;
}
::-webkit-scrollbar-thumb:horizontal {
border-color: white transparent;
}
::-webkit-scrollbar-thumb:hover {
background-color: #777571;
}
::-webkit-scrollbar-thumb:active {
background-color: #c6c3bd;
}
::-webkit-scrollbar-button {
background-repeat: no-repeat;
background-image: url('http://elwiki.net/wiki/images/Scrollbar.png');
background-origin: padding-box;
display: block;
margin: 0;
padding: 0;
width: 12px;
height: 12px;
border: 1px white solid;
border-radius: 2px;
}
::-webkit-scrollbar-button:hover {
border-color: #7c7a76;
}
::-webkit-scrollbar-button:active {
border-color: #adaaa5;
}
/* Button "Up" */
::-webkit-scrollbar-button:vertical:start:decrement,
::-webkit-scrollbar-button:vertical:start:decrement:active {
margin-top: 12px;
background-position: 0 0;
}
::-webkit-scrollbar-button:vertical:start:decrement:hover {
background-position: -20px 0;
}
/* Button "Down" */
::-webkit-scrollbar-button:vertical:end:increment,
::-webkit-scrollbar-button:vertical:end:increment:active {
background-position: -10px 0;
}
::-webkit-scrollbar-button:vertical:end:increment:hover {
background-position: -30px 0;
}
/* Button "Left" */
::-webkit-scrollbar-button:horizontal:start:decrement,
::-webkit-scrollbar-button:horizontal:start:decrement:active {
background-position: 0 -20px;
}
::-webkit-scrollbar-button:horizontal:start:decrement:hover {
background-position: -20px -20px;
}
/* Button "Right" */
::-webkit-scrollbar-button:horizontal:end:increment,
::-webkit-scrollbar-button:horizontal:end:increment:active {
background-position: -10px -20px;
}
::-webkit-scrollbar-button:horizontal:end:increment:hover {
background-position: -30px -20px;
}
/** @@@@@
I can not figure out Vector.js to enable Scroll to Top/Bottom/LHome/REnd and shift the button functions,
thus, I commented this section.
@@@@ **/
/* Button "Top" */
/*::-webkit-scrollbar-button:single-button:vertical:start, ::-webkit-scrollbar-button:single-button:vertical:start:active {
background-position: 0 -10px;
}
::-webkit-scrollbar-button:single-button:vertical:start:hover {
background-position: -20px -10px;
}*/
/* Button "Bottom" */
/*::-webkit-scrollbar-button:single-button:vertical:end, ::-webkit-scrollbar-button:single-button:vertical:end:active {
background-position: -10px -10px;
}
::-webkit-scrollbar-button:single-button:vertical:end:hover {
background-position: -30px -10px;
}*/
/* Button "LHome" */
/*::-webkit-scrollbar-button:single-button:horizontal:start, ::-webkit-scrollbar-button:single-button:horizontal:start:active {
background-position: 0 -30px;
}
::-webkit-scrollbar-button:single-button:horizontal:start:hover {
background-position: -20px -30px;
}*/
/* Button "REnd" */
/*::-webkit-scrollbar-button:single-button:horizontal:end, ::-webkit-scrollbar-button:single-button:horizontal:end:active {
background-position: -10px -30px;
}
::-webkit-scrollbar-button:single-button:horizontal:end:hover {
background-position: -30px -30px;
}*/