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.
26 lines
602 B
26 lines
602 B
3 years ago
|
/* Style concernant la confirmation de suppression d'un alias virtuel */
|
||
|
.confirmation-suppression {
|
||
|
display: none;
|
||
|
color: #e23026;
|
||
|
}
|
||
|
.input-checkbox-supprimer-alias:checked ~ .confirmation-suppression {
|
||
|
display: inline;
|
||
|
}
|
||
|
|
||
|
.input-label-supprimer-alias {
|
||
|
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/
|
||
|
*/
|