Improved copiable fields

This commit is contained in:
2024-09-11 17:22:12 +02:00
parent bdba6db42d
commit 379fef4b00
3 changed files with 24 additions and 6 deletions

View File

@ -118,3 +118,15 @@ i.disabled {
span.expired {
color: #888;
}
.copy:hover {
transform: scale(1.5, 1.5);
-ms-transform: scale(1.5, 1.5)); /* IE 9 */
-webkit-transform: scale(1.5, 1.5);
}
.copy:hover::after {
content: "📄 click to copy";
font-size: 80%;
/* font-style:oblique; */
font-family: monospace;
}