fix(app): little fixes on style

This commit is contained in:
Ronan Abhamon 2016-09-27 15:05:53 +02:00
parent 4940460883
commit f1a4e1f5c4
3 changed files with 23 additions and 20 deletions

View file

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

View file

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

View file

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