blob: 8fb12f4124eea7c0e4fa9de1038c7e04b6a98258 (
plain) (
blame)
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
|
table {
width: 100%;
}
table, td, th {
vertical-align: middle;
border-spacing: 0;
white-space: nowrap;
}
table th, table td {
padding: 10px;
border-bottom: 1px solid gray;
text-align: center;
}
table tr {
cursor: pointer;
}
table tr:hover {
background-color: #e8e8e8;
}
table thead tr:hover {
background-color: #ffffff;
}
.drop {
padding: 8px;
min-height: calc(100vh - 16px);
z-index: -1;
}
.delete {
font-size: 20px;
background-color: inherit;
border: 0;
z-index: 100;
}
|