summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Button/Primary.ui.qml10
-rw-r--r--imports/Bootstrap/Bootstrap.qml3
2 files changed, 12 insertions, 1 deletions
diff --git a/Button/Primary.ui.qml b/Button/Primary.ui.qml
index e99f56b..831430a 100644
--- a/Button/Primary.ui.qml
+++ b/Button/Primary.ui.qml
@@ -4,6 +4,8 @@ import Bootstrap 5.3
Button {
id: button
+ horizontalPadding: 16
+ verticalPadding: 8
font: Bootstrap.btnFont
contentItem: Text {
text: button.text
@@ -15,6 +17,12 @@ Button {
background: Rectangle {
color: button.down ? Bootstrap.btnActiveBG : button.enabled
? Bootstrap.btnBg : Bootstrap.btnDisabledBg
- radius: 8
+ border {
+ color: button.down ? Bootstrap.btnActiveBorderColor
+ : button.enabled ? Bootstrap.btnBorderColor
+ : Bootstrap.btnDisabledBorderColor
+ width: 1
+ }
+ radius: 5.2
}
}
diff --git a/imports/Bootstrap/Bootstrap.qml b/imports/Bootstrap/Bootstrap.qml
index a7a2951..57051ba 100644
--- a/imports/Bootstrap/Bootstrap.qml
+++ b/imports/Bootstrap/Bootstrap.qml
@@ -6,8 +6,11 @@ QtObject {
readonly property color btnColor: "#ffffff"
readonly property color btnBg: "#066ac9"
+ readonly property color btnBorderColor: "#066ac9"
readonly property color btnActiveBg: "#0555a1"
+ readonly property color btnActiveBorderColor: "#055097"
readonly property color btnDisabledBg: "#a6066ac9"
+ readonly property color btnDisabledBorderColor: "#a6066ac9"
readonly property bool haveRoboto: Qt.platform.os === "android"
|| Qt.platform.os === "linux"