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