From effacd883127d015c83afce775f9c9bb6bf9ff7e Mon Sep 17 00:00:00 2001 From: Ronan Abhamon Date: Fri, 24 Aug 2018 17:06:36 +0200 Subject: [PATCH] feat(MainWindow): auto answer is now more visible --- assets/images/auto_answer.svg | 80 +++++++++++++++++--- ui/views/App/Main/MainWindow.qml | 5 +- ui/views/App/Styles/Main/MainWindowStyle.qml | 6 +- 3 files changed, 76 insertions(+), 15 deletions(-) diff --git a/assets/images/auto_answer.svg b/assets/images/auto_answer.svg index 9d3e4c878..9eaa7332b 100644 --- a/assets/images/auto_answer.svg +++ b/assets/images/auto_answer.svg @@ -1,12 +1,70 @@ - - - - auto_answer_active - Created with Sketch. - - - - - + + + + + + image/svg+xml + + auto_answer_active + + + + + + auto_answer_active + Created with Sketch. + + + + - \ No newline at end of file + + diff --git a/ui/views/App/Main/MainWindow.qml b/ui/views/App/Main/MainWindow.qml index aa5d57be4..35af3699e 100644 --- a/ui/views/App/Main/MainWindow.qml +++ b/ui/views/App/Main/MainWindow.qml @@ -127,7 +127,10 @@ ApplicationWindow { Text { clip: true color: MainWindowStyle.autoAnswerStatus.text.color - font.pointSize: MainWindowStyle.autoAnswerStatus.text.pointSize + font { + bold: true + pointSize: MainWindowStyle.autoAnswerStatus.text.pointSize + } text: qsTr('autoAnswerStatus') visible: SettingsModel.autoAnswerStatus width: parent.width diff --git a/ui/views/App/Styles/Main/MainWindowStyle.qml b/ui/views/App/Styles/Main/MainWindowStyle.qml index b0a4cc5c3..2cb803be9 100644 --- a/ui/views/App/Styles/Main/MainWindowStyle.qml +++ b/ui/views/App/Styles/Main/MainWindowStyle.qml @@ -18,12 +18,12 @@ QtObject { } property QtObject autoAnswerStatus: QtObject { - property int iconSize: 13 - property int width: 24 + property int iconSize: 16 + property int width: 28 property QtObject text: QtObject { property int pointSize: Units.dp * 8 - property color color: Colors.g + property color color: Colors.i } }