Copy paste to clipboard button added. Copy paste to clipboard shortcut added

This commit is contained in:
ribas160
2024-12-28 18:42:46 +02:00
parent c1333e5831
commit 6c39a1441c
45 changed files with 340 additions and 38 deletions
+39
View File
@@ -175,3 +175,42 @@ html[dir="rtl"] #language {
html[dir="rtl"] #deletelink, html[dir="rtl"] #qrcodemodalClose {
float: left;
}
#prettyprint {
padding-right: 30px;
}
#prettymessageCopyBtn {
position: absolute;
top: 5px;
right: 20px;
width: 25px;
height: 25px;
padding: 0;
background: none;
border: none;
z-index: 1;
}
#prettymessageCopyBtn svg {
width: 100%;
}
#copyIcon {
fill: rgb(145, 152, 161);
opacity: 0.4;
transition: all 0.3s ease;
}
#copyIcon:hover {
opacity: 1;
}
#copySuccessIcon {
fill: rgb(63, 185, 80);
display: none;
}
#copyShortcutHint {
margin-bottom: 5px;
}