Commit 61004f59 authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Remove delays from hover effects.

It felt like something is broken, because links were missing.
Then I discovered that the links just don't appear fast enough.

I see no reason to artificially slow users down. I want to scroll
down to the damned method and click view-source as fast as I can.
parent 9bb79ba4
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -128,13 +128,11 @@
      font-size: 0.9em;
      &:hover {
        @include transition(color, 0.2s, linear);
        -webkit-transition-delay: 0.5s;
        color: $docs-link-hover-color; } }
    &:hover {
      a.view-source {
        color: rgba(128, 128, 128, 1);
        @include transition(color, 0.2s, linear);
        -webkit-transition-delay: 0.5s; } }
        @include transition(color, 0.2s, linear); } }
    &.open {
      a.side.expandable {
        @include horizontal-gradient(#ebf3fe, #d9e8fc);
+0 −1
Original line number Diff line number Diff line
@@ -181,7 +181,6 @@
      .deleteComment,
      .vote {
        @include transition(opacity, 0.2s, linear);
        -webkit-transition-delay: 1s;
        opacity: 1; } } }
  .target {
    color: #666;