diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-04-12 17:30:11 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-04-12 17:30:11 +0800 |
commit | 89fcfe5ec1073fd374a8bae3d8457bebd96453c8 (patch) | |
tree | 757d449fff6d5f65c5faf7d3ad16ca5f5f0d87e9 /imports/Eduport/Eduport.qml | |
parent | ab4d14d706f98907a1ae3929a94ac418f8a20c25 (diff) |
BS body font can be set & used instead
Diffstat (limited to 'imports/Eduport/Eduport.qml')
-rw-r--r-- | imports/Eduport/Eduport.qml | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/imports/Eduport/Eduport.qml b/imports/Eduport/Eduport.qml index f5f4da8..be41156 100644 --- a/imports/Eduport/Eduport.qml +++ b/imports/Eduport/Eduport.qml @@ -6,6 +6,17 @@ QtObject { property int mode: Bootstrap.mode onModeChanged: Bootstrap.mode = mode + property font bodyFont: Qt.font({ + family: Bootstrap.bodyFont.family === "Roboto" + ? (haveRoboto ? "Roboto" : robotoRegular.name) + : Bootstrap.bodyFont.family, + pointSize: Bootstrap.bodyFont.pointSize, + weight: Bootstrap.bodyFont.weight + }) + property color bsBodyColor: Bootstrap.bodyColor + property color bsBodyBg: Bootstrap.bodyBg + property color bsBorderColor: Bootstrap.borderColor + readonly property real leadFontSize: 18.75 readonly property real formControlFontSize: 16 readonly property real h6FontSize: 15 @@ -19,11 +30,6 @@ QtObject { family: haveRoboto ? "Roboto" : robotoBold.name, weight: Font.Bold }) - readonly property font bodyFont: Qt.font({ - family: haveRoboto ? "Roboto" : robotoRegular.name, - weight: Font.Normal, - pointSize: 15 - }) readonly property font hxFont: Qt.font({ family: heeboBold.name, weight: Font.Bold, @@ -42,9 +48,6 @@ QtObject { readonly property real bsBadgeFontSize: 13.6 - property color bsBodyColor: Bootstrap.bodyColor - property color bsBodyBg: Bootstrap.bodyBg - property color bsBorderColor: Bootstrap.borderColor property real bsBorderRadius: 5.2 property real bsBoxShadowOffsetX: 0 |