Skip to content

Commit 9e9b382

Browse files
committed
add
1 parent 8222fc1 commit 9e9b382

8 files changed

Lines changed: 354 additions & 121 deletions

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ src/
33
src
44
dev/
55
dev
6+
dev_tools/
7+
dev_tools
8+
dev_restored
9+
dev_restored/
610
# generated types
711
.astro/
812

dist/main.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

esbuild.config.js

Lines changed: 0 additions & 118 deletions
This file was deleted.

generated/main.js

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

generated/style-manage.css

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
2+
#wm_c_manage{
3+
font-size:28px;
4+
padding: 0px 3px 4px 1px ! important;
5+
position: fixed;
6+
z-index: 99999999 ! important;
7+
background: #fff;
8+
box-shadow: 0 0 6px #999;
9+
cursor: pointer;
10+
border-radius: 100%;
11+
width: 35px;
12+
height: 35px;
13+
bottom: 12px;
14+
left: 12px;
15+
color: #555;
16+
display: flex;
17+
align-items: center;
18+
text-align: center;
19+
}
20+
#wm_c_manage svg{
21+
width:30px ! important;
22+
height:30px ! important;
23+
margin:auto;
24+
}
25+
*[data-position^="bottom"] #wm_c_manage{
26+
bottom: -23px ! important;
27+
transition: bottom 0.3s ease;
28+
border-radius:3px 3px 0 0;
29+
}
30+
*[data-position^="top"] #wm_c_manage{
31+
top: -23px ! important;
32+
transition: top 0.3s ease;
33+
border-radius: 0 0 3px 3px;
34+
}
35+
*[data-position^="bottom"] #wm_c_manage:hover{
36+
bottom: 0px ! important;
37+
}
38+
*[data-position^="top"] #wm_c_manage:hover{
39+
top: 0px ! important;
40+
}

0 commit comments

Comments
 (0)