MediaWiki:Common.css: Difference between revisions
From Phidgets Support
No edit summary |
No edit summary |
||
Line 48: | Line 48: | ||
padding:6px; | padding:6px; | ||
} | } | ||
#ca-history { display: none !important; } | |||
<!-- No extra tabs for users who can not edit --> | <!-- No extra tabs for users who can not edit --> | ||
Line 55: | Line 57: | ||
#ca-watch { display: none !important; } | #ca-watch { display: none !important; } | ||
#ca-talk { display: none !important; } | #ca-talk { display: none !important; } | ||
#ca- | #ca-history { display: none !important; } | ||
</style> | </style> | ||
<?php } ?> | <?php } ?> |
Revision as of 16:15, 19 June 2012
/*////////////////////////////////////////////////////////////////////////////////////////////////////////
// Hides the thumbnail magnify link and the "powered by mediawiki" icon.
*/
.magnify {display: none}
#footer-poweredbyico { display: none; }
/*////////////////////////////////////////////////////////////////////////////////////////////////////////
// Makes the level 4 header italic so it looks different from level 3.
*/
h4{
font-style: italic;
}
/*///////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////////////////////////
// The following code enables numberless tables of contents.
// When <div class="nonumtoc"> is used on the table of contents, the ToC will display without numbers.
*/
.nonumtoc .tocnumber { display: none; }
.nonumtoc #toc ul,
.nonumtoc .toc ul {
line-height: 1.5em;
list-style: none;
margin: .3em 0 0;
padding: 0;
}
.nonumtoc #toc ul ul,
.nonumtoc .toc ul ul {
margin: 0 0 0 2em;
}
/*////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////////////////////////////////
// Makes the typical source code div container
*/
div.source {
background-color: #f3f3f3;
/*border-color: #1c9edb;*/
/*Fake border:*/
border-color: #555555;
border-width:2px;
border-style: dashed;
padding:6px;
}
#ca-history { display: none !important; }
<!-- No extra tabs for users who can not edit -->
<?php global $wgUser; if( !$wgUser->isAllowed('edit') || $wgUser->isAnon() ) { ?>
<style type="text/css">
#ca-viewsource { display: none !important; }
#ca-watch { display: none !important; }
#ca-talk { display: none !important; }
#ca-history { display: none !important; }
</style>
<?php } ?>