mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-25 07:38:11 +00:00
Lighter borders in conference creation. Timepicker : highlight button with circle and same color, add 5 minutes. Fix gray mask/mouse area on recent contacts in chat creation when already selected.
16 lines
548 B
QML
16 lines
548 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Units 1.0
|
|
import ColorsList 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property string sectionName : 'TimePicker'
|
|
property color hoursColor: ColorsList.add(sectionName+'_hours', 'i').color
|
|
property color minutesColor: ColorsList.add(sectionName+'_minutes', 'i').color
|
|
property color selectedItemColor: ColorsList.add(sectionName+'_selected', 'l').color
|
|
property color unselectedItemColor: ColorsList.add(sectionName+'_unselected', 'g').color
|
|
|
|
}
|