fix(ForceScrollBar): use transparent color in background

This commit is contained in:
Ronan Abhamon 2016-09-26 16:18:09 +02:00
parent 673a118d22
commit 7466db0d64
5 changed files with 6 additions and 5 deletions

View file

@ -7,10 +7,11 @@ QtObject {
// TODO: Mutualize similar colors.
property QtObject colors: QtObject {
property string a: '#808080'
property string a: 'transparent'
property string b: '#5E5E5F'
property string c: '#C5C5C5'
property string d: '#5A585B'
property string e: '#DEDEDE'
property string f: '#808080'
}
}

View file

@ -9,6 +9,6 @@ QtObject {
property int horizontalOffset: 0
property int samples: 15
property int verticalOffset: 2
property string color: Constants.colors.a
property string color: Constants.colors.f
}
}

View file

@ -8,7 +8,7 @@ QtObject {
property string pressedColor: Constants.colors.b
property Rectangle background: Rectangle {
color: Constants.colors.d
color: Constants.colors.a
}
property Rectangle contentItem: Rectangle {

View file

@ -4,7 +4,7 @@ import QtQuick 2.7
import Linphone 1.0
QtObject {
property string shadowColor: Constants.colors.a
property string shadowColor: Constants.colors.f
property Rectangle searchFieldBackground: Rectangle {
implicitHeight: 30

View file

@ -167,7 +167,7 @@ ApplicationWindow {
Loader {
Layout.fillHeight: true
Layout.fillWidth: true
source: 'qrc:/ui/Views/MainWindow/Home.qml'
source: 'qrc:/ui/Views/MainWindow/Conversation.qml'
}
}