Browse Source

Increase `fade` transition, to work around timing bug

in bootstrap.native.

https://github.com/thednp/bootstrap.native/issues/192
JC Brand 7 years ago
parent
commit
66e6ae2eed
3 changed files with 11 additions and 0 deletions
  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;
     }