Community Central
Register
Community Central
No edit summary
Tag: sourceedit
(Blanked the page)
Tag: Blanking
 
(32 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* <syntaxhighlight lang="css"> */
 
/* AutoEditDropdown pure CSS implementation */
 
/* http://dev.wikia.com/wiki/AutoEditDropdown */
 
#WikiHeader nav.wikia-menu-button:hover ul,
 
#WikiaMainContent nav.wikia-menu-button .drop:hover ~ ul,
 
#WikiaMainContent nav.wikia-menu-button ul.WikiaMenuElement:hover {
 
min-width: 100%;
 
display: block;
 
}
 
/*
 
.flake {
 
display: none;
 
}
 
.snowfall-flakes {
 
display: none;
 
}
 
*/
 
/* Profile masthead styling */
 
#UserProfileMasthead .masthead-info-lower:before {
 
display: none;
 
}
 
#UserProfileMasthead .masthead-avatar img {
 
border-radius: 12px;
 
border: none;
 
}
 
#UserProfileMasthead .masthead-info {
 
border-bottom-left-radius: 12px;
 
border-bottom-right-radius: 12px;
 
}
 
#UserProfileMasthead .masthead-info hgroup {
 
border-top-left-radius: 12px;
 
border-top-right-radius: 12px;
 
}
 
/* Identify section links when hovering, so I can tell them apart
 
from links that will take me to completely different page */
 
#mw-content-text a[href^="#"] {
 
-webkit-transition: color, background-color .25s;
 
-moz-transition: color, background-color .25s;
 
transition: color, background-color .25s;
 
}
 
#mw-content-text a[href^="#"]:hover {
 
color: #000000;
 
background-color: #99FF66;
 
border-radius: 4px;
 
text-decoration: none;
 
}
 
/* Stylize watched pages */
 
.mw-watched a {
 
box-shadow: -1px -1px 2px #444444;
 
font-weight: normal;
 
padding: 0 2px;
 
margin: 0 2px;
 
border-radius: 8px;
 
}
 
/* Render non-existent categories red */
 
.newcategory {
 
color: #CC2200;
 
}
 
/* Always show Wall Notifications bubble */
 
#WikiaHeader #WallNotifications {
 
visibility: visible;
 
}
 
/* Wikimarks adjustments */
 
#wikimarks .wikimarks-logo {
 
font-weight: normal !important;
 
}
 
/* Get rid of empty space between global header and top of content */
 
#WikiaTopAds {
 
display: none;
 
}
 
/* Toolbar is exactly 25px in height */
 
/* needs 25px padding in body tag for perfect fit */
 
/* Get rid of empty space between toolbar and bottom of content
 
body.mediawiki {
 
padding-bottom: 25px;
 
}
 
*/
 
/* Corporate footer adjustments */
 
#WikiaFooter {
 
padding-top: 10px;
 
}
 
#WikiaFooter section {
 
margin: 0 10px;
 
}
 
#WikiaFooter .header-container h1,
 
#WikiaFooter .header-container a {
 
margin: 19px;
 
}
 
#SPOTLIGHT_FOOTER {
 
padding: 0 19px 19px 19px;
 
}
 
/* Tiny placement adjustment for AjaxRC */
 
.page-Special_WikiActivity #ajaxRefresh {
 
bottom: 60px;
 
position: absolute;
 
right: -10px;
 
width: 100px;
 
}
 
/* Fix tab size for source code */
 
pre, textarea {
 
-webkit-tab-size: 4;
 
-moz-tab-size: 4;
 
tab-size: 4;
 
}
 
.output {
 
background-size: contain;
 
-o-background-size: contain;
 
-webkit-background-size: contain;
 
-moz-background-size: contain;
 
margin: 5px;
 
}
 
/* awful new header */
 
.global-navigation {
 
position:absolute !important;
 
border-bottom:initial !important;
 
background:initial !important;
 
top: 0px !important;
 
}
 
.global-navigation-item {
 
border-bottom: 0px !important;
 
}
 
/* For LastEdited Script */
 
/* Support Mobile */
 
section#lastEdited-diff.modalWrapper {
 
width: 90% !important;
 
margin-left: 5% !important;
 
left: 0% !important;
 
}
 
.lastEdited-diff-changes table {
 
font-size: 13px;
 
line-height: 21px;
 
max-height: calc(100vh - 175px);
 
min-height: 150px;
 
overflow-y: auto;
 
position: relative;
 
word-break: break-all;
 
}
 
/* For QuickDiff Script */
 
#quickdiff-modal > section {
 
overflow-x: auto !important;
 
overflow-y: auto !important;
 
}
 

Latest revision as of 07:59, 18 July 2021