[gnome-shell/wip/sass: 29/30] theme: Match list row hover transition type of gtk



commit 292e7cacb70205b176baf7ad3e6c2e513007d863
Author: Carlos Soriano <carlos soriano89 gmail com>
Date:   Sat Oct 25 20:58:51 2014 +0200

    theme: Match list row hover transition type of gtk
    
    Currently we animate in both sides, hover on and hover off, and with
    200ms. The downside of that it that it feels sluggish when passing with
    the mouse hovering few items because the on transition is slow.
    
    Match what gtk did for fix this for list rows hover state at
    commit 52e91f1f74ecb943d, animating only on off hover. However,
    gnome-shell doesn't support different kind of transitions for its css,
    that will be lovely to have a easeOutQuad as well here.

 data/theme/gnome-shell.css |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/data/theme/gnome-shell.css b/data/theme/gnome-shell.css
index dbc0bc9..2ab81b2 100644
--- a/data/theme/gnome-shell.css
+++ b/data/theme/gnome-shell.css
@@ -1467,14 +1467,14 @@ StScrollBar {
 .grid-search-result:focus > .overview-icon,
 .grid-search-result:selected > .overview-icon {
   background-color: rgba(238, 238, 236, 0.1);
-  transition-duration: 200ms;
+  transition-duration: 0ms;
   border-image: none;
   background-image: none; }
 
 .app-well-app.app-folder:focus > .overview-icon,
 .app-well-app.app-folder:hover > .overview-icon {
   background-color: rgba(238, 238, 236, 0.1);
-  transition-duration: 200ms;
+  transition-duration: 0ms;
   border-image: none;
   background-image: none; }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]