Hallo Matthias,
ich verstehe noch nicht, warum, aber das span im button ist der Übeltäter:
#button-top span {
display:none;
}
#dokuwiki__pagetools:hover #button-top span {
display:inline;
}
Edit: selbst mit width:0 !important; overflow:hidden; bleibt die computed width auf auto. Irgend ein default style vielleicht?
Edit 2: nein, natürlich nicht, es ist nur ein inline-Element 😂 aber da kann man das etwas abändern:
#button-top span {
display:inline-block;
width:0;
}
#dokuwiki__pagetools:hover #button-top span {
width:auto;
}
LG,
CK