diff --git a/src/WebInterface.cpp b/src/WebInterface.cpp index c393a85d123798ca5f2907247bfa73d0f3d6e14e..ecbb734428e2fcf4f52a1de3c06b3f0fb3da04e1 100644 --- a/src/WebInterface.cpp +++ b/src/WebInterface.cpp @@ -22,6 +22,7 @@ #include "ui/PlayerInterface.h" #include #include +#include struct WebInterface::internal { @@ -33,6 +34,7 @@ WebInterface::WebInterface(const Wt::WEnvironment& env) : Wt::WApplication(env) { priv_int = new internal; this->useStyleSheet(Wt::WLink("/resources/font-awesome/css/font-awesome.min.css")); + setTheme(new Wt::WBootstrapTheme()); setTitle("Arbitrateor - Audio Jukebox"); enableUpdates(true); priv_int->playerUI = new PlayerInterface(this); diff --git a/src/ui/PlayerInterface.cpp b/src/ui/PlayerInterface.cpp index 33aa2b093d20c7c4a6d8b289dab2d01057d2fcab..b04abe29d8255ff568cac7224ce3d24dc35977b3 100644 --- a/src/ui/PlayerInterface.cpp +++ b/src/ui/PlayerInterface.cpp @@ -38,7 +38,6 @@ PlayerInterface::PlayerInterface(WebInterface* app) playControlWidget->setLayout(playControlLayout); currentTrackProgress = new Wt::WProgressBar(); - currentTrackProgress->decorationStyle().setBackgroundColor(Wt::WColor("#B20A5E")); currentTrackProgress->setFormat(""); trackProgress = new Wt::WTimer(); trackProgress->setInterval(1000);