Initial commit: saikyo-server-cockpit-branding
This commit is contained in:
commit
a42cdeb2b3
|
|
@ -0,0 +1,48 @@
|
||||||
|
/* Saikyo OS Server - Cockpit Branding
|
||||||
|
* Copyright (c) 2025-2026 OOO "SAIKO"
|
||||||
|
* https://saikyo-server.ru
|
||||||
|
*/
|
||||||
|
|
||||||
|
:root {
|
||||||
|
--ct-color-brand: #2e7d32;
|
||||||
|
--ct-color-brand-dark: #1b5e20;
|
||||||
|
--ct-color-brand-light: #4caf50;
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-pf body {
|
||||||
|
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-pf .brand {
|
||||||
|
background-image: url('logo.png');
|
||||||
|
background-size: contain;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: center;
|
||||||
|
height: 80px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-pf .login-pf-brand-text {
|
||||||
|
color: #4caf50;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-pf .login-pf-brand-text::before {
|
||||||
|
content: "Saikyo OS Server";
|
||||||
|
}
|
||||||
|
|
||||||
|
#brand {
|
||||||
|
background-image: url('logo.png');
|
||||||
|
background-size: contain;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
.server-system-content {
|
||||||
|
border-top: 3px solid var(--ct-color-brand);
|
||||||
|
}
|
||||||
|
|
||||||
|
.system-information::after {
|
||||||
|
content: " | Saikyo OS Server 1.0 LTS";
|
||||||
|
color: var(--ct-color-brand);
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
6
debian/.debhelper/generated/saikyo-server-cockpit-branding/dh_installchangelogs.dch.trimmed
vendored
Normal file
6
debian/.debhelper/generated/saikyo-server-cockpit-branding/dh_installchangelogs.dch.trimmed
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
saikyo-server-cockpit-branding (1.0.0) stable; urgency=medium
|
||||||
|
|
||||||
|
* Initial release
|
||||||
|
* Saikyo OS Server branding for Cockpit web console
|
||||||
|
|
||||||
|
-- Saikyo OS Team <support@saikyo-os.ru> Wed, 22 Jan 2026 19:00:00 +0300
|
||||||
0
debian/.debhelper/generated/saikyo-server-cockpit-branding/installed-by-dh_installdocs
vendored
Normal file
0
debian/.debhelper/generated/saikyo-server-cockpit-branding/installed-by-dh_installdocs
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
saikyo-server-cockpit-branding (1.0.0) stable; urgency=medium
|
||||||
|
|
||||||
|
* Initial release
|
||||||
|
* Saikyo OS Server branding for Cockpit web console
|
||||||
|
|
||||||
|
-- Saikyo OS Team <support@saikyo-os.ru> Wed, 22 Jan 2026 19:00:00 +0300
|
||||||
|
|
@ -0,0 +1,18 @@
|
||||||
|
Source: saikyo-server-cockpit-branding
|
||||||
|
Section: admin
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Saikyo OS Team <support@saikyo-os.ru>
|
||||||
|
Build-Depends: debhelper-compat (= 13)
|
||||||
|
Standards-Version: 4.6.2
|
||||||
|
Homepage: https://saikyo-server.ru
|
||||||
|
|
||||||
|
Package: saikyo-server-cockpit-branding
|
||||||
|
Architecture: all
|
||||||
|
Depends: ${misc:Depends}, cockpit
|
||||||
|
Description: Saikyo OS Server - брендинг Cockpit
|
||||||
|
Брендинг веб-панели Cockpit для Saikyo OS Server:
|
||||||
|
- Логотип Saikyo OS
|
||||||
|
- Стилизация под фирменный стиль
|
||||||
|
- Информация о системе
|
||||||
|
.
|
||||||
|
Правообладатель: ООО «САЙКО»
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
saikyo-server-cockpit-branding
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
saikyo-server-cockpit-branding_1.0.0_all.deb admin optional
|
||||||
|
saikyo-server-cockpit-branding_1.0.0_amd64.buildinfo admin optional
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
|
%:
|
||||||
|
dh $@
|
||||||
|
|
||||||
|
override_dh_auto_install:
|
||||||
|
install -d $(CURDIR)/debian/saikyo-server-cockpit-branding/usr/share/cockpit/branding/saikyo
|
||||||
|
install -m 644 assets/branding.css $(CURDIR)/debian/saikyo-server-cockpit-branding/usr/share/cockpit/branding/saikyo/
|
||||||
|
install -m 644 assets/logo.png $(CURDIR)/debian/saikyo-server-cockpit-branding/usr/share/cockpit/branding/saikyo/ 2>/dev/null || true
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
misc:Depends=
|
||||||
|
misc:Pre-Depends=
|
||||||
|
|
@ -0,0 +1,16 @@
|
||||||
|
Package: saikyo-server-cockpit-branding
|
||||||
|
Version: 1.0.0
|
||||||
|
Architecture: all
|
||||||
|
Maintainer: Saikyo OS Team <support@saikyo-os.ru>
|
||||||
|
Installed-Size: 11
|
||||||
|
Depends: cockpit
|
||||||
|
Section: admin
|
||||||
|
Priority: optional
|
||||||
|
Homepage: https://saikyo-server.ru
|
||||||
|
Description: Saikyo OS Server - брендинг Cockpit
|
||||||
|
Брендинг веб-панели Cockpit для Saikyo OS Server:
|
||||||
|
- Логотип Saikyo OS
|
||||||
|
- Стилизация под фирменный стиль
|
||||||
|
- Информация о системе
|
||||||
|
.
|
||||||
|
Правообладатель: ООО «САЙКО»
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
8cd35eedbd48385145b4ad01ce98dfc4 usr/share/cockpit/branding/saikyo/branding.css
|
||||||
|
599a3b774bd87fca8578af019e2275fd usr/share/doc/saikyo-server-cockpit-branding/changelog.gz
|
||||||
48
debian/saikyo-server-cockpit-branding/usr/share/cockpit/branding/saikyo/branding.css
vendored
Normal file
48
debian/saikyo-server-cockpit-branding/usr/share/cockpit/branding/saikyo/branding.css
vendored
Normal file
|
|
@ -0,0 +1,48 @@
|
||||||
|
/* Saikyo OS Server - Cockpit Branding
|
||||||
|
* Copyright (c) 2025-2026 OOO "SAIKO"
|
||||||
|
* https://saikyo-server.ru
|
||||||
|
*/
|
||||||
|
|
||||||
|
:root {
|
||||||
|
--ct-color-brand: #2e7d32;
|
||||||
|
--ct-color-brand-dark: #1b5e20;
|
||||||
|
--ct-color-brand-light: #4caf50;
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-pf body {
|
||||||
|
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-pf .brand {
|
||||||
|
background-image: url('logo.png');
|
||||||
|
background-size: contain;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: center;
|
||||||
|
height: 80px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-pf .login-pf-brand-text {
|
||||||
|
color: #4caf50;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-pf .login-pf-brand-text::before {
|
||||||
|
content: "Saikyo OS Server";
|
||||||
|
}
|
||||||
|
|
||||||
|
#brand {
|
||||||
|
background-image: url('logo.png');
|
||||||
|
background-size: contain;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
.server-system-content {
|
||||||
|
border-top: 3px solid var(--ct-color-brand);
|
||||||
|
}
|
||||||
|
|
||||||
|
.system-information::after {
|
||||||
|
content: " | Saikyo OS Server 1.0 LTS";
|
||||||
|
color: var(--ct-color-brand);
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
BIN
debian/saikyo-server-cockpit-branding/usr/share/doc/saikyo-server-cockpit-branding/changelog.gz
vendored
Normal file
BIN
debian/saikyo-server-cockpit-branding/usr/share/doc/saikyo-server-cockpit-branding/changelog.gz
vendored
Normal file
Binary file not shown.
Loading…
Reference in New Issue