Wallpaper: added fill color that may show up around wallpaper (depends on fillMode)

+ New Widget NColorPicker
+ New Widget NButton
This commit is contained in:
LemmyCook 2025-09-01 22:27:49 -04:00
parent 69a5f0c2c0
commit d5e83aa9de
7 changed files with 411 additions and 5 deletions

View file

@ -14,6 +14,7 @@ ColumnLayout {
property int inputMaxWidth: 420 * scaling
property color labelColor: Color.mOnSurface
property color descriptionColor: Color.mOnSurfaceVariant
property string fontFamily: Settings.data.ui.fontDefault
property alias text: input.text
property alias placeholderText: input.placeholderText
@ -74,6 +75,7 @@ ColumnLayout {
color: Color.mOnSurface
placeholderTextColor: Color.mOnSurfaceVariant
background: null
font.family: fontFamily
font.pointSize: Style.fontSizeS * scaling
onEditingFinished: root.editingFinished()
}