1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-24 21:42:51 -05:00

systematic cleanups and qmlfmt file browser modal

This commit is contained in:
bbedward
2025-09-03 00:00:25 -04:00
parent 93da303967
commit ae6a1b77c2
13 changed files with 354 additions and 475 deletions

View File

@@ -13,7 +13,7 @@ StyledText {
property int weight: filled ? 500 : 400
font.family: "Material Symbols Rounded"
font.pixelSize: Appearance.fontSize.normal
font.pixelSize: Theme.fontSizeMedium
font.weight: weight
color: Theme.surfaceText
verticalAlignment: Text.AlignVCenter
@@ -27,17 +27,15 @@ StyledText {
Behavior on fill {
NumberAnimation {
duration: Appearance.anim.durations.quick
easing.type: Easing.BezierSpline
easing.bezierCurve: Appearance.anim.curves.standard
duration: Theme.shortDuration
easing.type: Theme.standardEasing
}
}
Behavior on weight {
NumberAnimation {
duration: Appearance.anim.durations.quick
easing.type: Easing.BezierSpline
easing.bezierCurve: Appearance.anim.curves.standard
duration: Theme.shortDuration
easing.type: Theme.standardEasing
}
}
}