diff options
3 files changed, 16 insertions, 11 deletions
diff --git a/raveos-calamares-theme/PKGBUILD b/raveos-calamares-theme/PKGBUILD index 9a4180d..d098f74 100644 --- a/raveos-calamares-theme/PKGBUILD +++ b/raveos-calamares-theme/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: AlexC <alexc@alexc.hu> pkgname=raveos-calamares-theme pkgver=2.0.0 -pkgrel=18 +pkgrel=19 pkgdesc="RaveOS Calamares Theme" arch=('any') url="https://git.rp1.hu/RaveOS" diff --git a/raveos-calamares-theme/etc/calamares/branding/raveos/stylesheet.qss b/raveos-calamares-theme/etc/calamares/branding/raveos/stylesheet.qss index b53ae1d..8a12280 100644 --- a/raveos-calamares-theme/etc/calamares/branding/raveos/stylesheet.qss +++ b/raveos-calamares-theme/etc/calamares/branding/raveos/stylesheet.qss @@ -3,16 +3,6 @@ /* Main: #404040 | Accent: #3d7839 | Border: #7f8c8d */ /* ===================================================== */ -/* ---------------- Welcome Logo (screen-adaptive) ---------------- */ - -#welcomeLogo { - min-height: 1100px; - min-width: 1100px; - max-height: 9999px; - max-width: 9999px; - qproperty-alignment: AlignCenter; -} - /* ---------------- Global ---------------- */ * { diff --git a/raveos-calamares-theme/etc/calamares/branding/raveos/welcomeq.qml b/raveos-calamares-theme/etc/calamares/branding/raveos/welcomeq.qml new file mode 100644 index 0000000..4ebbe44 --- /dev/null +++ b/raveos-calamares-theme/etc/calamares/branding/raveos/welcomeq.qml @@ -0,0 +1,15 @@ +import QtQuick 2.10 + +Item { + id: welcomeRoot + anchors.fill: parent + + Image { + anchors.fill: parent + source: "images/raveos-welcome.png" + fillMode: Image.Stretch + horizontalAlignment: Image.AlignHCenter + verticalAlignment: Image.AlignVCenter + smooth: true + } +} |