Skip to content

Commit 82fcf65

Browse files
committed
vuejs is better
1 parent 42bab9a commit 82fcf65

File tree

3 files changed

+732
-627
lines changed

3 files changed

+732
-627
lines changed

scripts/libs/vue/index.js

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/tiktok_batchDownload.css

Lines changed: 111 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
#ufs_tiktok_batchDownload {
2+
position: fixed;
3+
z-index: 16777269;
4+
}
5+
6+
#ufs_tiktok_batchDownload a:hover {
7+
text-decoration: underline;
8+
}
9+
10+
#ufs_tiktok_batchDownload .ufs_floating_btn {
11+
border-radius: 25px;
12+
background: #444;
13+
color: white;
14+
padding: 15px;
15+
position: fixed;
16+
bottom: 25px;
17+
right: 25px;
18+
border: 1px solid #777;
19+
cursor: pointer;
20+
}
21+
22+
#ufs_tiktok_batchDownload .ufs_floating_btn:hover {
23+
background: #666;
24+
}
25+
26+
#ufs_tiktok_batchDownload .ufs_container {
27+
display: flex;
28+
position: fixed;
29+
top: 0;
30+
left: 0;
31+
width: 100vw;
32+
height: 100vh;
33+
background: rgba(0, 0, 0, 0.5);
34+
align-items: center;
35+
justify-content: center;
36+
}
37+
38+
.ufs_popup {
39+
background: #444;
40+
color: #eee;
41+
padding: 20px;
42+
border-radius: 10px;
43+
max-width: 90vw;
44+
max-height: 90vh;
45+
overflow-y: auto;
46+
overflow-x: hidden;
47+
display: flex;
48+
flex-direction: column;
49+
}
50+
51+
.ufs_popup .ufs_popup_header {
52+
align-self: flex-end;
53+
padding: 10px;
54+
}
55+
56+
.ufs_popup .table_wrap {
57+
overflow: auto;
58+
}
59+
60+
.ufs_popup table {
61+
width: 100%;
62+
}
63+
64+
.ufs_popup table,
65+
.ufs_popup th,
66+
.ufs_popup td {
67+
border: 1px solid #aaa;
68+
border-collapse: collapse;
69+
}
70+
71+
.ufs_popup table td {
72+
padding: 10px;
73+
}
74+
75+
.ufs_popup table thead {
76+
position: sticky;
77+
top: -2px;
78+
background: #333;
79+
}
80+
81+
.ufs_popup input {
82+
padding: 5px;
83+
}
84+
85+
.ufs_popup button {
86+
padding: 5px;
87+
background: #333;
88+
color: #eee;
89+
border: 1px solid #777;
90+
cursor: pointer;
91+
}
92+
93+
.ufs_popup button:hover {
94+
background: #666;
95+
}
96+
97+
.ufs_popup .ufs_avatar {
98+
width: 50px;
99+
height: 50px;
100+
cursor: pointer
101+
}
102+
103+
.ufs_popup .clickable {
104+
cursor: pointer;
105+
background: #333;
106+
user-select: none;
107+
}
108+
109+
.ufs_popup .clickable:hover {
110+
background: #666;
111+
}

0 commit comments

Comments
 (0)