MediaWiki:Vector.css
From Elwiki
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.
/****************************** Tabs Styles ******************************/
div.tabdiv {
display: flex;
}
div.tabdiv > ul {
min-width: 5%
flex: 1;
}
div.tabdiv > ul > li {
display: block;
}
div.tabdiv > div {
flex: 19;
}
div.tabdiv div.tabdiv {
display: block;
}
div.tabdiv div.tabdiv > ul > li {
display: inline-block;
}
/*****************************************************************TAB**/
div.tabdiv {
background-color: #2a282a;
}
div.tabdiv * {
border-color: #dadada;
color: #dadada;
}
div.tabdiv > ul > li a {
text-decoration: none;
}
div.tabdiv > ul {
margin: 0;
}
div.tabdiv > ul > li {
display: block;
margin: 5px 32px 5px 0;
padding: 0 20px;
background-clip: border-box;
}
div.tabdiv > ul > li,
div.tabdiv > ul > li:after {
line-height: 32px;
height: 32px;
}
div.tabdiv > ul > li:before,
div.tabdiv > ul > li:after {
content: '';
display: inline-block;
position: absolute;
-webkit-clip-path: polygon(0% 0%, 0% 100%, 100% 0%);
clip-path: polygon(0% 0%, 0% 100%, 100% 0%);
}
div.tabdiv > ul > li:after {
width: 32px;
right: -32px;
}
div.tabdiv > ul > li:before {
left: 0;
width: 13px;
height: 13px;
}
div.tabdiv > ul > li:hover:before {
background-color: #9d7803;
}
div.tabdiv > ul > li:hover,
div.tabdiv > ul > li:hover:after,
div.tabdiv > ul > li.active,
div.tabdiv > ul > li.active:after {
background-color: #f8d800;
}
div.tabdiv > ul > li.active:before {
background-color: #d38f00;
}
div.tabdiv > ul > li.active a {
color: #300000;
}
/****************************** 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:single-button {
background-repeat: no-repeat;
background-image: url('/wiki/images/9/97/Vector-Scrollbar.png');
background-origin: margin-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 {
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
Please help if anyone can do this.
@@@@@ **/
/* Button "Top" */
::-webkit-scrollbar-button:vertical:start:increment,
::-webkit-scrollbar-button:vertical:start:increment:active {
background-position: 0 -10px;
}
::-webkit-scrollbar-button:vertical:start:increment:hover {
background-position: -20px -10px;
}
/* Button "Bottom" */
::-webkit-scrollbar-button:vertical:end:decrement,
::-webkit-scrollbar-button:vertical:end:decrement:active {
background-position: -10px -10px;
}
::-webkit-scrollbar-button:vertical:end:decrement:hover {
background-position: -30px -10px;
}
/* Button "LHome" */
::-webkit-scrollbar-button:horizontal:start:increment,
::-webkit-scrollbar-button:horizontal:start:increment:active {
background-position: 0 -30px;
}
::-webkit-scrollbar-button:horizontal:start:increment:hover {
background-position: -20px -30px;
}
/* Button "REnd" */
::-webkit-scrollbar-button:horizontal:end:decrement,
::-webkit-scrollbar-button:horizontal:end:decrement:active {
background-position: -10px -30px;
}
::-webkit-scrollbar-button:horizontal:end:decrement:hover {
background-position: -30px -30px;
}
/****************************** 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);
}