categorie

This commit is contained in:
Surya Paolo
2025-12-07 15:17:37 +01:00
parent f238630dd7
commit 6fdb101092
5 changed files with 31 additions and 12 deletions

View File

@@ -445,6 +445,15 @@
i {
color: rgba($mainColor, 0.6); // Icona location con colore primario attenuato
}
.cities-text-bold {
font-weight: bold;
font-size: 1.1rem;
@media (max-width: $mobile-breakpoint) {
font-size: 1rem;
}
}
}
.cities-contrib-row {
@@ -556,6 +565,7 @@
}
}
.categories-dialog {
.dialog-header {
padding: 16px 20px;

View File

@@ -242,7 +242,7 @@
v-for="(prefId, ind) of myrec.preferences"
:key="ind"
size="32px"
:style="`background-color: ${tools.getPreferenceById(prefId)?.color || 'grey'}; cursor: pointer;`"
:style="`background-color: ${tools.getPreferenceById(prefId)?.color || 'grey'}; opacity: 0.85; cursor: pointer;`"
class="preference-icon-avatar"
@click.stop="showPreferencesDialog = true"
>
@@ -341,7 +341,9 @@
v-for="(rec, ind) of myrec.mycities"
:key="ind"
>
<span v-if="ind > 0">, </span>{{ rec.comune }} ({{ rec.prov }})
<span v-if="ind > 0">, </span>
<span v-if="table === shared_consts.TABLES_MYHOSPS" class="cities-text-bold">{{ rec.comune }} ({{ rec.prov }})</span>
<span v-else>{{ rec.comune }} ({{ rec.prov }})</span>
</span>
</div>
</q-item-label>
@@ -431,7 +433,7 @@
v-for="(rec, ind) of myrec.preferences"
:key="ind"
class="category-chip shadow-3"
:style="`background-color: ${tools.getPreferenceById(rec).color}; color: white;`"
:style="`background-color: ${tools.getPreferenceById(rec).color}; opacity: 0.85; color: white;`"
>
<q-icon
:name="tools.getPreferenceById(rec).icon"

View File

@@ -226,7 +226,6 @@
⚠️ Attenzione: Se non si sceglie il Comune di Residenza (il passaggio precedente) non è possibile poter scegliere la Provincia in cui accedere al Circuito RIS del tuo territorio.
</div>
<div v-if="mycircuit">mycircuit.value: {{ mycircuit.name }}</div>
<q-select
v-if="mylistcircuits && mylistcircuits.length > 1"
:behavior="$q.platform.is.ios === true ? 'dialog' : 'menu'"