Community Central
Community Central
No edit summary
Tag: sourceedit
No edit summary
Tag: sourceedit
Line 32: Line 32:
 
width: 1004px;
 
width: 1004px;
 
}
 
}
  +
  +
/** Attempt to correct navpopups awful new white theme **//
  +
a.popupMoreLink {
  +
display: block;
  +
text-align: right;
  +
cursor: pointer;
  +
}
  +
  +
ins.popupDiff {
  +
background: #afe;
  +
}
  +
  +
del.popupDiff {
  +
background: #ffe6e6;
  +
}
  +
  +
#selectionPreview {
  +
/*
  +
overflow: auto;
  +
max-height: 16ex;
  +
*/
  +
border: 2px solid #ddd;
  +
background-color: #eef;
  +
padding: 6px;
  +
}
  +
  +
.navpopup {
  +
border: 1px solid #ffbe20;
  +
background-color: #fffaef;
  +
padding: 5px;
  +
font-size: 11px;
  +
/* opacity: 0.9; */
  +
}
  +
  +
/* Configure Drag bar color */
  +
.popupDrag {
  +
background-color: #ffbe20;
  +
height: 5px;
  +
margin-top: -5px;
  +
margin-bottom: 5px;
  +
}
  +
  +
.popupDragHandle {
  +
cursor: move;
  +
position: relative;
  +
}
  +
  +
/* menu magic - many thanks to [[User:Zocky]]! */
  +
  +
/* popups */
  +
.popup_menu li {
  +
margin: 3px;
  +
}
  +
  +
.popup_menu {
  +
display: none;
  +
position: absolute;
  +
left: 0;
  +
margin: 0;
  +
margin-top: 1em;
  +
line-height: 1.25em;
  +
list-style-type: none;
  +
/* top: 1.6ex; */
  +
z-index: 2;
  +
width: 10em;
  +
background: white;
  +
border: 1px solid grey;
  +
padding: 0.5em !important;
  +
margin-left: -6px;
  +
margin-top: 1em;
  +
border-width: 1px 1px 1px 6px;
  +
}
  +
  +
.popup_menu a {
  +
display: block;
  +
}
  +
  +
.popup_menu_row a {
  +
display: inline;
  +
}
  +
  +
.popup_menu_row {
  +
list-style: none;
  +
padding: 0;
  +
margin: 0;
  +
/* border: 1px solid red; */
  +
}
  +
  +
.popup_drop {
  +
display: inline;
  +
position: relative;
  +
}
  +
  +
.popup_drop:hover .popup_menu,
  +
.popup_drop .popup_menu:hover {
  +
display: inline;
  +
background: white;
  +
padding: 2px;
  +
}
  +
  +
.popup_drop:hover {
  +
background: #ccf;
  +
color: #44f;
  +
}
  +
  +
/* other colours, styles and so on */
  +
.popup_menu a:hover {
  +
background: #ccf;
  +
color: #44f;
  +
}
  +
  +
.popup_mainlink {
  +
font-size: 140%;
  +
font-weight: bold;
  +
}
  +
  +
a.popup_change_title_link {
  +
color: #152;
  +
}
  +
  +
.popup_diff_dates {
  +
font-style: italic;
  +
background: none;
  +
}
  +
  +
.popup_menu_item {
  +
list-style: none;
  +
padding: 0;
  +
margin: 0;
  +
/* border: 1px solid green; */
  +
}
  +
  +
.popup_menu_item a {
  +
display: block;
  +
}
  +
  +
.popup_history_row_even {
  +
background: #eee;
  +
}
  +
  +
.popup_history_date {
  +
font-weight: bold;
  +
font-size: 120%;
  +
}
  +
  +
/* disable interwiki styling */
  +
.popupPreview a.extiw,
  +
.popupPreview a.extiw:active {
  +
color: #36b;
  +
background: none;
  +
padding: 0;
  +
}
  +
  +
.popupPreview a.external {
  +
color: #36b;
  +
}
  +
  +
/* this can be used in the content area to switch off
  +
special external link styling */
  +
.popupPreview .plainlinks a {
  +
background: none !important;
  +
padding: 0 !important;
  +
}
  +
/** End navpopups fix **/

Revision as of 22:13, 8 September 2015

/* CODE ON THIS PAGE WILL LOAD FOR ALL OF WIKIA! Just keep that in mind. */
/* If you're wondering about whether you can use the code on this page - you can! You don't need to ask me, just take what you want and add it to your own global.css file! */

