Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linphone-desktop
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
linphone-desktop
Commits
7466db0d
Commit
7466db0d
authored
Sep 26, 2016
by
Ronan Abhamon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(ForceScrollBar): use transparent color in background
parent
673a118d
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
5 deletions
+6
-5
Constants.qml
tests/ui/Linphone/Constants.qml
+2
-1
PopupStyle.qml
tests/ui/Linphone/Styles/PopupStyle.qml
+1
-1
ScrollBarStyle.qml
tests/ui/Linphone/Styles/ScrollBarStyle.qml
+1
-1
SearchBoxStyle.qml
tests/ui/Linphone/Styles/SearchBoxStyle.qml
+1
-1
MainWindow.qml
tests/ui/Views/MainWindow/MainWindow.qml
+1
-1
No files found.
tests/ui/Linphone/Constants.qml
View file @
7466db0d
...
...
@@ -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
'
}
}
tests/ui/Linphone/Styles/PopupStyle.qml
View file @
7466db0d
...
...
@@ -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
}
}
tests/ui/Linphone/Styles/ScrollBarStyle.qml
View file @
7466db0d
...
...
@@ -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
{
...
...
tests/ui/Linphone/Styles/SearchBoxStyle.qml
View file @
7466db0d
...
...
@@ -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
...
...
tests/ui/Views/MainWindow/MainWindow.qml
View file @
7466db0d
...
...
@@ -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
'
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment