浏览代码

Increase `fade` transition, to work around timing bug

in bootstrap.native.

https://github.com/thednp/bootstrap.native/issues/192
JC Brand 7 年之前
父节点
当前提交
66e6ae2eed
共有 3 个文件被更改,包括 11 次插入0 次删除
  1. 3 0
      css/converse.css
  2. 3 0
      css/inverse.css
  3. 5 0
      sass/_core.scss

+ 3 - 0
css/converse.css

@@ -4911,6 +4911,9 @@ body.reset {
     opacity: 0; }
   100% {
     opacity: 1; } }
+  #conversejs .fade {
+    opacity: 0;
+    transition: opacity 0.20s linear; }
   #conversejs .fade-in {
     opacity: 0;
     /* make things invisible upon start */

+ 3 - 0
css/inverse.css

@@ -4911,6 +4911,9 @@ body.reset {
     opacity: 0; }
   100% {
     opacity: 1; } }
+  #conversejs .fade {
+    opacity: 0;
+    transition: opacity 0.20s linear; }
   #conversejs .fade-in {
     opacity: 0;
     /* make things invisible upon start */

+ 5 - 0
sass/_core.scss

@@ -242,6 +242,11 @@ body.reset {
         100% { opacity: 1 }
     }
 
+    .fade {
+        opacity: 0;
+        transition: opacity 0.20s linear;
+    }
+
     .fade-in {
         @include fade-in;
     }