Browse Source

Fixed room join form styling.

- list of rooms dropped off the controlbox
JC Brand 12 years ago
parent
commit
e7debe0188
2 changed files with 14 additions and 14 deletions
  1. 14 12
      converse.css
  2. 0 2
      converse.js

+ 14 - 12
converse.css

@@ -498,11 +498,6 @@ a.configure-chatroom-button {
     margin-top: 0.5em;
     margin-top: 0.5em;
 }
 }
 
 
-#available-chatrooms {
-    height: 183px;
-    overflow-y: auto;
-}
-
 #available-chatrooms dd {
 #available-chatrooms dd {
     overflow-x: hidden;
     overflow-x: hidden;
     text-overflow: ellipsis;
     text-overflow: ellipsis;
@@ -517,7 +512,7 @@ a.configure-chatroom-button {
     font-size: 13px;
     font-size: 13px;
     color: #666;
     color: #666;
     border: none;
     border: none;
-    padding: 0.3em 0.5em 0.3em 0.5em;
+    padding: 0em 0em 0.3em 0.5em;
     text-shadow: 0 1px 0 rgba(250, 250, 250, 1);
     text-shadow: 0 1px 0 rgba(250, 250, 250, 1);
 }
 }
 
 
@@ -530,7 +525,7 @@ dd.available-chatroom,
     font-weight: bold;
     font-weight: bold;
     border: none;
     border: none;
     display: block;
     display: block;
-    padding: 0 0.5em 0 0.5em;
+    padding: 0 0em 0 0.5em;
     color: #666;
     color: #666;
     text-shadow: 0 1px 0 rgba(250, 250, 250, 1);
     text-shadow: 0 1px 0 rgba(250, 250, 250, 1);
 }
 }
@@ -546,6 +541,10 @@ li.room-info {
     margin-left: 5px;
     margin-left: 5px;
 }
 }
 
 
+div.room-info {
+    clear: left;
+}
+
 p.room-info {
 p.room-info {
     margin: 0;
     margin: 0;
     padding: 0;
     padding: 0;
@@ -556,13 +555,13 @@ p.room-info {
 a.room-info {
 a.room-info {
     background: url('images/information.png') no-repeat right top;
     background: url('images/information.png') no-repeat right top;
     width: 22px;
     width: 22px;
-    height: 22px;
     float: right;
     float: right;
     display: none;
     display: none;
+    clear: right;
 }
 }
 
 
 a.open-room {
 a.open-room {
-    display: inline-block;    
+    float: left;
     white-space: nowrap;
     white-space: nowrap;
     text-overflow: ellipsis;
     text-overflow: ellipsis;
     overflow-x: hidden;
     overflow-x: hidden;
@@ -667,13 +666,12 @@ form.set-xmpp-status {
 
 
 form.add-chatroom {
 form.add-chatroom {
     background: none;
     background: none;
-    padding: 0.5em;
+    padding: 3px;
 }
 }
 
 
 form.add-chatroom input[type=text] {
 form.add-chatroom input[type=text] {
-    width: 172px;
+    width: 95%;
     margin: 3px;
     margin: 3px;
-    padding: 1px;
 }
 }
 
 
 form.add-chatroom input[type=button],
 form.add-chatroom input[type=button],
@@ -748,6 +746,10 @@ div#settings {
     border-bottom-left-radius: 4px;
     border-bottom-left-radius: 4px;
 }
 }
 
 
+div#chatrooms {
+    overflow-y: auto;
+}
+
 form.sendXMPPMessage {
 form.sendXMPPMessage {
     background: white;
     background: white;
     border: 1px solid #999;
     border: 1px solid #999;

+ 0 - 2
converse.js

@@ -751,11 +751,9 @@
 
 
         template: _.template(
         template: _.template(
             '<form class="add-chatroom" action="" method="post">'+
             '<form class="add-chatroom" action="" method="post">'+
-                '<legend>'+
                 '<input type="text" name="chatroom" class="new-chatroom-name" placeholder="Room name"/>'+
                 '<input type="text" name="chatroom" class="new-chatroom-name" placeholder="Room name"/>'+
                 '<input type="text" name="nick" class="new-chatroom-nick" placeholder="Nickname"/>'+
                 '<input type="text" name="nick" class="new-chatroom-nick" placeholder="Nickname"/>'+
                 '<input type="{{ server_input_type }}" name="server" class="new-chatroom-server" placeholder="Server"/>'+
                 '<input type="{{ server_input_type }}" name="server" class="new-chatroom-server" placeholder="Server"/>'+
-                '</legend>'+
                 '<input type="submit" name="join" value="Join"/>'+
                 '<input type="submit" name="join" value="Join"/>'+
                 '<input type="button" name="show" id="show-rooms" value="Show rooms"/>'+
                 '<input type="button" name="show" id="show-rooms" value="Show rooms"/>'+
             '</form>'+
             '</form>'+