-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
44 lines (37 loc) · 897 Bytes
/
style.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
43
44
body {
background: #141516;
color: #fff;
}
#Update {
display: none;
}
/* Styling for table header */
#crudTable th {
background-color: #23262a;
color: #fff; /* Set text color if needed */
}
/* Styling for table rows */
#crudTable td {
background-color: #32383e;
color: #fff; /* Set text color if needed */
}
/* Add this to your style.css file */
.disabled-button {
pointer-events: none; /* Prevent clicks */
opacity: 0.5; /* Visually indicate disabled state */
}
/* Highlight style for the edited row */
#crudTable tbody tr.edit-highlight td {
background-color: #788ea8; /* Light gray background */
color: #000; /* Set text color as needed */
}
.btn-sm {
padding: 0.2rem 0.5rem;
font-size: 0.875rem;
line-height: 1.5;
border-radius: 0.2rem;
}
/* Custom style to display buttons inline */
td button {
display: inline-block;
}