chore: remove unused gui/Styles

This commit is contained in:
sithlord48
2025-12-24 11:20:25 -05:00
committed by Nick Bolton
parent 949913cd6e
commit 530bcad8a6
2 changed files with 0 additions and 29 deletions

View File

@ -34,7 +34,6 @@ add_library(${target} STATIC
Messages.h
ScreenSetupModel.cpp
ScreenSetupModel.h
Styles.h
StyleUtils.h
TlsUtility.cpp
TlsUtility.h

View File

@ -1,28 +0,0 @@
/*
* Deskflow -- mouse and keyboard sharing utility
* SPDX-FileCopyrightText: (C) 2014 Symless Ltd.
* SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
*/
#pragma once
#include <QString>
namespace deskflow::gui {
const auto kColorError = "#ec4c47";
const auto kStyleErrorActiveLabel = //
QStringLiteral(
"padding: 3px 5px; border-radius: 3px; "
"background-color: %1; color: white"
)
.arg(kColorError);
const auto kStyleErrorInactiveLabel = //
QStringLiteral(
"padding: 3px 5px; border-radius: 3px;"
"background-color: none"
);
} // namespace deskflow::gui