Difference between revisions of "MediaWiki:Vector.css"

From Flashlight Wiki
Jump to navigation Jump to search
 
(17 intermediate revisions by the same user not shown)
Line 3: Line 3:
page links but has no effect on sidebar links */
page links but has no effect on sidebar links */


div#mw-panel div.portal div.body ul li a:link {
    color: #006600; /* dark green */
}
div#mw-panel div.portal div.body ul li a:visited {
div#mw-panel div.portal div.body ul li a:visited {
color: #996633; /* brown */
    color: #996633; /* brown */
}
div#mw-panel div.portal div.body ul li a:link {
color: #006600; /* dark green */
}
}


/* Also need to pick up the Read/Edit/View history tabs */
/* Also need to pick up the Read/Edit/View history tabs */
div#mw-head div.vectorTabs  ul li a:visited {
div.vectorTabs li a:link {
color: #996633; /* brown */
    color: #006600; /* dark green */
}
div.vectorTabs  li a:visited {
    color: #996633; /* brown */
}
div.vectorTabs  li.new a:link {
    color: #cc2200; /* red */
}
div.vectorTabs  li.new a:visited {
    color: #a55858; /* light red */
}
/* force the display of the contents of the section */
#p-googleadsense  .body {
        display:block !important;
}
/* Option 1: hide the header  */
#p-googleadsense h3 {
        display:block;
}
}
div#mw-head div.vectorTabs ul li a:link {
/* Option 2: just hide the arrow in the header */
color: #006600; /* dark green */
#p-googleadsense h3 {
        background:none !important;
}
}
li#ca-talk a.new {
    color: #ba0000; !important}                        /* red */
li#ca-talk a.new:visited {
    color: #660000; !important}                        /* dark red*/

Latest revision as of 17:46, 5 April 2014

/* CSS placed here will affect users of the Vector skin */
/* This is in addition to css in MediaWiki:Common.css which affects 
page links but has no effect on sidebar links */

div#mw-panel div.portal div.body ul li a:link {
    color: #006600; /* dark green */
}
div#mw-panel div.portal div.body ul li a:visited {
    color: #996633; /* brown */
}

/* Also need to pick up the Read/Edit/View history tabs */
div.vectorTabs li a:link {
    color: #006600; /* dark green */
}
div.vectorTabs  li a:visited {
    color: #996633; /* brown */
}
div.vectorTabs  li.new a:link {
    color: #cc2200; /* red */
}
div.vectorTabs  li.new a:visited {
    color: #a55858; /* light red */
}
/* force the display of the contents of the section */
#p-googleadsense  .body {
        display:block !important;
}
/* Option 1: hide the header   */
#p-googleadsense h3 {
        display:block;
}
/* Option 2: just hide the arrow in the header */
#p-googleadsense h3 {
        background:none !important;
}