Skip to content

Commit 616b8dd

Browse files
committed
Update cursor styles for backup buttons
Add explicit cursor rules for backup action buttons: set .btn-download to use pointer to indicate clickability, and set .btn-delete and .btn-restore to default cursor to avoid implying they are direct clickable links. Improves UI feedback and consistency.
1 parent ed79c8b commit 616b8dd

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

backup.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3227,18 +3227,21 @@ function getExistingBackups() {
32273227
background: #16a34a;
32283228
color: #fff;
32293229
box-shadow: 0 10px 20px rgba(22, 163, 74, 0.18);
3230+
cursor: pointer;
32303231
}
32313232

32323233
.btn-delete {
32333234
background: #b91c1c;
32343235
color: #fff;
32353236
box-shadow: 0 10px 20px rgba(185, 28, 28, 0.18);
3237+
cursor: default;
32363238
}
32373239

32383240
.btn-restore {
32393241
background: #f59e0b;
32403242
color: #111827;
32413243
box-shadow: 0 10px 20px rgba(245, 158, 11, 0.18);
3244+
cursor: default;
32423245
}
32433246

32443247
.btn-download:hover, .btn-delete:hover, .btn-restore:hover { transform: translateY(-1px); }

0 commit comments

Comments
 (0)