You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
823 B
41 lines
823 B
/* Style concernant la confirmation de suppression d'une pastille */
|
|
.confirmation-suppression {
|
|
display: none;
|
|
color: #fff;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
background-color: #dc3545;
|
|
}
|
|
|
|
.confirmation-suppression:hover {
|
|
color: #fff;
|
|
background-color: #bb2d3b;
|
|
border-color: #b02a37;
|
|
}
|
|
|
|
.input-checkbox-supprimer-valeur:checked ~ .confirmation-suppression {
|
|
display: inline;
|
|
}
|
|
|
|
.visuellement-cache {
|
|
position: absolute;
|
|
left: -100vw;
|
|
}
|
|
|
|
.detail-utilisateur {
|
|
display: none;
|
|
color: #fff;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.input-checkbox-detail-utilisateur:checked ~ .detail-utilisateur {
|
|
display: block;
|
|
}
|
|
|
|
/* Sources :
|
|
* https://stackoverflow.com/questions/6019845/show-hide-div-on-click-with-css
|
|
* https://dabblet.com/gist/1506530
|
|
* https://css-tricks.com/the-checkbox-hack/
|
|
*/
|