Initial commit: saikyo-server-cockpit-branding

This commit is contained in:
vboxuser 2026-01-22 20:37:42 +03:00
commit a42cdeb2b3
13 changed files with 158 additions and 0 deletions

48
assets/branding.css Normal file
View 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;
}

View 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

6
debian/changelog vendored Normal file
View 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

18
debian/control vendored Normal file
View File

@ -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
- Стилизация под фирменный стиль
- Информация о системе
.
Правообладатель: ООО «САЙКО»

1
debian/debhelper-build-stamp vendored Normal file
View File

@ -0,0 +1 @@
saikyo-server-cockpit-branding

2
debian/files vendored Normal file
View File

@ -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

9
debian/rules vendored Executable file
View File

@ -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

View File

@ -0,0 +1,2 @@
misc:Depends=
misc:Pre-Depends=

View File

@ -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
- Стилизация под фирменный стиль
- Информация о системе
.
Правообладатель: ООО «САЙКО»

View File

@ -0,0 +1,2 @@
8cd35eedbd48385145b4ad01ce98dfc4 usr/share/cockpit/branding/saikyo/branding.css
599a3b774bd87fca8578af019e2275fd usr/share/doc/saikyo-server-cockpit-branding/changelog.gz

View 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;
}