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

randompants’s picture

Seems 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.