From 106f1660c1f3c7702f07610b26c936bee031fd75 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Wed, 5 Nov 2014 01:14:35 +0300 Subject: [PATCH] added viewer background-color transition -- should be less harsh on the eye... Signed-off-by: Alex A. Naanou --- ui (gen4)/index.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ui (gen4)/index.html b/ui (gen4)/index.html index e4f1c2aa..6363eae5 100755 --- a/ui (gen4)/index.html +++ b/ui (gen4)/index.html @@ -37,6 +37,14 @@ } /* basic animation... */ +.viewer:not(.no-transitions) { + -webkit-transition: background-color 0.8s ease; + -moz-transition: background-color 0.8s ease; + -ms-transition: background-color 0.8s ease; + -o-transition: background-color 0.8s ease; + transition: background-color 0.8s ease; +} + .viewer:not(.no-transitions) .ribbon-set:not(.no-transitions) { -webkit-transition: all 0.2s linear, transform 0.2s linear; -moz-transition: all 0.2s linear, transform 0.2s linear;