summaryrefslogtreecommitdiff
path: root/x11-themes/redcore-theme-sddm/files/redcore/Components/CapsOn.qml
blob: 64578872f0bf7efcda1198f872abeea2ba9eaf08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import QtQuick 2.15
import QtQuick.Controls 2.15

Rectangle {
    id: capsButton

    color: "transparent"

    x: -50

    Text {
        color: "white"
        font.family: Qt.resolvedUrl("../fonts") ? "Segoe UI" : segoeui.name
        text: "Caps Lock is on"
        renderType: Text.NativeRendering
        font.weight: Font.Bold
        font.pointSize: 12
    }
}