mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-25 23:58:37 +00:00
fix(app): little fixes on style
This commit is contained in:
parent
4940460883
commit
f1a4e1f5c4
3 changed files with 23 additions and 20 deletions
|
|
@ -2,21 +2,24 @@ pragma Singleton
|
|||
import QtQuick 2.7
|
||||
|
||||
QtObject {
|
||||
property string a: 'transparent'
|
||||
property string b: '#5E5E5F' // Pressed toolbar.
|
||||
property string c: '#C5C5C5' // Released toolbar.
|
||||
property string a: 'transparent'
|
||||
property string b: '#5E5E5F' // Pressed toolbar.
|
||||
property string c: '#C5C5C5' // Released toolbar.
|
||||
|
||||
property string d: '#5A585B' // Text color.
|
||||
property string d: '#5A585B' // Text color.
|
||||
|
||||
property string e: '#DEDEDE' // Timeline separator
|
||||
property string e: '#DEDEDE' // Timeline separator
|
||||
|
||||
property string f: '#808080' // Popup shadow.
|
||||
property string f: '#808080' // Popup shadow.
|
||||
|
||||
property string g: '#8E8E8E' // MenuEntry Normal.
|
||||
property string h: '#707070' // MenuEntry Hovered.
|
||||
property string i: '#FE5E00' // MenuEntry Pressed.
|
||||
property string j: '#434343' // MenuEntry Selected.
|
||||
property string g: '#8E8E8E' // MenuEntry Normal.
|
||||
property string h: '#707070' // MenuEntry Hovered.
|
||||
property string i: '#FE5E00' // MenuEntry Pressed.
|
||||
property string j: '#434343' // MenuEntry Selected.
|
||||
|
||||
property string k: '#FFFFFF' // Text color.
|
||||
property string l: '#000000' // Text color.
|
||||
property string k: '#FFFFFF' // Text color.
|
||||
property string l: '#000000' // Text color.
|
||||
|
||||
property string m: '#D1D1D1' // SmallButton Normal.
|
||||
property string n: '#C0C0C0' // SmallButton Hovered.
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,10 +8,10 @@ QtObject {
|
|||
|
||||
property QtObject button: QtObject {
|
||||
property QtObject color: QtObject {
|
||||
property string hovered: '#C0C0C0'
|
||||
property string normal: '#D1D1D1'
|
||||
property string pressed: '#FE5E00'
|
||||
property string selected: '#8E8E8E'
|
||||
property string hovered: Colors.n
|
||||
property string normal: Colors.m
|
||||
property string pressed: Colors.i
|
||||
property string selected: Colors.g
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -9,15 +9,15 @@ QtObject {
|
|||
property int radius: 10
|
||||
|
||||
property QtObject color: QtObject {
|
||||
property string hovered: '#C0C0C0'
|
||||
property string normal: '#D1D1D1'
|
||||
property string pressed: '#FE5E00'
|
||||
property string hovered: Colors.n
|
||||
property string normal: Colors.m
|
||||
property string pressed: Colors.i
|
||||
}
|
||||
}
|
||||
|
||||
property QtObject text: QtObject {
|
||||
property int fontSize: 8
|
||||
|
||||
property string color: '#FFFFFF'
|
||||
property string color: Colors.k
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue