/* removes the background and white borders around the gangster title */
.userBanner {
font-size: 11px;
background-color: transparent !important;
border: 0 !important;
border-color: rgb(200, 200, 200) !important;
}
/* removes the report button. i'm too nice so never going to need it :P */
.report {
display: none;
}
/* moves the online indicator so it's alinged correctly with the username. decided to hide it for now due to next styling */
.onlineIndicator {
position: relative;
top: 3px;
display: none;
}
/* makes the users name green if they're online. i may not keep this. */
div.online a.username {
color: #08d270 !important;
}
/* moves the edit button to the right */
.signatureControlsAlignment {
float: right;
}
/* moves the post links like edit, trust etc inline with the signature. this could cause an issue if there is no signature and the text goes all the way to the end of the post box on the final line */
.messageMeta {
position: relative;
bottom: 5px !important;
right: 0;
float: right !important
}
.publicControlsSpacing {
display: none;
}
/* pads out the post a tiny amount */
.primaryContent {
padding: 5px !important;
}
/* hides any forums that are collapsed. can still get to the forums from the quick jump menu but makes the view much cleaner without having the header there */
.CategoryStripCollapsed {
display: none;
}
/* the following few hides all the pointless junk at the bottom of the forum on the forum home page */
#boardStats {
display: none;
}
.profilePostList{
display: none;
}
.membersOnline {
display: none;
}
.threadList {
display: none;
}
/* hides the alerts link and watched forums link. both are not needed for me. already have 30 alerts unread */
li.members, li.alerts {
margin-left: -9999px;
}
ul.blockLinksList li:last-child { display: none !important; }
ul.blockLinksList li:nth-child(3n) {
display: none !important;
}
.blockLinksList {
margin-top: 8px !important;
margin-left: 13px !important;
}
#pageDescription {
margin-top: 10px !important;
}
/* corrects the padding of the page links when there is more than 3 numbers, e.g. page 580 now fits in the box correctly */
.PageNav a {
min-width: 14px !important;
padding-left: 3px !important;
padding-right: 3px !important;
}
.PageNavNext, .PageNavPrev {
height: 15px !important;
padding-top: 0 !important;
}
/* removes the replies and views heading as it's not needed */
.sectionHeaders .stats {
display: none !important;
}
.staffOnline li {
display: inline !important;
margin-right: 20px;
}
.staffOnline li + li {
margin-left: 20px;
}
/* makes locked threads alert when in the thread more visible */
dd.lockedAlert {
color: #ff0000 !important;
}
/* removes the nasty big header */
#logoBlock {
display: none;
}
#headerProxy {
height: 52px !important
}
/* adds padding to the quick reply box */
[contenteditable="true"] {
padding: 10px !important
}
.quickReply .messageUserInfo {
min-height: 130px !important;
padding: 5px;
}
/* makes the reply button easier to spot and both buttons nicer */
.submitUnit .button {
background: #fff;
border: 0;
font: inherit;
padding-top: 0;
height: 30px;
margin-top: 10px;
margin-left: 10px;
}
.submitUnit .button.primary {
color: #fff !important;
background: #0e9955 !important;
box-shadow: 0 !important;
}