mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-18 11:58:11 +00:00
Remove Call and notices logs from db Delete empty chat rooms after requesting it Option of showing/hidding empty chat rooms Many fixes on notifications count, imdn states, synchronizations behaviors, mouse cursor, etc. Fix crashes Fix timeline times
22 lines
1,017 B
QML
22 lines
1,017 B
QML
import Common.Styles 1.0
|
|
|
|
// =============================================================================
|
|
|
|
AbstractTextButton {
|
|
property var textButtonStyle : TextButtonBStyle
|
|
|
|
colorDisabled: textButtonStyle.backgroundColor.disabled
|
|
colorHovered: textButtonStyle.backgroundColor.hovered
|
|
colorNormal: textButtonStyle.backgroundColor.normal
|
|
colorPressed: textButtonStyle.backgroundColor.pressed
|
|
|
|
textColorDisabled: textButtonStyle.textColor.disabled
|
|
textColorHovered: textButtonStyle.textColor.hovered
|
|
textColorNormal: textButtonStyle.textColor.normal
|
|
textColorPressed: textButtonStyle.textColor.pressed
|
|
|
|
borderColorDisabled: (textButtonStyle.borderColor?textButtonStyle.borderColor.disabled:colorDisabled)
|
|
borderColorHovered: (textButtonStyle.borderColor?textButtonStyle.borderColor.hovered:colorHovered)
|
|
borderColorNormal: (textButtonStyle.borderColor?textButtonStyle.borderColor.normal:colorNormal)
|
|
borderColorPressed: (textButtonStyle.borderColor?textButtonStyle.borderColor.pressed:colorPressed)
|
|
}
|