summaryrefslogtreecommitdiff
path: root/Button/Primary.ui.qml
blob: 7c76e4a35194246edf8a9236bf346b17adf2fa7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import QtQuick 2.15
import QtQuick.Controls 2.15
import Bootstrap 5.3

Btn {
	id: button
	background: Rectangle {
		color: button.down ? Bootstrap.btnPrimaryActiveBG
			: button.enabled
			? Bootstrap.btnPrimaryBg
			: Bootstrap.btnPrimaryDisabledBg
		border {
			width: Bootstrap.btnBorderWidth
			color: button.down
				? Bootstrap.btnPrimaryActiveBorderColor
				: button.enabled
				? Bootstrap.btnPrimaryBorderColor
				: Bootstrap.btnPrimaryDisabledBorderColor
		}
		radius: Bootstrap.btnBorderRadius
	}
}