Officialisation couleur Arc noire + Ajout badges sur pages liste noire dest et exp avec fleche dans liste

pull/7/head
Nicolas MORIN 3 years ago
parent 70e77dc11c
commit 5d28535b3f

@ -74,3 +74,12 @@ body {
.interieur-pastille-bleu {
background-color: #cfe2ff;
}
.chevron-dst {
height: 1em;
padding-bottom: 0.1em;
}
.fond-arc-noire{
background-color: #343a40;
}

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right"><polyline points="9 18 15 12 9 6"></polyline></svg>

After

Width:  |  Height:  |  Size: 270 B

@ -6,7 +6,7 @@
if (isset($_GET['page']) && !empty($_GET['page'])) {
?>
<nav class="navbar navbar-expand-lg navbar-dark" style="background-color: #343a40;">
<nav class="navbar navbar-expand-lg navbar-dark fond-arc-noire">
<div class="container-fluid">
<a class="navbar-brand" href="/pages/gestion/administration.php?page=accueil">Courtail</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">

@ -53,7 +53,7 @@ require_once($_SERVER["DOCUMENT_ROOT"]."/services/fonctions/messages/messages.ph
<script>
const body = document.querySelector('body');
body.style.backgroundColor = '#343a40';
body.classList.add("fond-arc-noire");
</script>
<?php

@ -69,7 +69,7 @@ if (isset($_GET['sousPage']) && !empty($_GET['sousPage'])) {
<label for="eteint{$liste_entrees_liste_noires_dst_valeurs['id']}" class="interrupteur-eteint"></label>
</div>
<div class="titre-pastille">
<span>{$liste_entrees_liste_noires_dst_valeurs['courriel']} -> {$liste_entrees_liste_noires_dst_valeurs['action']}</span>
<span>{$liste_entrees_liste_noires_dst_valeurs['courriel']} <img class="chevron-dst" src="/fichiers/svg/chevron-right.svg" /> <span class="badge fond-arc-noire">{$liste_entrees_liste_noires_dst_valeurs['action']}</span></span>
</div>
<div>
<label class="input-label-supprimer-valeur btn btn-danger btn-sm" for="supprimer-valeur-{$liste_entrees_liste_noires_dst_valeurs['id']}"><img src="/fichiers/svg/trash-2.svg"></label>
@ -139,7 +139,7 @@ if (isset($_GET['sousPage']) && !empty($_GET['sousPage'])) {
<label for="eteint{$liste_entrees_liste_noires_exp_valeurs['id']}" class="interrupteur-eteint"></label>
</div>
<div class="titre-pastille">
<span>{$liste_entrees_liste_noires_exp_valeurs['courriel']}</span>
<span><span class="badge fond-arc-noire">{$liste_entrees_liste_noires_exp_valeurs['code_retour']}</span> <img class="chevron-dst" src="/fichiers/svg/chevron-right.svg" /> {$liste_entrees_liste_noires_exp_valeurs['courriel']}</span>
</div>
<div>
<label class="input-label-supprimer-valeur btn btn-danger btn-sm" for="supprimer-valeur-{$liste_entrees_liste_noires_exp_valeurs['id']}"><img src="/fichiers/svg/trash-2.svg"></label>

Loading…
Cancel
Save