mirror of https://github.com/qt/qtdoc.git
41 lines
1.2 KiB
QML
41 lines
1.2 KiB
QML
// Copyright (C) 2023 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
import QtQuick
|
|
|
|
CustomSliderForm {
|
|
handle.states: [
|
|
State {
|
|
name: "small"
|
|
when: ((Screen.height * Screen.devicePixelRatio)
|
|
+ (Screen.width * Screen.devicePixelRatio)) < 2000
|
|
PropertyChanges {
|
|
target: handle
|
|
width: 10
|
|
}
|
|
}
|
|
]
|
|
box.states: [
|
|
State {
|
|
name: "small"
|
|
when: ((Screen.height * Screen.devicePixelRatio)
|
|
+ (Screen.width * Screen.devicePixelRatio)) < 2000
|
|
PropertyChanges {
|
|
target: box
|
|
implicitWidth: liquidAmountText.width + 4
|
|
implicitHeight: liquidAmountText.height + 2
|
|
}
|
|
}
|
|
]
|
|
liquidAmountText.states: [
|
|
State {
|
|
name: "small"
|
|
when: ((Screen.height * Screen.devicePixelRatio)
|
|
+ (Screen.width * Screen.devicePixelRatio)) < 2000
|
|
PropertyChanges {
|
|
target: liquidAmountText
|
|
font.pixelSize: 8
|
|
}
|
|
}
|
|
]
|
|
}
|