-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
42 lines (35 loc) · 886 Bytes
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* Styles for Enhanced Autoload Manager */
.eal-button {
display: inline-block;
text-decoration: none;
padding: 6px 12px;
margin-right: 4px;
border-radius: 4px;
transition: background-color 0.3s ease;
color: #fff;
text-align: center;
vertical-align: middle;
}
/* Maintains the text color on hover for all buttons */
.eal-button:hover,
.eal-button-delete:hover,
.eal-button-disable:hover {
color: #fff !important; /* Add !important to override any other styles */
}
.eal-button-delete {
background-color: #dc3545;
}
.eal-button-delete:hover {
background-color: #c82333;
}
.eal-button-disable {
background-color: #007bff;
}
.eal-button-disable:hover {
background-color: #0069d9;
}
/* Centering the action buttons */
th, td {
text-align: left;
vertical-align: middle;
}