diff --git a/css/activities.css b/css/activities.css
index 48464b8b9e..28312f0e8c 100644
--- a/css/activities.css
+++ b/css/activities.css
@@ -143,15 +143,9 @@
   justify-content: center;
   width: 48px;
   height: 48px;
-  cursor: pointer;
-  color: white;
-  background-color: transparent;
-  transition: background-color 0.3s;
+  cursor: pointer; 
 }
 
-#restoreLastIcon:hover, #restoreAllIcon:hover {
-  background-color: rgba(255, 255, 255, 0.2);
-}
 
 .material-icons.md-48 {
   font-size: 32px;
diff --git a/js/activity.js b/js/activity.js
index 580ffb8214..f05f363a3c 100644
--- a/js/activity.js
+++ b/js/activity.js
@@ -3484,6 +3484,8 @@ class Activity {
                 }
                 trashView.classList.add('hidden');
             });
+            restoreLastIcon.setAttribute("title", _("Restore Last Item"));
+            restoreAllIcon.setAttribute("title", _("Restore All Items"));
         
             buttonContainer.appendChild(restoreLastIcon);
             buttonContainer.appendChild(restoreAllIcon);