MediaWiki:Monobook.css: Difference between revisions

From Pikipedia, the Pikmin wiki
Jump to navigation Jump to search
(some style changes to fix breakage after MW update)
m (input fix)
Line 181: Line 181:
     border: 2px inset #0b0 !important;
     border: 2px inset #0b0 !important;
     padding: 0 3px !important;
     padding: 0 3px !important;
    box-sizing: content-box;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
}
}
input[type="text"],
input[type="text"],

Revision as of 17:03, March 4, 2014

/* Don't display some stuff on the main page */
body.page-Main_Page #lastmod, 
body.page-Main_Page #siteSub, 
body.page-Main_Page #contentSub, 
body.page-Main_Page h1.firstHeading {
    display: none !important;
}
body.page-Main_Page #jump-to-nav {
    display: none;
}

.editsimilar {
    background: #cfc;
    border: 2px outset #0b0;
    -webkit-border-radius: 40px 0 / 40px 0;
    -moz-border-radius: 40px 0;
    border-radius: 40px 0;
}

/* edit page */
div.editOptions {
    background: none;
    border: 1px solid #9c9;
}

.mw-editsection {
    float: right;
}

/*Watchlist edit message*/
.usermessage {
    background: #cfc;
    font-weight: bold;
    margin: 20px 0 10px 0;
    padding: 5px 10px;
    vertical-align: middle;
    border: 2px outset #0b0;
    -webkit-border-radius: 15px 0 / 15px 0;
    -moz-border-radius: 15px 0;
    border-radius: 15px 0;
}

li#pt-createaccount {
	text-transform: none;
}

/*Content area*/
#footer {
    border: outset #0b0;
    border-width: 2px 0;
    background: url(/images/9/9d/W80.png);
    background: rgba(255, 255, 255, 0.8);
}
html body.skin-monobook ul {list-style-image: url(/images/7/7a/Bullet.png);}
#toc {
    background: #cfc;
    -webkit-border-radius: 60px 0 40px 0 / 60px 0 40px 0;
    -moz-border-radius: 60px 0 40px 0;
    border-radius: 60px 0 40px 0;
    border: 2px outset #0b0;
}
#toc li {list-style: none;}
body {background: url(/images/3/3f/BG.png) no-repeat right fixed #fff;}
div#content {
    border: 2px outset #0b0 !important;
    -webkit-border-radius: 15px;
    -moz-border-radius: 20px;
    border-radius: 15px;
    background: url(/images/9/9d/W80.png);
    background: rgba(255, 255, 255, 0.8);
}
table, td, table.diff, td.diff-otitle, td.diff-ntitle {background: none;}
pre {background: rgba(249, 249, 249, .7);}
div.thumb {border: none;}
div.tright {
   border: none;
   margin: 5px 0 5px 10px;
}
div.tleft {
   border: none;
   margin: 5px 15px 5px 0;
}
#catlinks {
    border: 2px outset #0b0;
    background: #ccffcc;
    -webkit-border-radius: 15px 0 / 15px 0;
    -moz-border-radius: 15px 0;
    border-radius: 15px 0;
    padding-bottom: 0;
    padding-top: 0;
}

/*Sidebar*/
.portlet {width: 150px;}
.portlet h3 {
    text-transform: uppercase;
    color: #fff;
    background: #050;
    border: 2px outset #0b0;
    padding: 1px 0 3px 10px;
    font-weight: bold;
    display: block;
    -webkit-border-radius: 11px 0 / 11px 0;
    -moz-border-radius: 11px 0;
    border-radius: 11px 0;
}
.portlet h3 label {cursor: auto;}
.pBody {
    background: #cfc;
    border: 2px outset #0b0;
    padding-left: 0;
    margin: 2px 20px 0 5px;
    -webkit-border-radius: 25px 0 / 25px 0;
    -moz-border-radius: 25px 0;
    border-radius: 25px 0;
}
.portlet ul {list-style-type: none;}

/*Search*/
input[type="submit"]:hover,
input[type="button"]:hover {
    background: none;
}
#searchInput {width: 100px;}
#p-search .pBody {padding: 4px 6px 5px 6px;}
#searchGoButton, #mw-searchButton {
    padding: 0 2px;
    -moz-border-radius: 11px 0;
    -webkit-border-radius: 11px 0 / 11px 0;
    border-radius: 11px 0;
}

/*Tabs*/
#p-cactions .pBody:hover {opacity: 1;}
#p-cactions li:hover {opacity: 0.8;}
#p-cactions li {
    border: 2px outset #0b0;
    border-bottom: 1px solid #fff;
    -webkit-border-radius: 10px 0 / 10px 0;
    -moz-border-radius: 10px 0;
    border-radius: 10px 0;
    padding: 0 0 .2em;
}
#p-cactions li a {
    border: none;
    -webkit-border-radius: 10px 0 / 10px 0;
    -moz-border-radius: 10px 0;
    border-radius: 10px 0;
}

/*Hover*/
/*.usermessage:hover,
#toc:hover,
#catlinks:hover {background: none;}
.portlet .pBody:hover,
.portlet h3:hover {
    background: #fff;
    opacity: 0.85;
}
.portlet h3:hover {color: #050;}*/

/*Input boxes*/
input[type="submit"],
input[type="button"],
*.mw-ui-button {
    color: #000;
    cursor: pointer;
    background: #cfc;
    border: 2px outset #0b0;
}
input[type="submit"],
input[type="button"],
input[type="text"],
input[type="password"],
input[type="search"],
input[type="email"],
input.loginText {
    -webkit-border-radius: 15px 0 / 15px 0;
    -moz-border-radius: 15px 0;
    border-radius: 15px 0;
    border: 2px inset #0b0 !important;
    padding: 0 3px !important;
    box-sizing: content-box;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
}
input[type="text"],
input[type="password"],
input[type="search"] {height: 16px;}
textarea {
    border: 2px inset #0b0;
    background: none;
    padding: 0;
    margin-bottom: 3px;
}
div#userloginForm,
div#userlogin {
    background: none;
}

/*Links*/
a,
#p-personal li a,
#p-cactions li a,
#bodyContent a.extiw,
#bodyContent a.external {
    color: #080;
}
a:visited,
#bodyContent a.extiw:visited,
#bodyContent a.external:visited {
    color: #084;
}
a:hover,
#p-personal li a:hover,
#bodyContent a.extiw:hover,
#bodyContent a.external:hover {
    color: #0b0;
}
a:visited:hover,
#bodyContent a.extiw:visited:hover,
#bodyContent a.external:visited:hover {
    color: #0b4;
}
a.new:link,
a.new:visited,
#p-personal li a.new,
#p-cactions .new a,
#p-personal li a.new:visited,
#p-cactions .new a:visited {
    color: #bb0;
}
#bodyContent a.external {background-image: url(/images/4/44/External.png);}
#p-personal li a:hover {background: none;}

#new_edit_page_preview_notice {display: none;}
#wikiPreview > *:first-child {display: block;}
#editform {margin-top: 15px;}

/* Site Notice */
#localNotice {
    margin-bottom: 11px;
}

/* switchable */
.switchabletabs li {
    border: 2px outset #0b0;
    -webkit-border-radius: 10px 0 / 10px 0;
    -moz-border-radius: 10px 0;
    border-radius: 10px 0;
    background: none;
}

/* collapsible */
.collapsible .collapsible-button a { font-weight: bold; }
.collapsible.alt-collapsible .collapsible-button, .collapsible.alt-collapsible .collapsible-button a { color: #ffc; }

/* audio player */
.listenlist {width: auto !important;}
.listenlist p {text-align: left !important;}