Skip to content

Commit

Permalink
Revert "Skins: Fix hard to read link color in CRATE and PLAYLIST page…
Browse files Browse the repository at this point in the history
…s of the library view. Fixes https://bugs.launchpad.net/mixxx/+bug/1744816"

This reverts commit 9f10e47.
  • Loading branch information
esbrandt committed Feb 23, 2018
1 parent 9f10e47 commit 4e53e11
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
4 changes: 0 additions & 4 deletions src/library/crate/cratefeature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,10 +153,6 @@ QString CrateFeature::formatRootViewHtml() const {
html.append("<img src=\"qrc:/images/library/crates_art.png\">");
html.append("</td></tr>");
html.append(QString("<tr><td><a href=\"create\">%1</a>")
//Colorize links in lighter blue, instead of QT default dark blue.
//Links are still different from regular text, but readable on dark/light backgrounds.
//https://bugs.launchpad.net/mixxx/+bug/1744816
html.append(QString("<a style=\"color:#0850D0;\" href=\"create\">%1</a>")
.arg(createCrateLink));
html.append("</td></tr></table>");
return html;
Expand Down
4 changes: 0 additions & 4 deletions src/library/playlistfeature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -248,10 +248,6 @@ QString PlaylistFeature::getRootViewHtml() const {
playlistsSummary4));
html.append("</td></tr>");
html.append(QString("<tr><td><a href=\"create\">%1</a>")
//Colorize links in lighter blue, instead of QT default dark blue.
//Links are still different from regular text, but readable on dark/light backgrounds.
//https://bugs.launchpad.net/mixxx/+bug/1744816
html.append(QString("<a style=\"color:#0850D0;\" href=\"create\">%1</a>")
.arg(createPlaylistLink));
html.append("</td></tr></table>");
return html;
Expand Down

0 comments on commit 4e53e11

Please sign in to comment.