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.
37 lines
783 B
37 lines
783 B
/* Style concernant la confirmation de suppression d'un alias virtuel */
|
|
.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;
|
|
}
|
|
|
|
/*.input-label-supprimer-valeur {
|
|
color: #ffffff;
|
|
background: #e23026;
|
|
padding: 0.5rem 1rem;
|
|
border-radius: 0.5rem;
|
|
}*/
|
|
|
|
.visuellement-cache {
|
|
position: absolute;
|
|
left: -100vw;
|
|
}
|
|
|
|
/* 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/
|
|
*/
|