Unverified Commit e92431ba authored by Benjamin Neff's avatar Benjamin Neff Committed by Steffen van Bergerem
Browse files

Remove some unused color-theme overrides

After #7318 $link-color is used by default, no need to override anymore.

closes #7325
parent 9558e747
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@
## Refactor
* Unify link colors [#7318](https://github.com/diaspora/diaspora/pull/7318)
* Increase time to wait before showing the hovercard [#7319](https://github.com/diaspora/diaspora/pull/7319)
* Remove some unused color-theme overrides [#7325](https://github.com/diaspora/diaspora/pull/7325)

## Bug fixes
* Fix path to `bundle` in `script/server` [#7281](https://github.com/diaspora/diaspora/pull/7281)
+0 −13
Original line number Diff line number Diff line
/* Raw CSS */
body {
  a,
  a.tag,
  .btn-link,
  #main_stream .stream-element > .media a.author-name,
  #hovercard h4 a,
  .stream-element .from a.self {
    color: $link-color;

    &:hover, &:focus {
      color: darken($link-color, 10%);
    }
  }

  #publisher_textarea_wrapper > #button_container > span.markdownIndications > a {
    color: fade-out($link-color, 0.4);
  }