blob: dec01482ed3c848dde8a16c1ebf2904154ab95a8 (
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 {
color: button.down
? Bootstrap.btnPrimaryActiveBorderColor
: button.enabled
? Bootstrap.btnPrimaryBorderColor
: Bootstrap.btnPrimaryDisabledBorderColor
width: Bootstrap.btnBorderWidth
}
radius: Bootstrap.btnBorderRadius
}
}
|