Browse Source

CSS Fixes

main div conversejs
- left and width: The last 35px at bottom of the page is not clickable
- right: in some case (e.g. frame in div), the div is over the vertical
scrollbar

room-info:
- wrong placement on hover after information fetched on a room
thierrytiti 10 years ago
parent
commit
08c94be1b7
2 changed files with 7 additions and 3 deletions
  1. 2 0
      docs/CHANGES.rst
  2. 5 3
      sass/converse.scss

+ 2 - 0
docs/CHANGES.rst

@@ -11,6 +11,8 @@ Changelog
 * #389 Allow login panel placeholders and roster item 'Name' translations. [gbonvehi]
 * Add placeholder for "Insert a smiley" translation [thierrytiti]
 * Updated French translation [thierrytiti]
+* CSS fix: position and width of the div #conversejs [thierrytiti]
+* CSS fix: room-info bug on hover after room description loaded [thierrytiti]
 
 0.9.3 (2015-05-01)
 ------------------

+ 5 - 3
sass/converse.scss

@@ -46,11 +46,12 @@
   bottom: 0;
   direction: ltr;
   height: $bottom-gutter-height;
-  left: 0;
+  left: auto;
   position: fixed;
-  right: 0;
+  right: 30px;
   z-index: 30;
   display: block;
+  width: auto;
 
   @include box-sizing(border-box);
   *, *:before, *:after {
@@ -856,6 +857,7 @@
 
   div.room-info {
     clear: left;
+	width: 100%;
   }
 
   p.room-info {
@@ -896,7 +898,7 @@
     &:hover {
       background-color: $highlight-color;
       .room-info {
-        display: inline-block;
+        display: block;
         font-size: 14px;
       }
     }