Prechádzať zdrojové kódy

ux(tv mode): added 1 second delay animation

Torkel Ödegaard 9 rokov pred
rodič
commit
2164bbd447
1 zmenil súbory, kde vykonal 9 pridanie a 9 odobranie
  1. 9 9
      public/sass/components/_view_states.scss

+ 9 - 9
public/sass/components/_view_states.scss

@@ -59,34 +59,34 @@
   .dashnav-action-icons,
   .dashnav-move-timeframe  {
     opacity: 0;
-    transition: opacity 1.5s ease-in-out;
+    transition: all 1.5s ease-in-out 1s;
   }
 
   // navbar buttons
   .navbar-brand-btn,
   .navbar-inner {
-    border: none;
+    border-color: transparent;
     background: transparent;
-    transition: background 1.5s ease-in-out;
+    transition: all 1.5s ease-in-out 1s;
     .fa {
       opacity: 0;
-      transition: opacity 1.5s ease-in-out;
+      transition: all 1.5s ease-in-out 1s;
     }
   }
 
   .navbar-page-btn {
-    border: none;
-    transform: translate3d(-50px, 0, 0);
+    border-color: transparent;
     background: transparent;
-    transition: transform 1.5s ease-in-out;
+    transform: translate3d(-50px, 0, 0);
+    transition: all 1.5s ease-in-out 1s;
     .icon-gf {
       opacity: 0;
-      transition: opacity 1.5s ease-in-out;
+      transition: all 1.5s ease-in-out 1s;
     }
   }
 
   .gf-timepicker-nav-btn {
     transform: translate3d(40px, 0, 0);
-    transition: transform 1.5s ease-in-out;
+    transition: transform 1.5s ease-in-out 1s;
   }
 }