MediaWiki:Common.css: Difference between revisions

From IMAGE
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
.dropbtn {
.currentversion{
     background-color: #557332;
     background-color: Cornsilk ;
    color: white;
     padding: 8px;
     padding: 8px;
    font-size: 12px;
     border: none;
     border: none;
    cursor: pointer;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-content a {
    color: black;
    padding: 2px 8px;
    text-decoration: none;
    display: block;
}
.dropdown-content a:hover {background-color: #d1a101}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}
}

Revision as of 11:08, 8 May 2016

/* CSS placed here will be applied to all skins */
.currentversion{
    background-color: Cornsilk ;
    padding: 8px;
    border: none;
}