custom_css - Pistos/diaspora GitHub Wiki

some infos about and snippets for the profile/custom_css_field

changing the height ofthe chat-window for netbooks

#chat_dropdown .incoming .conversation { max-height: 200px; }

inflating pictures in your stream, resizing by mouseover

.content img, .collapsible iframe {
  -webkit-transition:max-width 0.2s ease-in, max-height 0.2s ease-in;
  -moz-transition:max-width 0.2s ease-in, max-height 0.2s ease-in;
  -o-transition:max-width 0.2s ease-in, max-height 0.2s ease-in;
  transition:max-width 0.2s ease-in, max-height 0.2s ease-in;
  max-height: 100px !important;
  max-width: 100px !important;
}
.content img:hover, .collapsible iframe:hover {
  max-height: 100% !important;
  max-width: 100% !important;
}

changing the display-color of podmates

.podmate, .stream_element:hover .from a.podmate, .stream_element .comment:hover .from a.podmate, #preview-result:hover .from a.podmate, #preview-result .comment:hover .from a.podmate {
  color: #458B00;
}

`