mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-18 11:58:11 +00:00
15 lines
580 B
QML
15 lines
580 B
QML
import Common.Styles 1.0
|
|
|
|
// =============================================================================
|
|
|
|
AbstractTextButton {
|
|
colorDisabled: TextButtonBStyle.backgroundColor.disabled
|
|
colorHovered: TextButtonBStyle.backgroundColor.hovered
|
|
colorNormal: TextButtonBStyle.backgroundColor.normal
|
|
colorPressed: TextButtonBStyle.backgroundColor.pressed
|
|
|
|
textColorDisabled: TextButtonBStyle.textColor.disabled
|
|
textColorHovered: TextButtonBStyle.textColor.hovered
|
|
textColorNormal: TextButtonBStyle.textColor.normal
|
|
textColorPressed: TextButtonBStyle.textColor.pressed
|
|
}
|