Soldato
Few updates to my white theme to tidy things up and remove last remnants of blue from login/obscure dialogues.
I edited lots of the xen theme, took the logo from Scottland's Custom Colours.@mortals I like that a lot, which style do I add to get that view, I have most of them installed but none look like that - I'm guessing I need to tweak one?
I edited lots of the xen theme, took the logo from Scottland's Custom Colours.
Merged some of the css to cleanup. (lost structure of overrides so will post full code)
Here is the full code:
]
@marc2003 that weird bbcode editor background should be fixed now.
Just noticed links within posts don't seem to have any special formatting or difference to show they are links
To add underline:
Code:.messageText a { text-decoration: underline !important; }
Only thing for me is the report etc. buttons overlapping text for users with no sigs with your padding code.
/* 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 */
.signature, .signatureDivider {
position: relative;
top: 26px;
}
.messageMeta {
position: relative;
bottom: 5px !important;
right: 0;
float: right !important;
max-width: 350px;
}
/*
.publicControlsSpacing {
display: none;
}
*/
/* makes the reply button easier to spot and all buttons nicer */
.submitUnit .button, .buttonContainer .button {
background: #fff;
border: 0;
font: inherit;
padding-top: 0;
height: 35px;
margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.buttonContainer .button.primary, .submitUnit .button.primary {
color: #fff !important;
background: #0e9955 !important;
}
#QuickSearch .button {
margin-top: 0;
}
#QuickSearch .primary.button {
width: 100px !important;
}
#QuickSearch .moreOptions.button {
width: 90px !important;
position: relative;
left: 10px;
}
#QuickSearch .moreOptions.button {
padding-top: 7px;
}
#QuickSearch .PopupControl.button {
position: relative;
top: 7px;
background-color: #373f44 !important;
border: 0 !important;
}
try the below. i am pretty sure this has solved it. you just now have a slightly bigger gap above the signature but it's barely noticeable. make sure to remove or comment out publiccontrolspacing
Code:/* 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 */ .signature, .signatureDivider { position: relative; top: 26px; } .messageMeta { position: relative; bottom: 5px !important; right: 0; float: right !important; max-width: 350px; } /* .publicControlsSpacing { display: none; } */
also with the recent updates to the buttons it messes the quick search and quick reply buttons a bit. below should solve it.
Code:/* makes the reply button easier to spot and all buttons nicer */ .submitUnit .button, .buttonContainer .button { background: #fff; border: 0; font: inherit; padding-top: 0; height: 35px; margin-top: 10px; margin-left: 10px; margin-bottom: 10px; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .buttonContainer .button.primary, .submitUnit .button.primary { color: #fff !important; background: #0e9955 !important; } #QuickSearch .button { margin-top: 0; } #QuickSearch .primary.button { width: 100px !important; } #QuickSearch .moreOptions.button { width: 90px !important; position: relative; left: 10px; } #QuickSearch .moreOptions.button { padding-top: 7px; } #QuickSearch .PopupControl.button { position: relative; top: 7px; background-color: #373f44 !important; border: 0 !important; }
I agree, went back to my icons, there will no more changing anything until something breaks now, promise
ol.discussionListItems li.discussionListItem:nth-child(odd) {
background-color: #333b40;
border-left: 1px solid #373f44;
border-right: 1px solid #373f44;
}
ol.discussionListItems li.discussionListItem:nth-child(even) {
background-color: #2f353b;
border-left: 1px solid #373f44;
border-right: 1px solid #373f44;
}
.discussionListItem .posterAvatar, .discussionListItem .stats {
background-color: inherit;
border-left: 1px solid #373f44;
border-right: 1px solid #373f44;
}
Not as far as I know, would be great though wouldn't it? endless possibilities!
What about Tampermonkey or is that just css? never really looked at it.
https://chrome.google.com/webstore/...or-web/poakhlngfciodnhlhhgnaaelnpjljija?hl=enanyone know if there's an extension similar to stylish that works for javascript/jquery instead?