blob: 2b8e510323e829609bd464b6c0906438f38abb66 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
* {
transition: all .2s linear;
}
.navigation {
position: relative;
padding: 0;
}
.navigation a {
text-decoration: none;
color: inherit;
}
.progress {
display: none;
color: green;
float: right;
}
table {
table-layout: fixed;
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;
}
tr td, tr th {
overflow: hidden;
text-overflow: ellipsis;
}
colgroup col:nth-child(1) {
width: 5%;
}
colgroup col:nth-child(2) {
width: 25%;
}
colgroup col:nth-child(3) {
width: 15%;
}
colgroup col:nth-child(4) {
width: 25%;
}
colgroup col:nth-child(5) {
width: 10%;
}
colgroup col:nth-child(6) {
width: 10%;
}
colgroup col:nth-child(7) {
width: 10%;
}
.drop {
padding: 8px;
min-height: calc(100vh - 16px);
z-index: -1;
}
.drop.hover {
background: rgba(12, 99, 250, 0.3) !important;
}
.share {
font-size: 20px;
background-color: inherit;
border: 0;
z-index: 100;
cursor: pointer;
}
.share:hover {
transform: scale(1.3);
color: dodgerblue;
}
.download, .downloadButton {
font-size: 20px;
color: inherit;
background-color: inherit;
border: 0;
z-index: 100;
cursor: pointer;
}
.downloadButton:hover {
transform: scale(1.3);
color: green;
}
.delete {
font-size: 20px;
background-color: inherit;
border: 0;
z-index: 100;
cursor: pointer;
}
.delete:hover {
transform: scale(1.3);
color: red;
}
|