```
✨ feat(templates): Améliore la lisibilité et l'esthétique de l'interface
Ce commit met à jour les couleurs et les styles de texte dans plusieurs
templates pour améliorer la lisibilité et l'esthétique globale de
l'interface utilisateur. Les couleurs de texte secondaires sont
ajustées pour un meilleur contraste.
```
This commit is contained in:
@@ -28,7 +28,7 @@
|
||||
|
||||
<nav class="flex flex-col p-6 space-y-8 h-[calc(100vh-80px)] overflow-y-auto custom-scrollbar">
|
||||
<div>
|
||||
<p class="px-4 mb-4 text-[10px] font-semibold text-slate-500 uppercase tracking-[0.2em]">Menu Principal</p>
|
||||
<p class="px-4 mb-4 text-[10px] font-semibold text-slate-300 uppercase tracking-[0.2em]">Menu Principal</p>
|
||||
<div class="space-y-1">
|
||||
{% macro nav_link(path, label, icon_svg, current_route) %}
|
||||
{% set isActive = app.request.get('_route') == current_route %}
|
||||
@@ -49,7 +49,7 @@
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<p class="px-4 mb-4 text-[10px] font-semibold text-slate-500 uppercase tracking-[0.2em]">Configuration</p>
|
||||
<p class="px-4 mb-4 text-[10px] font-semibold text-slate-300 uppercase tracking-[0.2em]">Configuration</p>
|
||||
<details class="group" {{ (app.request.get('_route') matches '/^app_crm_administrateur/' or app.request.get('_route') == 'app_crm_audit_logs') ? 'open' }}>
|
||||
<summary class="list-none w-full flex items-center justify-between px-4 py-3 rounded-xl hover:bg-slate-800 text-slate-400 transition-all duration-200 cursor-pointer">
|
||||
<div class="flex items-center space-x-3">
|
||||
@@ -163,7 +163,7 @@
|
||||
</p>
|
||||
<p class="text-sm text-slate-400 font-medium">{{ message }}</p>
|
||||
</div>
|
||||
<button type="button" onclick="this.parentElement.remove()" class="ml-auto text-slate-500 hover:text-slate-300">
|
||||
<button type="button" onclick="this.parentElement.remove()" class="ml-auto text-slate-300 hover:text-slate-300">
|
||||
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path d="M6 18L18 6M6 6l12 12" /></svg>
|
||||
</button>
|
||||
</div>
|
||||
@@ -179,18 +179,18 @@
|
||||
<div class="bg-slate-800/40 backdrop-blur-xl border border-slate-700/50 rounded-[2rem] p-6 shadow-xl">
|
||||
<div class="flex flex-col md:flex-row items-center justify-between gap-4 text-center md:text-left">
|
||||
<div class="space-y-1">
|
||||
<p class="text-[10px] font-black text-slate-500 uppercase tracking-[0.2em]">Propulsé par</p>
|
||||
<p class="text-[10px] font-black text-slate-300 uppercase tracking-[0.2em]">Propulsé par</p>
|
||||
<p class="text-sm font-bold text-white">
|
||||
Développé par <span class="text-blue-600">SARL SITECONSEIL</span>
|
||||
</p>
|
||||
</div>
|
||||
<div class="flex flex-col items-center md:items-end space-y-1">
|
||||
<div class="flex items-center space-x-4">
|
||||
<a href="https://www.siteconseil.fr" target="_blank" class="text-xs font-medium text-slate-500 hover:text-blue-600 transition-colors underline decoration-blue-500/30 underline-offset-4">www.siteconseil.fr</a>
|
||||
<a href="https://www.siteconseil.fr" target="_blank" class="text-xs font-mediumtext-slate-300 hover:text-blue-600 transition-colors underline decoration-blue-500/30 underline-offset-4">www.siteconseil.fr</a>
|
||||
<span class="w-1 h-1 bg-slate-700 rounded-full"></span>
|
||||
<a href="mailto:s.com@siteconseil.fr" class="text-xs font-medium text-slate-500 hover:text-blue-600 transition-colors">s.com@siteconseil.fr</a>
|
||||
<a href="mailto:s.com@siteconseil.fr" class="text-xs font-mediumtext-slate-300 hover:text-blue-600 transition-colors">s.com@siteconseil.fr</a>
|
||||
</div>
|
||||
<p class="text-[9px] font-black text-slate-500 uppercase tracking-widest">
|
||||
<p class="text-[9px] font-black text-slate-300 uppercase tracking-widest">
|
||||
Crm Engine <span class="text-slate-300">1.0.0</span>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user