Skip to content

Instantly share code, notes, and snippets.

@funkatron
Created December 27, 2010 15:40
Show Gist options
  • Save funkatron/756223 to your computer and use it in GitHub Desktop.
Save funkatron/756223 to your computer and use it in GitHub Desktop.
Disables the "collapsing" of read statuses in the Leopaz theme for Spaz Destkop
/**
* This disables collapsing of read statuses in the Leopaz theme as of Monday, December 27, 2010.
* Other themes may or may not work with this override.
*/
div.timeline-entry.read:not(.ui-selected) {
max-height: inherit;
padding:5px;
}
div.timeline-entry.read:not(.ui-selected) div.user {
padding:5px 5px 0 0;
overflow: visible;
white-space:normal;
}
div.timeline-entry.read:not(.ui-selected) div.user div.user-image {
width: 48px;
height: 48px;
margin: 0 auto 2px;
background-size: 48px 48px;
-webkit-background-size: 48px 48px;
}
div.timeline-entry.read:not(.ui-selected) div.user div.user-screen-name {
display: block;
}
div.timeline-entry.read:not(.ui-selected) div.status {
padding: 5px 0;
}
div.timeline-entry.read:not(.ui-selected) .status-text {
margin-top: auto; /* Show only status text */
margin-bottom:4px;
overflow: normal;
text-overflow: normal;
white-space: normal;
}
div.timeline-entry.read:not(.ui-selected):hover .status-text {
color: #000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment