Active
Project:
Sky
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
5 Jul 2011 at 21:26 UTC
Updated:
6 Jul 2011 at 19:42 UTC
Toolbar and Contextual Links use CSS sprites, those look wierd (in my oppinion) with animated transitions.
Maybe disable them for those special cases or is it intended to look as it looks?
.contextual-links-trigger, .toolbar-toggle-processed {
-webkit-transition: 0;
-moz-transition: 0;
-o-transition: 0;
transition: 0;
}
Comments
Comment #1
randompants commentedSeems to me that it would be better to have the transitions enabled by adding a CSS class for the transitions you want, but leave the base tag style free of them. On a site I've recently been working on, I commented those out of the CSS, as the sprites I'm using don't call for a transition. Having those be opt-in would be better in my opinion.