Custom CSS snippets - Libertree/libertree GitHub Wiki

Snippets for the CustomCSS - Field in profile-settings

With CustomCSS you can alter the behavior or display of libertree.

To use any of the snippets copy some or all of the snippets into your CustomCSS field in your account settings.

enlarge pictures in river-view while hovering over it

[NOTE: this is now default behaviour]

.excerpt img:hover {
   max-height: 100%;
   max-width: 640px;
}

change background to a solid color

.bg { background: #cceedd; }

set a maximum height for the chat dropdown (keep the chat input field from dropping below the bottom of the page)

 #chat-window .logs .log .messages { 
max-height: 250px; }