diff --git a/zephyr/static/styles/zephyr.css b/zephyr/static/styles/zephyr.css index 4d7e23bc7a..e380adb803 100644 --- a/zephyr/static/styles/zephyr.css +++ b/zephyr/static/styles/zephyr.css @@ -176,9 +176,7 @@ a:hover code { } #user_presences { - /* Pad so the bullets are visible */ - padding-left: 20px; - + list-style-position: inside; /* Draw the bullets inside our box */ margin-top: 1em; margin-left: 0; overflow-y: hidden; @@ -187,6 +185,12 @@ a:hover code { overflow-y: auto; } +#user_presences li { + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; +} + #user_presences li.user_active { list-style-image: url(/static/images/presence/user-active.png); }