Difference between revisions of "MediaWiki:Monobook.css"

From CrowdSociety
Jump to: navigation, search
Line 11: Line 11:
 
#siteNotice {
 
#siteNotice {
 
     margin-top: 20px;
 
     margin-top: 20px;
     margin-bottom: -.5em;
+
     margin-bottom: -.2em;
 
}
 
}
 
#mw-dismissable-notice {
 
#mw-dismissable-notice {
Line 31: Line 31:
 
}
 
}
 
div#p-cactions li a {
 
div#p-cactions li a {
     background-color: #77aaff;  /* Light blue-gray inactive tabs F7F9FB */
+
     background-color: #77aaff;  /* now dark blue instead of Light blue-gray inactive tabs which was F7F9FB */
 
}
 
}
 
   
 
   
Line 40: Line 40:
 
}
 
}
 
.ns-0 div#p-cactions li a {
 
.ns-0 div#p-cactions li a {
     background-color: #FBFBFB;  /* Light gray inactive tabs in articles */
+
     background-color: #77aaff;  /* Light gray inactive tabs in articles FBFBFB */
 
}
 
}
 
   
 
   
Line 63: Line 63:
 
   Sets the same padding as the other tabs have. */
 
   Sets the same padding as the other tabs have. */
 
div#p-cactions #ca-addsection a {
 
div#p-cactions #ca-addsection a {
     padding-left: .8em;
+
     padding-left: .2em;
     padding-right: .8em;
+
     padding-right: .2em;
 
}
 
}
 
   
 
   
Line 70: Line 70:
 
div#content blockquote {
 
div#content blockquote {
 
     font-size: 93.75%;  /* equivalent of 15px in 16px default */
 
     font-size: 93.75%;  /* equivalent of 15px in 16px default */
     margin: 1em 1.6em;  /* same indent as an unordered list */
+
     margin: 0.5em 1em;  /* same indent as an unordered list */
 
}
 
}
 
div#content blockquote p {
 
div#content blockquote p {
Line 104: Line 104:
 
.ns-0 #wikiPreview > table#toc,
 
.ns-0 #wikiPreview > table#toc,
 
.ns-0 #bodyContent > table#toc {
 
.ns-0 #bodyContent > table#toc {
     margin-top: .5em;
+
     margin-top: .2em;
 
}
 
}
 
   
 
   
Line 112: Line 112:
 
   monobook/main.css wasn't being used by the print style */
 
   monobook/main.css wasn't being used by the print style */
 
.toccolours {  
 
.toccolours {  
     border: 1px solid #aaa;
+
     border: 1px solid #aaff77; /*former aaa */
     background-color: #f9f9f9;
+
     background-color: #ffffff; /* former f9f9f9 */
     padding: 5px;
+
     padding: 2px;
 
     font-size: 95%;
 
     font-size: 95%;
 
}
 
}

Revision as of 00:16, 25 November 2014

/* Don't display some stuff on the main page */
body.page-Main_Page #deleteconfirm,
body.page-Main_Page #t-cite,
body.page-Main_Page #lastmod,
body.action-view.page-Main_Page #siteSub,
body.action-view.page-Main_Page #contentSub,
body.action-view.page-Main_Page h1.firstHeading {
    display: none !important;
}
 
#siteNotice {
    margin-top: 20px;
    margin-bottom: -.2em;
}
#mw-dismissable-notice {
    background: transparent;
}
 
/* BEGIN LIGHT BLUE SECTION
   Make content area light blue in all namespaces except articles (main namespace). 
   This is done by setting the background color for all #content areas 
   to light blue, and then overriding it back to white for any #content 
   enclosed in a .ns-0 (main namespace). We do the same for the "tab" 
   backgrounds and some other objects. */
 
div#content,
div#p-cactions li a:hover,
div#p-cactions li.selected a,
div#content div.thumb {          /* "Margin" for thumbs, padding for galleries */
    background-color: #ffffff;   /* now white instead of Light blue which was f8fc */
}
div#p-cactions li a {
    background-color: #77aaff;   /* now dark blue instead of Light blue-gray inactive tabs which was F7F9FB */
}
 
.ns-0 div#content,
.ns-0 div#p-cactions li a:hover, .ns-0 div#p-cactions li.selected a, 
.ns-0 div#content div.thumb {
    background-color: white;     /* Set back to white for articles */
}
.ns-0 div#p-cactions li a {
    background-color: #77aaff;   /* Light gray inactive tabs in articles FBFBFB */
}
 
@media print {
    div#content {
        background: white;
    } /* White background on print */
}
 
/* Category lists and diffs transparent instead of white. */
#mw-subcategories table,
#mw-pages table,
table.diff,
td.diff-otitle,
td.diff-ntitle {
    background-color: transparent;
}
 
/* END LIGHT BLUE SECTION */
 
/* Talk page tab "+" / "new section". 
   Sets the same padding as the other tabs have. */
div#p-cactions #ca-addsection a {
    padding-left: .2em;
    padding-right: .2em;
}
 
/* Block quotations */
div#content blockquote {
    font-size: 93.75%;  /* equivalent of 15px in 16px default */
    margin: 0.5em 1em;  /* same indent as an unordered list */
}
div#content blockquote p {
    line-height: inherit;
}
 
/* Display "From Wikipedia, the free encyclopedia" */
#siteSub {
    display: inline;
    font-size: 92%;
}
 
div#footer #lastmod,
div#footer #copyright {
    display: block;
}
 
/* Bold 'edit this page' link to encourage newcomers */
#ca-edit a {
    font-weight: bold !important;
}
 
#pt-login {
    font-weight: bold;
    font-size: 110%;
}
 
p.error {
    font-weight: bold;
}
 
/* TOC margin in articles (and article previews) */
.ns-0 #wikiPreview > table#toc,
.ns-0 #bodyContent > table#toc {
    margin-top: .2em;
}
 
/* Class styles */
 
/* .toccolours added here because version in 
   monobook/main.css wasn't being used by the print style */
.toccolours { 
    border: 1px solid #aaff77; /*former aaa */
    background-color: #ffffff;  /* former f9f9f9 */
    padding: 2px;
    font-size: 95%;
}
 
/* Don't underline links in portlets/specialchars even with pref "Underline links:Always" */
.portlet a,
#editpage-specialchars a {
    text-decoration: none;
}
.portlet a:hover,
#editpage-specialchars a:hover {
    text-decoration: underline;
}
 
/* For positioning icons at top-right, used in Templates
   "Spoken Article" and "Featured Article" */
div.topicon {
    position: absolute; 
    z-index: 10; 
    top: 10px;
    display: block !important;
}
 
/* Position coordinates */
#coordinates {  
    position: absolute;
    z-index: 1;
    border: none;
    background: none;
    right: 0;
    top: 3.7em;
    float: right;
    margin: 0em;
    padding: 0em;
    padding-right: 30px;
    line-height: 1.5em;
    text-align: right;
    text-indent: 0;
    font-size: 85%;
    text-transform: none;
    white-space: nowrap;
}
 
/* FR topicon position */
div.flaggedrevs_short {
    position: absolute;
    z-index: 10;
    top: 10px;
    right: 110px;
    float: none;
    margin-left: 0;
}
 
/* Styling for updated markers on watchlist, history and recent/related changes */
li.mw-changeslist-line-watched,
li.mw-history-line-updated {
    list-style-image: url(//upload.wikimedia.org/wikipedia/commons/f/fa/ChangedBulletMono.png);
}