Difference between revisions of "MediaWiki:Common.css"

From DDO Compendium
(update for future server status widget)
Line 20: Line 20:
}
}


#toc {  
#toc {
     float: right ;
     float: right;
     border: 1px #ccc solid;
     border: 1px #ccc solid;
     padding: 5px 15px 15px 15px;
     padding: 5px 15px 15px 15px;
Line 74: Line 74:
}
}


/* For the server status widget */
.row.ss-widget-text-center > div {
    display: inline-block;
    float: none;
}


/* Playing with mobile resolutions, should make all tables mobile responsive */
/* Playing with mobile resolutions, should make all tables mobile responsive */
@media  
@media only screen and (max-width: 760px),
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {
(min-device-width: 768px) and (max-device-width: 1024px) {


     table, thead, tbody, th, td, tr {  
     table, thead, tbody, th, td, tr {
         text-align: left;
         text-align: left;
         display: block;  
         display: block;
     }
     }
/* this is the class of all link images for the header of the navigational table */
 
    /* this is the class of all link images for the header of the navigational table */
     #navigational_header_images {
     #navigational_header_images {
         display: none !important;
         display: none !important;

Revision as of 01:45, 1 May 2018

/* CSS placed here will be applied to all skins */
a {
    color: #E9E2BA;
}

a:visited {
    color: #C2B87E;
}

select, table a.external:link, #categoryselectmaster {
    color: #444 !important;
}

a.external:visited {
    color: #777 !important;
}

body, nav {
    overflow-anchor: none !important;
}

#toc {
    float: right;
    border: 1px #ccc solid;
    padding: 5px 15px 15px 15px;
    margin: 5px;
}

/* File history and other tables bg color */
table.wikitable > tr > th, table.wikitable > * > tr > th {
    background-color: rgb(0, 0, 0, 0);
}

.navbar-default {
    background-image: none;
}

.btn-default {
    background-image: none;
}

.navbar-default .navbar-nav > li > a, .navbar-inverse .navbar-nav > li > a {
    border-left: none;
}

#pagehistory li.selected {
    background-color: #000000;
}

#filetoc {
    background-color: #000000;
}

th {
    text-align: center;
}

/* Editing box button text color */
.wikiEditor-ui-buttons {
    color: #000;
}

/* License link in Special:Version */
.mw-version-ext > td > a, div.search-types > ul li a {
    color: #000;
}

.mw-version-ext > td > a:visited, div.search-types > ul li a:visited {
    color: #555 !important;
}

div.search-types > ul li.current a {
    font-weight: bold;
}

/* For the server status widget */
.row.ss-widget-text-center > div {
    display: inline-block;
    float: none;
}

/* Playing with mobile resolutions, should make all tables mobile responsive */
@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {

    table, thead, tbody, th, td, tr {
        text-align: left;
        display: block;
    }

    /* this is the class of all link images for the header of the navigational table */
    #navigational_header_images {
        display: none !important;
    }

    #sidebar {
        display: none !important;
    }
}