/* Special thanks to User:452 for this! Original taken from http://community.wikia.com/wiki/User:452/global.css?diff=prev&oldid=1343313 */
/* This thing fixes the broken width check in MediaWiki:Wiki-navigation */
.ArticlePreviewInner .WikiHeader li.nav-item a {
  /* Because the width check is broken. */ 
  margin: 0;
  padding: 0;
}

/* killing off must watch videos */
/* By [[User:Lost Labyrinth]] */
#videosModule { display: none !important; }

/* chat tweaks probably stolen from central */
.Chat {line-height:1.2em; word-wrap:break-word;}
.Chat .avatar {display:none;}
.Chat li {padding:2px 3px; min-height:0;}
.Chat .username {display:inline;}
.Chat .time {float:left; margin-right:3px; color:#333;}
.Chat .time:before {content:'[';}
.Chat .time:after {content:']';}
.Chat .inline-alert {text-align:left; padding:2px 3px; font-weight:normal; font-size:13px; line-height:1.2em;}
.Chat .inline-alert:before, .Chat .inline-alert:after {content:none;}
.Chat .continued {top:0; margin-bottom:0;}
.Chat .continued .username {display:inline;}
.Chat .continued .time {display:block;}

/***** Fixes faulty abuse log page width *****/
.WikiaArticle .table-is-wide {
    width: 1004px;
}

/** Attempt to correct navpopups awful new white theme **//
a.popupMoreLink {
  display: block;
  text-align: right;
  cursor: pointer;
}

ins.popupDiff {
  background: #afe;
}

del.popupDiff {
  background: #ffe6e6;
}

#selectionPreview {
  /*
  overflow: auto;
  max-height: 16ex;
  */
  border: 2px solid #ddd;
  background-color: #eef;
  padding: 6px;
}

.navpopup {
  border: 1px solid #ffbe20;
  background-color: #fffaef;
  padding: 5px;
  font-size: 11px;
  /* opacity: 0.9; */
}

/* Configure Drag bar color */
.popupDrag {
  background-color: #ffbe20;
  height: 5px;
  margin-top: -5px;
  margin-bottom: 5px;
}

.popupDragHandle {
  cursor: move;
  position: relative;
}

/* menu magic - many thanks to [[User:Zocky]]! */

/* popups */
.popup_menu li {
  margin: 3px;
}

.popup_menu {
  display: none;
  position: absolute;
  left: 0;
  margin: 0;
  margin-top: 1em;
  line-height: 1.25em;
  list-style-type: none;
  /* top: 1.6ex; */
  z-index: 2;
  width: 10em;
  background: white;
  border: 1px solid grey;
  padding: 0.5em !important;
  margin-left: -6px;
  margin-top: 1em;
  border-width: 1px 1px 1px 6px;
}

.popup_menu a {
  display: block;
}

.popup_menu_row a {
  display: inline;
}

.popup_menu_row {
  list-style: none;
  padding: 0;
  margin: 0;
  /* border: 1px solid red; */
}

.popup_drop {
  display: inline;
  position: relative;
}

.popup_drop:hover .popup_menu,
.popup_drop .popup_menu:hover {
  display: inline;
  background: white;
  padding: 2px;
}

.popup_drop:hover {
  background: #ccf;
  color: #44f;
}

/* other colours, styles and so on */
.popup_menu a:hover {
  background: #ccf;
  color: #44f;
}

.popup_mainlink {
  font-size: 140%;
  font-weight: bold;
}

a.popup_change_title_link {
  color: #152;
}

.popup_diff_dates {
  font-style: italic;
  background: none;
}

.popup_menu_item {
  list-style: none;
  padding: 0;
  margin: 0;
  /* border: 1px solid green; */
}

.popup_menu_item a {
  display: block;
}

.popup_history_row_even {
  background: #eee;
}

.popup_history_date {
  font-weight: bold;
  font-size: 120%;
}

/* disable interwiki styling */
.popupPreview a.extiw,
.popupPreview a.extiw:active {
  color: #36b;
  background: none;
  padding: 0;
}

.popupPreview a.external {
  color: #36b;
}

/* this can be used in the content area to switch off
special external link styling */
.popupPreview .plainlinks a {
  background: none !important;
  padding: 0 !important;
}
/** End navpopups fix **/