56 lines
1.3 KiB
Text
56 lines
1.3 KiB
Text
<!-- _inc_bannerDemoTop.jsp V.jsp 04-05-2026 -->
|
|
<%@page contentType="text/html; charset=UTF-8" %>
|
|
<%@ taglib uri="/WEB-INF/acxent.tld" prefix="acx" %>
|
|
<%@ page language="java" import="it.acxent.jsp.*" %>
|
|
<acx:if wherecondition="false">
|
|
<div class="demo-banner">
|
|
<span class="demo-banner__label">AMBIENTE DEMO</span>
|
|
<span class="demo-banner__text">
|
|
Stai utilizzando una versione dimostrativa del gestionale Acxent.
|
|
Il database demo si resetta automaticamente ogni notte.
|
|
Per maggiori dettagli visita
|
|
<a href="https://www.acxent.it/gestionale-ncc/" target="_blank" rel="noopener">
|
|
il sito Acxent
|
|
</a>.
|
|
</span>
|
|
</div>
|
|
<style>
|
|
.demo-banner {
|
|
background-color: #ffcc00; /* giallo avviso */
|
|
color: #333333;
|
|
padding: 8px 16px;
|
|
font-size: 13px;
|
|
line-height: 1.4;
|
|
border-bottom: 1px solid #e0b800;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.demo-banner__label {
|
|
background-color: #d9534f; /* rosso demo */
|
|
color: #ffffff;
|
|
font-weight: bold;
|
|
padding: 2px 8px;
|
|
border-radius: 3px;
|
|
font-size: 11px;
|
|
letter-spacing: 0.06em;
|
|
}
|
|
|
|
.demo-banner__text {
|
|
flex: 1;
|
|
}
|
|
|
|
.demo-banner a {
|
|
color: #0056b3;
|
|
text-decoration: underline;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.demo-banner a:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
|
|
</style>
|
|
</acx:if>
|