Quelle est l'extension qui permet de rendre visibles les outils d'édition de message uniquement lors du survol avec la souris ?

Par ailleurs, cela ne pose t'il pas de problème lors de l'utilisation du forum sur un smartphone ou une tablette ?
Code: Tout sélectionner
.button {
font-size : 12px;
font-variant : small-caps;
line-height : 20px;
transition : all 0.2s;
}
.button.locked-button:hover {
cursor : not-allowed;
}
.post-buttons .button {
line-height : 24px;
position : relative;
width : 24px;
height : 24px;
margin : 0 auto;
padding : 0;
border-width : 0;
}
.post-buttons .button > .icon {
position : relative;
}
.post-buttons .button:before {
position : absolute;
top : 0;
right : 0;
bottom : 0;
left : 0;
display : block;
content : '';
border-radius : 50%;
}
.post-buttons .button:hover:before {
transition : background 0.3s linear;
}
.post-buttons .button:focus:before {
animation-name : scaleIn;
animation-duration : 0.6s;
animation-timing-function : ease-out;
}
.notouch.section-viewtopic .post-buttons {
transition : opacity 0.4s;
opacity : 0;
}
.notouch.section-viewtopic .post:hover .post-buttons {
opacity : 1;
}
.deleted .post-buttons {
display : none;
}
/* end extra CSS*/
Code: Tout sélectionner
<link href="{T_THEME_PATH}/ETCstyle.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
Code: Tout sélectionner
<link href="{T_THEME_PATH}/stylesheet.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">