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 } }