diff --git a/src/main/resources/messages_en_GB.properties b/src/main/resources/messages_en_GB.properties
index bfd98861b..9b1215c18 100644
--- a/src/main/resources/messages_en_GB.properties
+++ b/src/main/resources/messages_en_GB.properties
@@ -818,7 +818,7 @@ sign.save=Save Signature
sign.personalSigs=Personal Signatures
sign.sharedSigs=Shared Signatures
sign.noSavedSigs=No saved signatures found
-
+sign.addToAll=Add to all pages
#repair
repair.title=Repair
diff --git a/src/main/resources/static/css/general.css b/src/main/resources/static/css/general.css
index 9ef750ff4..d5948f99b 100644
--- a/src/main/resources/static/css/general.css
+++ b/src/main/resources/static/css/general.css
@@ -100,3 +100,30 @@ input:-webkit-autofill:focus {
input[data-autocompleted] {
background-color: transparent !important;
}
+.btn-tooltip {
+ position: absolute;
+ display: none;
+ bottom: 3.2rem;
+ white-space: nowrap;
+ flex-wrap: nowrap;
+ width: fit-content;
+ padding: 7px;
+ background-color: rgba(0, 29, 41, 0.9);
+ border-radius: 3px;
+ font-size: 12px;
+ color: whitesmoke;
+ animation: fadeup 0.15s linear;
+}
+@keyframes fadeup {
+ 0% {
+ transform: translateY(10px);
+ opacity: 0;
+ }
+ 100% {
+ transform: translateY(0);
+ opacity: 1;
+ }
+}
+.btn:hover .btn-tooltip {
+ display: block;
+ }
diff --git a/src/main/resources/static/css/multi-tool.css b/src/main/resources/static/css/multi-tool.css
index 6ad2a6063..99e15f231 100644
--- a/src/main/resources/static/css/multi-tool.css
+++ b/src/main/resources/static/css/multi-tool.css
@@ -286,34 +286,6 @@ label {
.checkbox-label {
font-size: medium;
}
-
-.btn-tooltip {
- position: absolute;
- display: none;
- bottom: 3.2rem;
- white-space: nowrap;
- flex-wrap: nowrap;
- width: fit-content;
- padding: 7px;
- background-color: rgba(0, 29, 41, 0.9);
- border-radius: 3px;
- font-size: 12px;
- color: whitesmoke;
- animation: fadeup 0.15s linear;
-}
.btn {
- position: relative; /* Ensure the button is the positioning context for its children */
+ position: relative;
}
-@keyframes fadeup {
- 0% {
- transform: translateY(10px);
- opacity: 0;
- }
- 100% {
- transform: translateY(0);
- opacity: 1;
- }
-}
-.btn:hover .btn-tooltip {
- display: block;
- }
diff --git a/src/main/resources/templates/sign.html b/src/main/resources/templates/sign.html
index 78f9c3547..afa683a26 100644
--- a/src/main/resources/templates/sign.html
+++ b/src/main/resources/templates/sign.html
@@ -375,6 +375,7 @@
content_copy
+