MediaWiki:Azure.css: Difference between revisions

MediaWiki interface page
(fix transparent background on dropdowns that listed subpages of subpages)
 
mNo edit summary
Line 5: Line 5:
     text-align: left;
     text-align: left;
}
}
.dropdown .mw-prefixindex-body {
/*
    width: auto; /* override width:0 on mw-prefixindex-body so dropdown lists won't be transparent */
* Override width:0 on div.mw-prefixindex-body so dropdown lists won't be transparent  
* This one needs the overqualification of .dropdown div.mw-* inorder to override the
* original rule without using !important
*/
.dropdown div.mw-prefixindex-body {
    width: auto;
}
}

Revision as of 03:28, 13 September 2018

/* CSS placed here will affect users of the Azure skin */

/* .dropdown class CSS */
.dropdown {
    text-align: left;
}
/* 
 * Override width:0 on div.mw-prefixindex-body so dropdown lists won't be transparent 
 * This one needs the overqualification of .dropdown div.mw-* inorder to override the
 * original rule without using !important
 */
.dropdown div.mw-prefixindex-body {
    width: auto; 
}