From e29c55a8dc26cb42e8f4d5852ca6155885707b24 Mon Sep 17 00:00:00 2001 From: Hannah von Reth Date: Wed, 12 Feb 2025 17:25:02 +0100 Subject: [PATCH] Remove monochrome icons --- src/gui/application.cpp | 3 -- src/gui/generalsettings.cpp | 10 ----- src/gui/generalsettings.ui | 36 +++++++----------- src/libsync/configfile.cpp | 18 --------- src/libsync/configfile.h | 3 -- src/libsync/theme.cpp | 38 ++----------------- src/libsync/theme.h | 8 ---- src/resources/core_theme.qrc | 36 ++++++------------ src/resources/resources.cpp | 12 ------ src/resources/resources.h | 4 -- ...-light-plain-monochrom-state-checkmark.svg | 11 ------ ...light-plain-monochrom-state-downloaded.svg | 11 ------ .../ui-light-plain-monochrom-state-error.svg | 11 ------ .../ui-light-plain-monochrom-state-info.svg | 11 ------ ...ui-light-plain-monochrom-state-offline.svg | 11 ------ .../ui-light-plain-monochrom-state-pause.svg | 11 ------ .../ui-light-plain-monochrom-state-sync.svg | 11 ------ ...ui-light-plain-monochrom-state-warning.svg | 11 ------ .../ui-light-plain-color-state-checkmark.svg | 12 ------ .../ui-light-plain-color-state-error.svg | 12 ------ .../ui-light-plain-color-state-info.svg | 12 ------ .../ui-light-plain-color-state-offline.svg | 12 ------ .../ui-light-plain-color-state-pause.svg | 12 ------ .../ui-light-plain-color-state-sync.svg | 12 ------ .../ui-dark-plain-color-state-checkmark.svg | 13 ------- .../dark/ui-dark-plain-color-state-error.svg | 12 ------ .../dark/ui-dark-plain-color-state-info.svg | 12 ------ .../ui-dark-plain-color-state-offline.svg | 12 ------ .../dark/ui-dark-plain-color-state-pause.svg | 12 ------ .../dark/ui-dark-plain-color-state-sync.svg | 12 ------ ...i-dark-plain-monochrom-state-checkmark.svg | 11 ------ .../ui-dark-plain-monochrom-state-error.svg | 11 ------ .../ui-dark-plain-monochrom-state-info.svg | 11 ------ .../ui-dark-plain-monochrom-state-offline.svg | 11 ------ .../ui-dark-plain-monochrom-state-pause.svg | 11 ------ .../ui-dark-plain-monochrom-state-sync.svg | 11 ------ 36 files changed, 30 insertions(+), 437 deletions(-) delete mode 100644 src/resources/theme/black/ui-light-plain-monochrom-state-checkmark.svg delete mode 100644 src/resources/theme/black/ui-light-plain-monochrom-state-downloaded.svg delete mode 100644 src/resources/theme/black/ui-light-plain-monochrom-state-error.svg delete mode 100644 src/resources/theme/black/ui-light-plain-monochrom-state-info.svg delete mode 100644 src/resources/theme/black/ui-light-plain-monochrom-state-offline.svg delete mode 100644 src/resources/theme/black/ui-light-plain-monochrom-state-pause.svg delete mode 100644 src/resources/theme/black/ui-light-plain-monochrom-state-sync.svg delete mode 100644 src/resources/theme/black/ui-light-plain-monochrom-state-warning.svg delete mode 100644 src/resources/theme/colored/ui-light-plain-color-state-checkmark.svg delete mode 100644 src/resources/theme/colored/ui-light-plain-color-state-error.svg delete mode 100644 src/resources/theme/colored/ui-light-plain-color-state-info.svg delete mode 100644 src/resources/theme/colored/ui-light-plain-color-state-offline.svg delete mode 100644 src/resources/theme/colored/ui-light-plain-color-state-pause.svg delete mode 100644 src/resources/theme/colored/ui-light-plain-color-state-sync.svg delete mode 100644 src/resources/theme/dark/ui-dark-plain-color-state-checkmark.svg delete mode 100644 src/resources/theme/dark/ui-dark-plain-color-state-error.svg delete mode 100644 src/resources/theme/dark/ui-dark-plain-color-state-info.svg delete mode 100644 src/resources/theme/dark/ui-dark-plain-color-state-offline.svg delete mode 100644 src/resources/theme/dark/ui-dark-plain-color-state-pause.svg delete mode 100644 src/resources/theme/dark/ui-dark-plain-color-state-sync.svg delete mode 100644 src/resources/theme/white/ui-dark-plain-monochrom-state-checkmark.svg delete mode 100644 src/resources/theme/white/ui-dark-plain-monochrom-state-error.svg delete mode 100644 src/resources/theme/white/ui-dark-plain-monochrom-state-info.svg delete mode 100644 src/resources/theme/white/ui-dark-plain-monochrom-state-offline.svg delete mode 100644 src/resources/theme/white/ui-dark-plain-monochrom-state-pause.svg delete mode 100644 src/resources/theme/white/ui-dark-plain-monochrom-state-sync.svg diff --git a/src/gui/application.cpp b/src/gui/application.cpp index e0627166c9..05f625ef96 100644 --- a/src/gui/application.cpp +++ b/src/gui/application.cpp @@ -85,9 +85,6 @@ Application::Application(Platform *platform, const QString &displayLanguage, boo qApp->setQuitOnLastWindowClosed(false); - Theme::instance()->setSystrayUseMonoIcons(cfg.monoIcons()); - connect(Theme::instance(), &Theme::systrayUseMonoIconsChanged, this, &Application::slotUseMonoIconsChanged); - // Setting up the gui class will allow tray notifications for the // setup that follows, like folder setup _gui = new ownCloudGui(this); diff --git a/src/gui/generalsettings.cpp b/src/gui/generalsettings.cpp index 0eb2dad757..e28c4a9900 100644 --- a/src/gui/generalsettings.cpp +++ b/src/gui/generalsettings.cpp @@ -43,7 +43,6 @@ GeneralSettings::GeneralSettings(QWidget *parent) loadMiscSettings(); // misc - connect(_ui->monoIconsCheckBox, &QAbstractButton::toggled, this, &GeneralSettings::saveMiscSettings); connect(_ui->crashreporterCheckBox, &QAbstractButton::toggled, this, &GeneralSettings::saveMiscSettings); connect(_ui->languageDropdown, QOverload::of(&QComboBox::activated), this, [this]() { @@ -69,10 +68,6 @@ GeneralSettings::GeneralSettings(QWidget *parent) Q_EMIT syncOptionsChanged(); }); - // OEM themes are not obliged to ship mono icons, so there - // is no point in offering an option - _ui->monoIconsCheckBox->setVisible(Resources::hasMonoTheme()); - connect(_ui->ignoredFilesButton, &QAbstractButton::clicked, this, &GeneralSettings::slotIgnoreFilesEditor); connect(_ui->logSettingsButton, &QPushButton::clicked, this, [] { // only access occApp after things are set up @@ -91,10 +86,8 @@ void GeneralSettings::loadMiscSettings() { QScopedValueRollback scope(_currentlyLoading, true); ConfigFile cfgFile; - _ui->monoIconsCheckBox->setChecked(cfgFile.monoIcons()); _ui->desktopNotificationsCheckBox->setChecked(cfgFile.optionalDesktopNotifications()); _ui->crashreporterCheckBox->setChecked(cfgFile.crashReporter()); - _ui->monoIconsCheckBox->setChecked(cfgFile.monoIcons()); // the dropdown has to be populated before we can can pick an entry below based on the stored setting loadLanguageNamesIntoDropdown(); @@ -114,9 +107,6 @@ void GeneralSettings::saveMiscSettings() if (_currentlyLoading) return; ConfigFile cfgFile; - bool isChecked = _ui->monoIconsCheckBox->isChecked(); - cfgFile.setMonoIcons(isChecked); - Theme::instance()->setSystrayUseMonoIcons(isChecked); cfgFile.setCrashReporter(_ui->crashreporterCheckBox->isChecked()); // the first entry, identified by index 0, means "use default", which is a special case handled below diff --git a/src/gui/generalsettings.ui b/src/gui/generalsettings.ui index 876a9599d5..ace8ed2cf1 100644 --- a/src/gui/generalsettings.ui +++ b/src/gui/generalsettings.ui @@ -36,27 +36,6 @@ - - - Use Monochrome Icons in the system tray - - - - - - - Show Desktop Notifications - - - - - - - Start on Login - - - - @@ -95,6 +74,20 @@ + + + + Show Desktop Notifications + + + + + + + Start on Login + + + @@ -253,7 +246,6 @@ autostartCheckBox desktopNotificationsCheckBox - monoIconsCheckBox languageDropdown syncHiddenFilesCheckBox crashreporterCheckBox diff --git a/src/libsync/configfile.cpp b/src/libsync/configfile.cpp index 3482f4d878..ee13168348 100644 --- a/src/libsync/configfile.cpp +++ b/src/libsync/configfile.cpp @@ -54,7 +54,6 @@ const QString fullLocalDiscoveryIntervalC() { return QStringLiteral("fullLocalDiscoveryInterval"); } -const QString monoIconsC() { return QStringLiteral("monoIcons"); } const QString promptDeleteC() { return QStringLiteral("promptDeleteAllFiles"); } const QString crashReporterC() { return QStringLiteral("crashReporter"); } const QString optionalDesktopNoficationsC() @@ -693,23 +692,6 @@ void ConfigFile::setPromptDeleteFiles(bool promptDeleteFiles) settings.setValue(promptDeleteC(), promptDeleteFiles); } -bool ConfigFile::monoIcons() const -{ - auto settings = makeQSettings(); - bool monoDefault = false; // On Mac we want bw by default -#ifdef Q_OS_MAC - // OEM themes are not obliged to ship mono icons - monoDefault = Resources::isVanillaTheme(); -#endif - return settings.value(monoIconsC(), monoDefault).toBool(); -} - -void ConfigFile::setMonoIcons(bool useMonoIcons) -{ - auto settings = makeQSettings(); - settings.setValue(monoIconsC(), useMonoIcons); -} - bool ConfigFile::crashReporter() const { auto settings = makeQSettings(); diff --git a/src/libsync/configfile.h b/src/libsync/configfile.h index d3f695f3db..d21e568483 100644 --- a/src/libsync/configfile.h +++ b/src/libsync/configfile.h @@ -85,9 +85,6 @@ class OPENCLOUD_SYNC_EXPORT ConfigFile */ std::chrono::milliseconds fullLocalDiscoveryInterval() const; - bool monoIcons() const; - void setMonoIcons(bool); - bool promptDeleteFiles() const; void setPromptDeleteFiles(bool promptDeleteFiles); diff --git a/src/libsync/theme.cpp b/src/libsync/theme.cpp index fb08bb0443..97da4f6f12 100644 --- a/src/libsync/theme.cpp +++ b/src/libsync/theme.cpp @@ -35,16 +35,6 @@ #endif namespace { -QString whiteTheme() -{ - return QStringLiteral("white"); -} - -QString blackTheme() -{ - return QStringLiteral("black"); -} - QString darkTheme() { return QStringLiteral("dark"); @@ -136,27 +126,13 @@ QIcon Theme::aboutIcon() const QIcon Theme::themeTrayIcon(const SyncResult &result, [[maybe_unused]] bool sysTrayMenuVisible, Resources::IconType iconType) const { - auto systrayIconFlavor = [&]() { - QString flavor; - if (_mono) { - flavor = Utility::hasDarkSystray() ? whiteTheme() : blackTheme(); - -#ifdef Q_OS_MAC - if (sysTrayMenuVisible) { - flavor = whiteTheme(); - } -#endif - } else { - // we have a dark sys tray and the theme has support for that - flavor = (Utility::hasDarkSystray() && Resources::hasDarkTheme()) ? darkTheme() : coloredTheme(); - } - return flavor; - }; - auto icon = Resources::loadIcon(systrayIconFlavor(), QStringLiteral("state-%1").arg(syncStateIconName(result)), iconType); + // we have a dark sys tray and the theme has support for that + const QString flavor = (Utility::hasDarkSystray() && Resources::hasDarkTheme()) ? darkTheme() : coloredTheme(); + auto icon = Resources::loadIcon(flavor, QStringLiteral("state-%1").arg(syncStateIconName(result)), iconType); #ifdef Q_OS_MAC // This defines the icon as a template and enables automatic macOS color handling // See https://bugreports.qt.io/browse/QTBUG-42109 - icon.setIsMask(_mono && !sysTrayMenuVisible); + icon.setIsMask(true); #endif return icon; } @@ -208,12 +184,6 @@ QString Theme::overrideServerPath() const return {}; } -void Theme::setSystrayUseMonoIcons(bool mono) -{ - _mono = mono; - Q_EMIT systrayUseMonoIconsChanged(mono); -} - QUrl Theme::updateCheckUrl() const { #ifdef APPLICATION_UPDATE_URL diff --git a/src/libsync/theme.h b/src/libsync/theme.h index e4b0aa92bc..26f8583050 100644 --- a/src/libsync/theme.h +++ b/src/libsync/theme.h @@ -220,11 +220,6 @@ class OPENCLOUD_SYNC_EXPORT Theme : public QObject virtual QString about() const; virtual bool aboutShowCopyright() const; - /** - * Define if the systray icons should be using mono design - */ - void setSystrayUseMonoIcons(bool mono); - /** * @brief Where to check for new Updates. @@ -440,8 +435,6 @@ class OPENCLOUD_SYNC_EXPORT Theme : public QObject } Q_SIGNALS: - void systrayUseMonoIconsChanged(bool); - void themeChanged(); private: @@ -450,7 +443,6 @@ class OPENCLOUD_SYNC_EXPORT Theme : public QObject Theme &operator=(Theme const &); static Theme *_instance; - bool _mono = false; }; template <> diff --git a/src/resources/core_theme.qrc b/src/resources/core_theme.qrc index 7fc6435551..8b4f6219b0 100644 --- a/src/resources/core_theme.qrc +++ b/src/resources/core_theme.qrc @@ -1,30 +1,18 @@ - theme/black/ui-light-plain-monochrom-state-checkmark.svg - theme/black/ui-light-plain-monochrom-state-error.svg - theme/black/ui-light-plain-monochrom-state-info.svg - theme/black/ui-light-plain-monochrom-state-offline.svg - theme/black/ui-light-plain-monochrom-state-pause.svg - theme/black/ui-light-plain-monochrom-state-sync.svg - theme/colored/ui-light-plain-color-state-checkmark.svg - theme/colored/ui-light-plain-color-state-error.svg - theme/colored/ui-light-plain-color-state-info.svg - theme/colored/ui-light-plain-color-state-offline.svg - theme/colored/ui-light-plain-color-state-pause.svg - theme/colored/ui-light-plain-color-state-sync.svg - theme/dark/ui-dark-plain-color-state-checkmark.svg - theme/dark/ui-dark-plain-color-state-error.svg - theme/dark/ui-dark-plain-color-state-info.svg - theme/dark/ui-dark-plain-color-state-offline.svg - theme/dark/ui-dark-plain-color-state-pause.svg - theme/dark/ui-dark-plain-color-state-sync.svg + theme/universal/opencloud-icon.svg + theme/universal/opencloud-icon.svg + theme/universal/opencloud-icon.svg + theme/universal/opencloud-icon.svg + theme/universal/opencloud-icon.svg + theme/universal/opencloud-icon.svg + theme/universal/opencloud-icon.svg + theme/universal/opencloud-icon.svg + theme/universal/opencloud-icon.svg + theme/universal/opencloud-icon.svg + theme/universal/opencloud-icon.svg + theme/universal/opencloud-icon.svg theme/universal/opencloud-icon.svg theme/universal/wizard_logo.svg - theme/white/ui-dark-plain-monochrom-state-checkmark.svg - theme/white/ui-dark-plain-monochrom-state-error.svg - theme/white/ui-dark-plain-monochrom-state-info.svg - theme/white/ui-dark-plain-monochrom-state-offline.svg - theme/white/ui-dark-plain-monochrom-state-pause.svg - theme/white/ui-dark-plain-monochrom-state-sync.svg diff --git a/src/resources/resources.cpp b/src/resources/resources.cpp index 79a5443b04..e32bb63c05 100644 --- a/src/resources/resources.cpp +++ b/src/resources/resources.cpp @@ -63,11 +63,6 @@ QString coloredTheme() return QStringLiteral("colored"); } -QString whiteTheme() -{ - return QStringLiteral("white"); -} - bool hasTheme(IconType type, const QString &theme) { // <, bool @@ -90,13 +85,6 @@ bool OCC::Resources::hasDarkTheme() return _hasBrandedColored == _hasBrandedDark; } -bool Resources::hasMonoTheme() -{ - // mono icons are only supported in vanilla and if a customer provides them - // no fallback to vanilla - return hasTheme(Resources::IconType::BrandedIcon, whiteTheme()); -} - bool Resources::isVanillaTheme() { return std::string_view(APPLICATION_SHORTNAME) == "OpenCloud"; diff --git a/src/resources/resources.h b/src/resources/resources.h index 3eed45cdeb..03102b4baf 100644 --- a/src/resources/resources.h +++ b/src/resources/resources.h @@ -42,10 +42,6 @@ bool OPENCLOUD_RESOURCES_EXPORT isUsingDarkTheme(); bool OPENCLOUD_RESOURCES_EXPORT hasDarkTheme(); -/** Whether the theme provides monochrome tray icons - */ -bool OPENCLOUD_RESOURCES_EXPORT hasMonoTheme(); - QIcon OPENCLOUD_RESOURCES_EXPORT getCoreIcon(const QString &icon_name); QIcon OPENCLOUD_RESOURCES_EXPORT loadIcon(const QString &flavor, const QString &name, IconType iconType); diff --git a/src/resources/theme/black/ui-light-plain-monochrom-state-checkmark.svg b/src/resources/theme/black/ui-light-plain-monochrom-state-checkmark.svg deleted file mode 100644 index d9e5d1e363..0000000000 --- a/src/resources/theme/black/ui-light-plain-monochrom-state-checkmark.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/src/resources/theme/black/ui-light-plain-monochrom-state-downloaded.svg b/src/resources/theme/black/ui-light-plain-monochrom-state-downloaded.svg deleted file mode 100644 index c5df77b8d6..0000000000 --- a/src/resources/theme/black/ui-light-plain-monochrom-state-downloaded.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/src/resources/theme/black/ui-light-plain-monochrom-state-error.svg b/src/resources/theme/black/ui-light-plain-monochrom-state-error.svg deleted file mode 100644 index 1c830f82b9..0000000000 --- a/src/resources/theme/black/ui-light-plain-monochrom-state-error.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/src/resources/theme/black/ui-light-plain-monochrom-state-info.svg b/src/resources/theme/black/ui-light-plain-monochrom-state-info.svg deleted file mode 100644 index a98ae32e01..0000000000 --- a/src/resources/theme/black/ui-light-plain-monochrom-state-info.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/src/resources/theme/black/ui-light-plain-monochrom-state-offline.svg b/src/resources/theme/black/ui-light-plain-monochrom-state-offline.svg deleted file mode 100644 index 09ba292993..0000000000 --- a/src/resources/theme/black/ui-light-plain-monochrom-state-offline.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/src/resources/theme/black/ui-light-plain-monochrom-state-pause.svg b/src/resources/theme/black/ui-light-plain-monochrom-state-pause.svg deleted file mode 100644 index 3cf2d62fb0..0000000000 --- a/src/resources/theme/black/ui-light-plain-monochrom-state-pause.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/src/resources/theme/black/ui-light-plain-monochrom-state-sync.svg b/src/resources/theme/black/ui-light-plain-monochrom-state-sync.svg deleted file mode 100644 index 927cc0a1f5..0000000000 --- a/src/resources/theme/black/ui-light-plain-monochrom-state-sync.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/src/resources/theme/black/ui-light-plain-monochrom-state-warning.svg b/src/resources/theme/black/ui-light-plain-monochrom-state-warning.svg deleted file mode 100644 index a37cbcd50c..0000000000 --- a/src/resources/theme/black/ui-light-plain-monochrom-state-warning.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/src/resources/theme/colored/ui-light-plain-color-state-checkmark.svg b/src/resources/theme/colored/ui-light-plain-color-state-checkmark.svg deleted file mode 100644 index bbea91eb83..0000000000 --- a/src/resources/theme/colored/ui-light-plain-color-state-checkmark.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/resources/theme/colored/ui-light-plain-color-state-error.svg b/src/resources/theme/colored/ui-light-plain-color-state-error.svg deleted file mode 100644 index d8b3410aff..0000000000 --- a/src/resources/theme/colored/ui-light-plain-color-state-error.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/resources/theme/colored/ui-light-plain-color-state-info.svg b/src/resources/theme/colored/ui-light-plain-color-state-info.svg deleted file mode 100644 index a51c4145f9..0000000000 --- a/src/resources/theme/colored/ui-light-plain-color-state-info.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/resources/theme/colored/ui-light-plain-color-state-offline.svg b/src/resources/theme/colored/ui-light-plain-color-state-offline.svg deleted file mode 100644 index 8f7c934eb1..0000000000 --- a/src/resources/theme/colored/ui-light-plain-color-state-offline.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/resources/theme/colored/ui-light-plain-color-state-pause.svg b/src/resources/theme/colored/ui-light-plain-color-state-pause.svg deleted file mode 100644 index c4694d3861..0000000000 --- a/src/resources/theme/colored/ui-light-plain-color-state-pause.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/resources/theme/colored/ui-light-plain-color-state-sync.svg b/src/resources/theme/colored/ui-light-plain-color-state-sync.svg deleted file mode 100644 index 7225bf9853..0000000000 --- a/src/resources/theme/colored/ui-light-plain-color-state-sync.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/resources/theme/dark/ui-dark-plain-color-state-checkmark.svg b/src/resources/theme/dark/ui-dark-plain-color-state-checkmark.svg deleted file mode 100644 index 3fd73d000a..0000000000 --- a/src/resources/theme/dark/ui-dark-plain-color-state-checkmark.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/resources/theme/dark/ui-dark-plain-color-state-error.svg b/src/resources/theme/dark/ui-dark-plain-color-state-error.svg deleted file mode 100644 index b53774bf37..0000000000 --- a/src/resources/theme/dark/ui-dark-plain-color-state-error.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/resources/theme/dark/ui-dark-plain-color-state-info.svg b/src/resources/theme/dark/ui-dark-plain-color-state-info.svg deleted file mode 100644 index f1c2cc0c34..0000000000 --- a/src/resources/theme/dark/ui-dark-plain-color-state-info.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/resources/theme/dark/ui-dark-plain-color-state-offline.svg b/src/resources/theme/dark/ui-dark-plain-color-state-offline.svg deleted file mode 100644 index dce80a64b1..0000000000 --- a/src/resources/theme/dark/ui-dark-plain-color-state-offline.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/resources/theme/dark/ui-dark-plain-color-state-pause.svg b/src/resources/theme/dark/ui-dark-plain-color-state-pause.svg deleted file mode 100644 index e53cb185ce..0000000000 --- a/src/resources/theme/dark/ui-dark-plain-color-state-pause.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/resources/theme/dark/ui-dark-plain-color-state-sync.svg b/src/resources/theme/dark/ui-dark-plain-color-state-sync.svg deleted file mode 100644 index d824ede369..0000000000 --- a/src/resources/theme/dark/ui-dark-plain-color-state-sync.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/resources/theme/white/ui-dark-plain-monochrom-state-checkmark.svg b/src/resources/theme/white/ui-dark-plain-monochrom-state-checkmark.svg deleted file mode 100644 index a0f66d4f2f..0000000000 --- a/src/resources/theme/white/ui-dark-plain-monochrom-state-checkmark.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/src/resources/theme/white/ui-dark-plain-monochrom-state-error.svg b/src/resources/theme/white/ui-dark-plain-monochrom-state-error.svg deleted file mode 100644 index 7dfd6f2ae7..0000000000 --- a/src/resources/theme/white/ui-dark-plain-monochrom-state-error.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/src/resources/theme/white/ui-dark-plain-monochrom-state-info.svg b/src/resources/theme/white/ui-dark-plain-monochrom-state-info.svg deleted file mode 100644 index bd618326b8..0000000000 --- a/src/resources/theme/white/ui-dark-plain-monochrom-state-info.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/src/resources/theme/white/ui-dark-plain-monochrom-state-offline.svg b/src/resources/theme/white/ui-dark-plain-monochrom-state-offline.svg deleted file mode 100644 index 17672d2364..0000000000 --- a/src/resources/theme/white/ui-dark-plain-monochrom-state-offline.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/src/resources/theme/white/ui-dark-plain-monochrom-state-pause.svg b/src/resources/theme/white/ui-dark-plain-monochrom-state-pause.svg deleted file mode 100644 index 2d87cdcd89..0000000000 --- a/src/resources/theme/white/ui-dark-plain-monochrom-state-pause.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/src/resources/theme/white/ui-dark-plain-monochrom-state-sync.svg b/src/resources/theme/white/ui-dark-plain-monochrom-state-sync.svg deleted file mode 100644 index 02967ecf2e..0000000000 --- a/src/resources/theme/white/ui-dark-plain-monochrom-state-sync.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - -