diff --git a/efactura-generator/CHANGELOG.md b/efactura-generator/CHANGELOG.md index 27a960d..2ddcbbb 100644 --- a/efactura-generator/CHANGELOG.md +++ b/efactura-generator/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.9-beta-16 - 26.06.2026 + +### New Features +- Adăugat siglă Romfast în antetul aplicației, cu legătură către romfast.ro. Astfel se vede clar că editorul face parte din suita de aplicații Romfast. +- Adăugat siglă Romfast și în subsol, alături de o legătură nouă „Aplicații online" care duce la pagina cu toate aplicațiile online Romfast. + ## 0.9-beta-15 - 05.05.2026 ### New Features diff --git a/efactura-generator/assets/romfast_logo.png b/efactura-generator/assets/romfast_logo.png new file mode 100644 index 0000000..23a0e33 Binary files /dev/null and b/efactura-generator/assets/romfast_logo.png differ diff --git a/efactura-generator/index.html b/efactura-generator/index.html index d231247..651bf01 100644 --- a/efactura-generator/index.html +++ b/efactura-generator/index.html @@ -13,9 +13,14 @@
-
-

Editor eFactura

-
Romfast SRL
+
+ + + +
+

Editor eFactura

+
Romfast SRL
+
@@ -292,9 +297,14 @@ + v0.9-beta-16 + +
diff --git a/efactura-generator/styles/main.css b/efactura-generator/styles/main.css index 4312f6a..04e78f2 100644 --- a/efactura-generator/styles/main.css +++ b/efactura-generator/styles/main.css @@ -145,6 +145,24 @@ input.date-input { margin-top: 2px; } +.header-brand { + display: flex; + align-items: center; + gap: var(--space-3); +} + +.brand-logo-link { + display: inline-flex; + align-items: center; + flex-shrink: 0; +} + +.brand-logo { + display: block; + height: 50px; + width: auto; +} + .button-group { display: flex; gap: var(--space-2); @@ -955,6 +973,31 @@ button.button { color: var(--text-muted); } +.footer-brand { + display: flex; + align-items: center; + gap: var(--space-4); +} + +.footer-logo-link { + display: inline-flex; + align-items: center; + border-bottom: none; + padding-bottom: 0; +} + +.footer-logo { + display: block; + height: 22px; + width: auto; + opacity: 0.85; + transition: opacity var(--duration-short) var(--easing-out); +} + +.footer-logo-link:hover .footer-logo { + opacity: 1; +} + .app-footer a { color: var(--text-muted); text-decoration: none;