Created
December 27, 2010 15:40
-
-
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 file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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