1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

refactor(style): Move chatFormHeader to chatForm

This commit is contained in:
Diadlo 2017-11-16 00:19:09 +03:00
parent 33736da543
commit bf1c789fc1
No known key found for this signature in database
GPG Key ID: 5AF9F2E29107C727
7 changed files with 10 additions and 10 deletions

10
res.qrc
View File

@ -51,11 +51,11 @@
<file>ui/chatArea/scrollBarDownArrow.svg</file>
<file>ui/chatArea/scrollBarLeftArrow.svg</file>
<file>ui/chatArea/scrollBarRightArrow.svg</file>
<file>ui/chatFormHeader/buttons.css</file>
<file>ui/chatFormHeader/callButton.svg</file>
<file>ui/chatFormHeader/micButton.svg</file>
<file>ui/chatFormHeader/videoButton.svg</file>
<file>ui/chatFormHeader/volButton.svg</file>
<file>ui/chatForm/buttons.css</file>
<file>ui/chatForm/callButton.svg</file>
<file>ui/chatForm/micButton.svg</file>
<file>ui/chatForm/videoButton.svg</file>
<file>ui/chatForm/volButton.svg</file>
<file>ui/emoteButton/emoteButton.css</file>
<file>ui/emoteButton/emoteButton.svg</file>
<file>ui/emoticonWidget/dot_page.svg</file>

View File

@ -40,7 +40,7 @@ static const short MIC_BUTTONS_LAYOUT_SPACING = 4;
static const short BUTTONS_LAYOUT_HOR_SPACING = 4;
namespace {
const QString STYLE_PATH = QStringLiteral(":/ui/chatFormHeader/buttons.css");
const QString STYLE_PATH = QStringLiteral(":/ui/chatForm/buttons.css");
const QString STATE_NAME[] = {
QString{},

View File

@ -1,21 +1,21 @@
QAbstractButton#volButton
{
image: url(":/ui/chatFormHeader/volButton.svg");
image: url(":/ui/chatForm/volButton.svg");
}
QAbstractButton#micButton
{
image: url(":/ui/chatFormHeader/micButton.svg");
image: url(":/ui/chatForm/micButton.svg");
}
QAbstractButton#videoButton
{
background-image: url(":/ui/chatFormHeader/videoButton.svg");
background-image: url(":/ui/chatForm/videoButton.svg");
}
QAbstractButton#callButton
{
background-image: url(":/ui/chatFormHeader/callButton.svg");
background-image: url(":/ui/chatForm/callButton.svg");
}
QAbstractButton

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB