Skip to content

Commit 504b1f1

Browse files
committed
fix: visualizzazione link in aggiunta attività
1 parent c6e12d6 commit 504b1f1

2 files changed

Lines changed: 9 additions & 5 deletions

File tree

assets/src/css/style.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3122,6 +3122,10 @@ section.content, .main-footer {
31223122
border-radius: 8px;
31233123
}
31243124

3125+
.alert a {
3126+
color: #007bff;
3127+
}
3128+
31253129
/* Stili per il controllo database */
31263130
.row.align-items-center {
31273131
margin-bottom: 15px;

modules/interventi/ajax/complete.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
echo '
4848
<div class="col-md-6 mb-3">
4949
<div class="alert alert-light">
50-
<h6 class="text-primary"><i class="fa fa-file-text-o"></i> '.tr('Ultimi _NUM_ Contratti', ['_NUM_' => $numero_documenti]).'</h6>
50+
<h6><i class="fa fa-file-text-o"></i> '.tr('Ultimi _NUM_ Contratti', ['_NUM_' => $numero_documenti]).'</h6>
5151
<ul class="list-unstyled">';
5252
if (!$contratti->isEmpty()) {
5353
foreach ($contratti as $contratto) {
@@ -76,7 +76,7 @@
7676
echo '
7777
<div class="col-md-6 mb-3">
7878
<div class="alert alert-light">
79-
<h6 class="text-primary"><i class="fa fa-file-o"></i> '.tr('Ultimi _NUM_ Preventivi', ['_NUM_' => $numero_documenti]).'</h6>
79+
<h6><i class="fa fa-file-o"></i> '.tr('Ultimi _NUM_ Preventivi', ['_NUM_' => $numero_documenti]).'</h6>
8080
<ul class="list-unstyled">';
8181
if (!$preventivi->isEmpty()) {
8282
foreach ($preventivi as $preventivo) {
@@ -102,7 +102,7 @@
102102
echo '
103103
<div class="col-md-6 mb-3">
104104
<div class="alert alert-light">
105-
<h6 class="text-primary"><i class="fa fa-wrench"></i> '.tr('Ultime _NUM_ Attività', ['_NUM_' => $numero_documenti]).'</h6>
105+
<h6><i class="fa fa-wrench"></i> '.tr('Ultime _NUM_ Attività', ['_NUM_' => $numero_documenti]).'</h6>
106106
<ul class="list-unstyled">';
107107
if (!$interventi->isEmpty()) {
108108
foreach ($interventi as $intervento) {
@@ -133,7 +133,7 @@
133133
echo '
134134
<div class="col-md-6 mb-3">
135135
<div class="alert alert-light">
136-
<h6 class="text-primary"><i class="fa fa-file-pdf-o"></i> '.tr('Ultime _NUM_ Fatture', ['_NUM_' => $numero_documenti]).'</h6>
136+
<h6><i class="fa fa-file-pdf-o"></i> '.tr('Ultime _NUM_ Fatture', ['_NUM_' => $numero_documenti]).'</h6>
137137
<ul class="list-unstyled">';
138138
if (!$fatture->isEmpty()) {
139139
foreach ($fatture as $fattura) {
@@ -158,7 +158,7 @@
158158
echo '
159159
<div class="col-md-12">
160160
<div class="alert alert-warning">
161-
<h6 class="text-primary"><i class="fa fa-sticky-note-o"></i> '.tr('Note interne sul cliente').'</h6>
161+
<h6><i class="fa fa-sticky-note-o"></i> '.tr('Note interne sul cliente').'</h6>
162162
<p class="mb-0">'.(!empty($note_anagrafica) ? $note_anagrafica : tr('Nessuna nota interna per questo cliente')).'</p>
163163
</div>
164164
</div>';

0 commit comments

Comments
 (0)