소스 검색

Fix unnecessary scrolling on login/register panes

JC Brand 7 년 전
부모
커밋
2bb6565168
2개의 변경된 파일2개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 2
      css/inverse.css
  2. 1 1
      sass/inverse/_controlbox.scss

+ 1 - 2
css/inverse.css

@@ -2462,8 +2462,7 @@ body {
   #conversejs #controlbox .controlbox-panes {
     background-color: white; }
   #conversejs #controlbox .controlbox-pane {
-    height: -webkit-calc(100% - 63px);
-    height: calc(100% - 63px); }
+    height: auto; }
 
 #conversejs #converse-roster {
   text-align: left;

+ 1 - 1
sass/inverse/_controlbox.scss

@@ -97,7 +97,7 @@
             background-color: white;
         }
         .controlbox-pane {
-            @include calc(height, '100% - #{$controlbox-head-height}');
+            height: auto;
         }
     }
 }