Commit 7466db0d authored by Ronan Abhamon's avatar Ronan Abhamon

fix(ForceScrollBar): use transparent color in background

parent 673a118d
...@@ -7,10 +7,11 @@ QtObject { ...@@ -7,10 +7,11 @@ QtObject {
// TODO: Mutualize similar colors. // TODO: Mutualize similar colors.
property QtObject colors: QtObject { property QtObject colors: QtObject {
property string a: '#808080' property string a: 'transparent'
property string b: '#5E5E5F' property string b: '#5E5E5F'
property string c: '#C5C5C5' property string c: '#C5C5C5'
property string d: '#5A585B' property string d: '#5A585B'
property string e: '#DEDEDE' property string e: '#DEDEDE'
property string f: '#808080'
} }
} }
...@@ -9,6 +9,6 @@ QtObject { ...@@ -9,6 +9,6 @@ QtObject {
property int horizontalOffset: 0 property int horizontalOffset: 0
property int samples: 15 property int samples: 15
property int verticalOffset: 2 property int verticalOffset: 2
property string color: Constants.colors.a property string color: Constants.colors.f
} }
} }
...@@ -8,7 +8,7 @@ QtObject { ...@@ -8,7 +8,7 @@ QtObject {
property string pressedColor: Constants.colors.b property string pressedColor: Constants.colors.b
property Rectangle background: Rectangle { property Rectangle background: Rectangle {
color: Constants.colors.d color: Constants.colors.a
} }
property Rectangle contentItem: Rectangle { property Rectangle contentItem: Rectangle {
......
...@@ -4,7 +4,7 @@ import QtQuick 2.7 ...@@ -4,7 +4,7 @@ import QtQuick 2.7
import Linphone 1.0 import Linphone 1.0
QtObject { QtObject {
property string shadowColor: Constants.colors.a property string shadowColor: Constants.colors.f
property Rectangle searchFieldBackground: Rectangle { property Rectangle searchFieldBackground: Rectangle {
implicitHeight: 30 implicitHeight: 30
......
...@@ -167,7 +167,7 @@ ApplicationWindow { ...@@ -167,7 +167,7 @@ ApplicationWindow {
Loader { Loader {
Layout.fillHeight: true Layout.fillHeight: true
Layout.fillWidth: true Layout.fillWidth: true
source: 'qrc:/ui/Views/MainWindow/Home.qml' source: 'qrc:/ui/Views/MainWindow/Conversation.qml'
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment