summary refs log tree commit diff
path: root/webclient/app.css
diff options
context:
space:
mode:
authorEmmanuel ROHEE <erohee@amdocs.com>2014-09-12 16:46:20 +0200
committerEmmanuel ROHEE <erohee@amdocs.com>2014-09-12 16:46:20 +0200
commita2cd942a951d1f8cba4fda1b38ec29171253ab03 (patch)
tree3d25ddf25a64e9f22e081c1b132c332fe6e451d4 /webclient/app.css
parentSome words about glare (diff)
downloadsynapse-a2cd942a951d1f8cba4fda1b38ec29171253ab03.tar.xz
Fixed public room name and users count alignement
Put data into a table to ease layout and manage long strings
Diffstat (limited to 'webclient/app.css')
-rwxr-xr-xwebclient/app.css32
1 files changed, 22 insertions, 10 deletions
diff --git a/webclient/app.css b/webclient/app.css
index 1b918f59e2..a277bd2a59 100755
--- a/webclient/app.css
+++ b/webclient/app.css
@@ -268,26 +268,38 @@ a:active  { color: #000; }
     font-weight: bold;
 }
 
-.publicRoomEntry {
+.publicTable {
     max-width: 480px;
-    margin-bottom: 5px;
-    border-bottom: 1px #ddd solid;
+    width: 100%;
+    border-collapse: collapse;
+}
+.publicTable tr {
+    width: 100%;
+}
+.publicTable td {
+    vertical-align: text-top;
+    overflow: hidden;
+    white-space: nowrap;
+    text-overflow: ellipsis;
+}
+
+.publicRoomEntry {
+    max-width: 430px;
 }
 
 .publicRoomJoinedUsers {
-    float: right;
+    width: 5em;
+    text-align: right;
+    font-size: 12px;
+    color: #888;
 }
 
 .publicRoomTopic {
     color: #888;
     font-size: 12px;
-    padding-right: 5px;
-    width: 15em;
-    float: right;
-    text-align: right;
     overflow: hidden;
-    white-space: nowrap;
-    text-overflow: ellipsis;
+    padding-bottom: 5px;
+    border-bottom: 1px #ddd solid;
 }
 
 #roomName {