summaryrefslogtreecommitdiffstats
path: root/tools/qqem/qml/CustomTextField.qml
blob: 3687b525c2c67994fe632ab8145025818d7b2cbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick
import QtQuick.Controls.Basic as ControlStyle

ControlStyle.TextField {
    background: Rectangle {
        color: mainView.backgroundColor2
        border.color: mainView.foregroundColor1
        border.width: 1
    }
    color: mainView.foregroundColor2
    font.pixelSize: 14
}