sync efactura-generator 0.9-beta-16 — branding Romfast (siglă header/footer + link Aplicații online)
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# 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
|
## 0.9-beta-15 - 05.05.2026
|
||||||
|
|
||||||
### New Features
|
### New Features
|
||||||
|
|||||||
BIN
efactura-generator/assets/romfast_logo.png
Normal file
BIN
efactura-generator/assets/romfast_logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 26 KiB |
@@ -13,10 +13,15 @@
|
|||||||
<body>
|
<body>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
|
<div class="header-brand">
|
||||||
|
<a href="https://romfast.ro" target="_blank" rel="noopener" class="brand-logo-link" title="romfast.ro">
|
||||||
|
<img src="./assets/romfast_logo.png" alt="Romfast" class="brand-logo">
|
||||||
|
</a>
|
||||||
<div>
|
<div>
|
||||||
<h1>Editor eFactura</h1>
|
<h1>Editor eFactura</h1>
|
||||||
<div class="app-author">Romfast SRL</div>
|
<div class="app-author">Romfast SRL</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<div class="button-group">
|
<div class="button-group">
|
||||||
<input type="file" id="fileInput" class="file-input" accept=".xml,.zip,application/zip,application/x-zip-compressed" multiple>
|
<input type="file" id="fileInput" class="file-input" accept=".xml,.zip,application/zip,application/x-zip-compressed" multiple>
|
||||||
<button onclick="document.getElementById('fileInput').click()" class="button">Alege Fișier XML / ZIP</button>
|
<button onclick="document.getElementById('fileInput').click()" class="button">Alege Fișier XML / ZIP</button>
|
||||||
@@ -292,8 +297,13 @@
|
|||||||
</form>
|
</form>
|
||||||
|
|
||||||
<footer class="app-footer">
|
<footer class="app-footer">
|
||||||
<span id="app-version">v0.9-beta-15</span>
|
<span id="app-version">v0.9-beta-16</span>
|
||||||
<a href="https://www.romfast.ro">www.romfast.ro</a>
|
<div class="footer-brand">
|
||||||
|
<a href="https://romfast.ro" target="_blank" rel="noopener" class="footer-logo-link" title="romfast.ro">
|
||||||
|
<img src="./assets/romfast_logo.png" alt="Romfast" class="footer-logo">
|
||||||
|
</a>
|
||||||
|
<a href="https://romfast.ro/menu/aplicatii-online.html" target="_blank" rel="noopener">Aplicații online</a>
|
||||||
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -145,6 +145,24 @@ input.date-input {
|
|||||||
margin-top: 2px;
|
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 {
|
.button-group {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: var(--space-2);
|
gap: var(--space-2);
|
||||||
@@ -955,6 +973,31 @@ button.button {
|
|||||||
color: var(--text-muted);
|
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 {
|
.app-footer a {
|
||||||
color: var(--text-muted);
|
color: var(--text-muted);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|||||||
Reference in New Issue
Block a user