Sticky Thread Enhancement

Sticky Thread Enhancement v1

No permission to download
Great enhancements for the thread presentation! (y)

I found one thing that breaks the design and that is when a thread is marked for moderation (see picture).

View attachment 36070

I'm even embarrassed to ask, I tried to test this by putting a dummy account on my test server on moderation but can't find the setting so I can test this. How is this done? :LOL:

Edit: Jake guided me to where it was. Thanks again Jake.
 
Great enhancements for the thread presentation! (y)

I found one thing that breaks the design and that is when a thread is marked for moderation (see picture).

View attachment 36070

Add the following in EXTRA.CSS

Code:
.discussionList .discussionListItem.moderated .listBlock {
    background: url("@imagePath/xenforo/gradients/breadcrumb-grad.png") repeat-x scroll center bottom #F6F6F6 !important;
}
 
I have to use the standard or it doesn't work with the stickies.

I think this may be because your style octane sticky code is overriding any other css you put into it. If memory recalls I'm sure forsaken styled the stickies so chances are this is probably the cause of the issue you may have.
 
What about for Flexile Dark?

My modified code:

HTML:
/*STANDARD THREAD LISTING ENHANCEMENTS*/
 
.discussionListItem, .memberListItem {
    background: url("styles/nadlerzforum/darkpostbgv4.png") repeat-x scroll center bottom #2a2a2a !important;
    border: 1px solid #1E1E1E !important;
    border-radius: 3px 3px 3px 3px;
    margin: 5px 0;
}
 
.discussionListItem .stats dl {
    border-left: 1px solid #1E1E1E !important;
    border-right: 1px solid #1E1E1E !important;
}
 
.discussionListItem .posterAvatar, .discussionListItem .stats {
    background: url("styles/nadlerzforum/darkpostbgv4.png") repeat-x scroll center bottom #2a2a2a !important;
}
 
.discussionListItem .avatar img, .discussionListItem .avatar .img, .discussionListItem .avatarCropper {
    border: 1px solid #1E1E1E !important;
}
.discussionListItem.InlineModChecked .posterAvatar, .discussionListItem.InlineModChecked .stats {
  background: url("styles/nadlerzforum/darkpostbgv4.png") repeat-x scroll center top #2a2a2a !important;
}
 
/*STANDARD THREAD LISTING ENHANCEMENTS*/
 
What about for Flexile Dark?

My modified code:

HTML:
/*STANDARD THREAD LISTING ENHANCEMENTS*/

.discussionListItem, .memberListItem {
    background: url("styles/nadlerzforum/darkpostbgv4.png") repeat-x scroll center bottom #2a2a2a !important;
    border: 1px solid #1E1E1E !important;
    border-radius: 3px 3px 3px 3px;
    margin: 5px 0;
}

.discussionListItem .stats dl {
    border-left: 1px solid #1E1E1E !important;
    border-right: 1px solid #1E1E1E !important;
}

.discussionListItem .posterAvatar, .discussionListItem .stats {
    background: url("styles/nadlerzforum/darkpostbgv4.png") repeat-x scroll center bottom #2a2a2a !important;
}

.discussionListItem .avatar img, .discussionListItem .avatar .img, .discussionListItem .avatarCropper {
    border: 1px solid #1E1E1E !important;
}
.discussionListItem.InlineModChecked .posterAvatar, .discussionListItem.InlineModChecked .stats {
  background: url("styles/nadlerzforum/darkpostbgv4.png") repeat-x scroll center top #2a2a2a !important;
}

/*STANDARD THREAD LISTING ENHANCEMENTS*/
Yeah I would like that too
 
Top Bottom