mirror of
https://github.com/overte-org/overte.git
synced 2025-07-23 19:04:27 +02:00
Add missing qml files
This commit is contained in:
parent
065293ea36
commit
0066dfc2e8
3 changed files with 31 additions and 9 deletions
21
interface/resources/qml/stylesUit/FiraSansMedium.qml
Normal file
21
interface/resources/qml/stylesUit/FiraSansMedium.qml
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
//
|
||||||
|
// FiraSansMedium.qml
|
||||||
|
//
|
||||||
|
// Created by Dale Glass on 7 Aug 2022
|
||||||
|
// Copyright 2022 Overte e.V.
|
||||||
|
//
|
||||||
|
// Distributed under the Apache License, Version 2.0.
|
||||||
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
|
//
|
||||||
|
|
||||||
|
import QtQuick 2.7
|
||||||
|
|
||||||
|
Text {
|
||||||
|
id: root
|
||||||
|
property real size: 32
|
||||||
|
font.pixelSize: size
|
||||||
|
verticalAlignment: Text.AlignVCenter
|
||||||
|
horizontalAlignment: Text.AlignLeft
|
||||||
|
font.family: "Fira Sans"
|
||||||
|
font.weight: Font.Medium
|
||||||
|
}
|
|
@ -1,14 +1,14 @@
|
||||||
//
|
//
|
||||||
// FiraSansRegular.qml
|
// FiraSansMedium.qml
|
||||||
//
|
//
|
||||||
// Created by David Rowe on 12 May 2016
|
// Created by Dale Glass on 7 Aug 2022
|
||||||
// Copyright 2016 High Fidelity, Inc.
|
// Copyright 2022 Overte e.V.
|
||||||
//
|
//
|
||||||
// Distributed under the Apache License, Version 2.0.
|
// Distributed under the Apache License, Version 2.0.
|
||||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
//
|
//
|
||||||
|
|
||||||
import QtQuick 2.5
|
import QtQuick 2.7
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
id: root
|
id: root
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
//
|
//
|
||||||
// FiraSansSemiBold.qml
|
// FiraSansMedium.qml
|
||||||
//
|
//
|
||||||
// Created by David Rowe on 12 Feb 2016
|
// Created by Dale Glass on 7 Aug 2022
|
||||||
// Copyright 2016 High Fidelity, Inc.
|
// Copyright 2022 Overte e.V.
|
||||||
//
|
//
|
||||||
// Distributed under the Apache License, Version 2.0.
|
// Distributed under the Apache License, Version 2.0.
|
||||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
//
|
//
|
||||||
|
|
||||||
import QtQuick 2.5
|
import QtQuick 2.7
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
id: root
|
id: root
|
||||||
|
@ -16,5 +16,6 @@ Text {
|
||||||
font.pixelSize: size
|
font.pixelSize: size
|
||||||
verticalAlignment: Text.AlignVCenter
|
verticalAlignment: Text.AlignVCenter
|
||||||
horizontalAlignment: Text.AlignLeft
|
horizontalAlignment: Text.AlignLeft
|
||||||
font.family: "Fira Sans SemiBold"
|
font.family: "Fira Sans"
|
||||||
|
font.weight: Font.DemiBold
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue