-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
collapsed thread icon not showing #22
Comments
So I'm guessing the rule was supposed to hide a bunch of icons which would be otherwise shown in larry theme? But collapsed / expanded icons are visually important. I can't even see that there is a thread available if I don't have a collapsed icon in view. So I separated the rules out like this: .messagelist tr > .threads .listmenu, .messagelist tr > .attachment span.attachment, .messagelist tr > .attachment span.report, .messagelist tr > .priority span.priority, .messagelist tr > .priority span.prio1, .messagelist tr > .priority span.prio2, .messagelist tr > .priority span.prio3, .messagelist tr > .priority span.prio4, .messagelist tr > .priority span.prio5, .messagelist tr > .flag span.flagged, .messagelist tr > .flag span.unflagged, .messagelist tr > .flag span.unflagged:hover, .messagelist tr > .status span.status, .messagelist tr > .status span.msgicon, .messagelist tr > .status span.deleted, .messagelist tr > .status span.unread, .messagelist tr > .status span.unreadchildren, .messagelist tr > .subject span.msgicon, .messagelist tr > .subject span.deleted, .messagelist tr > .subject span.unread, .messagelist tr > .subject span.replied, .messagelist tr > .subject span.forwarded, .messagelist tr > .subject span.unreadchildren {
background: rgba(0, 0, 0, 0) url("images/listicons.png") no-repeat scroll -100px 0;
}
.messagelist tr td div.collapsed {
background: rgba(0, 0, 0, 0) url("images/listicons.png") no-repeat scroll 0 -1137px;
}
.messagelist tr td div.expanded {
background: rgba(0, 0, 0, 0) url("images/listicons.png") no-repeat scroll 0 -1157px;
} |
JohnRDOrazio
changed the title
collapsed icon not showing
collapsed thread icon not showing
Feb 22, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
mabola/styles.css
Line 772 in 478a678
This line is incorrect and the collapsed thread icon is not showing. The correct icon is at position "0px -1136px". I'm not sure why but simply adding a 0 in front of the -100px actually seems to fix it :
The text was updated successfully, but these errors were encountered: