gg
This commit is contained in:
parent
f85868677a
commit
227f0ffbc3
|
|
@ -198,7 +198,7 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ==========================================================================
|
/* ==========================================================================
|
||||||
BREADCRUMB
|
BREADCRUMB MINIMAL
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
.breadcrumb {
|
.breadcrumb {
|
||||||
|
|
@ -208,27 +208,26 @@ body {
|
||||||
margin-bottom: 1.5rem;
|
margin-bottom: 1.5rem;
|
||||||
box-shadow: var(--shadow-sm);
|
box-shadow: var(--shadow-sm);
|
||||||
border: 1px solid var(--border-color);
|
border: 1px solid var(--border-color);
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
list-style: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.breadcrumb-item {
|
/* Style pour la version arrondie */
|
||||||
display: flex;
|
.breadcrumb.rounded-pill {
|
||||||
align-items: center;
|
border-radius: 50rem !important;
|
||||||
|
padding: 0.5rem 1.25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Personnalisation légère du séparateur */
|
||||||
.breadcrumb-item + .breadcrumb-item::before {
|
.breadcrumb-item + .breadcrumb-item::before {
|
||||||
content: ">";
|
|
||||||
color: var(--secondary-color);
|
color: var(--secondary-color);
|
||||||
padding: 0 0.5rem;
|
opacity: 0.7;
|
||||||
font-weight: normal;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Style des liens */
|
||||||
.breadcrumb-item a {
|
.breadcrumb-item a {
|
||||||
color: var(--primary-color);
|
color: var(--primary-color);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
transition: var(--transition);
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.breadcrumb-item a:hover {
|
.breadcrumb-item a:hover {
|
||||||
|
|
@ -236,6 +235,7 @@ body {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Style de l'élément actif */
|
||||||
.breadcrumb-item.active {
|
.breadcrumb-item.active {
|
||||||
color: var(--primary-color);
|
color: var(--primary-color);
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
|
|
|
||||||
|
|
@ -412,7 +412,7 @@ $retourVue = $infovue['lienRetour'];
|
||||||
'cursor': 'pointer'
|
'cursor': 'pointer'
|
||||||
});
|
});
|
||||||
|
|
||||||
// Ajouter un bouton de test debug (à enlever en production)
|
/* Ajouter un bouton de test debug (à enlever en production)
|
||||||
if (typeof modeDev !== 'undefined' && modeDev == "1") {
|
if (typeof modeDev !== 'undefined' && modeDev == "1") {
|
||||||
$('body').append(
|
$('body').append(
|
||||||
'<button id="debugTestPanel" style="position:fixed; bottom:20px; left:20px; z-index:9999; padding:10px; background:red; color:white; border:none; border-radius:5px;">DEBUG: Test Panel</button>'
|
'<button id="debugTestPanel" style="position:fixed; bottom:20px; left:20px; z-index:9999; padding:10px; background:red; color:white; border:none; border-radius:5px;">DEBUG: Test Panel</button>'
|
||||||
|
|
@ -431,7 +431,7 @@ $retourVue = $infovue['lienRetour'];
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
// 6. Synchronisation du badge de notifications
|
// 6. Synchronisation du badge de notifications
|
||||||
function syncBadge() {
|
function syncBadge() {
|
||||||
var count = parseInt($("#msgNonLus").val()) || 0;
|
var count = parseInt($("#msgNonLus").val()) || 0;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user