hexo-theme-solitude 1.1.3 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +674 -19
- package/_config.yml +243 -193
- package/languages/en-US.yml +1 -0
- package/languages/zh-CN.yml +8 -8
- package/layout/404.pug +24 -0
- package/layout/archive.pug +11 -0
- package/layout/category.pug +16 -0
- package/layout/includes/console.pug +42 -0
- package/layout/includes/footer.pug +71 -0
- package/layout/includes/head/config.pug +79 -0
- package/layout/includes/head/pwa.pug +59 -0
- package/layout/includes/head.pug +29 -0
- package/layout/includes/header.pug +4 -0
- package/layout/includes/inject/body.pug +68 -0
- package/layout/{partial/compoment/inject/head.ejs → includes/inject/head.pug} +59 -35
- package/layout/includes/layout.pug +35 -0
- package/layout/{partial/loading.ejs → includes/loading.pug} +19 -17
- package/layout/includes/mixins/articleSort.pug +14 -0
- package/layout/includes/mixins/pagination.pug +8 -0
- package/layout/includes/nav.pug +22 -0
- package/layout/includes/page/about.pug +10 -0
- package/layout/includes/page/categories.pug +8 -0
- package/layout/includes/page/default.pug +2 -0
- package/layout/includes/page/echarts.pug +7 -0
- package/layout/includes/page/equipment.pug +3 -0
- package/layout/includes/page/links.pug +35 -0
- package/layout/includes/page/moments.pug +5 -0
- package/layout/includes/page/rss.pug +22 -0
- package/layout/includes/page/says.pug +20 -0
- package/layout/includes/page/tags.pug +8 -0
- package/layout/includes/page/tlink.pug +9 -0
- package/layout/includes/recent-posts.pug +9 -0
- package/layout/includes/sidebar.pug +17 -0
- package/layout/includes/widgets/aside/aside.pug +18 -0
- package/layout/includes/widgets/aside/asideAllInfo.pug +8 -0
- package/layout/includes/widgets/aside/asideArchive.pug +9 -0
- package/layout/includes/widgets/aside/asideFlipCard.pug +5 -0
- package/layout/includes/widgets/aside/asideHistory.pug +8 -0
- package/layout/includes/widgets/aside/asideInfoCard.pug +22 -0
- package/layout/includes/widgets/aside/asideNewestPost.pug +16 -0
- package/layout/includes/widgets/aside/asidePower.pug +19 -0
- package/layout/includes/widgets/aside/asideSwitch.pug +26 -0
- package/layout/includes/widgets/aside/asideTag.pug +11 -0
- package/layout/includes/widgets/aside/asideToc.pug +5 -0
- package/layout/includes/widgets/aside/asideWebInfo.pug +40 -0
- package/layout/includes/widgets/aside/asideWelcome.pug +12 -0
- package/layout/includes/widgets/home/banner.pug +16 -0
- package/layout/includes/widgets/home/bbTimeList.pug +8 -0
- package/layout/includes/widgets/home/categoryBar.pug +10 -0
- package/layout/includes/widgets/home/categoryGroup.pug +9 -0
- package/layout/includes/widgets/home/hometop.pug +9 -0
- package/layout/includes/widgets/home/postList.pug +26 -0
- package/layout/includes/widgets/home/rencentPost.pug +26 -0
- package/layout/includes/widgets/home/topGroup.pug +27 -0
- package/layout/includes/widgets/nav/left.pug +10 -0
- package/layout/includes/widgets/nav/menu.pug +16 -0
- package/layout/includes/widgets/nav/right.pug +23 -0
- package/layout/includes/widgets/page/about/authorinfo.pug +12 -0
- package/layout/includes/widgets/page/about/award.pug +34 -0
- package/layout/includes/widgets/page/about/contentinfo.pug +38 -0
- package/layout/includes/widgets/page/about/hobbies.pug +33 -0
- package/layout/includes/widgets/page/about/motto.pug +19 -0
- package/layout/includes/widgets/page/about/other.pug +61 -0
- package/layout/includes/widgets/page/about/personalities.pug +16 -0
- package/layout/includes/widgets/page/about/skillsinfo.pug +41 -0
- package/layout/includes/widgets/page/banner.pug +14 -0
- package/layout/includes/widgets/page/equipment/content.pug +23 -0
- package/layout/includes/widgets/page/links/banner.pug +30 -0
- package/layout/includes/widgets/page/links/linksCard.pug +18 -0
- package/layout/includes/widgets/page/links/linksItem.pug +14 -0
- package/layout/includes/widgets/page/moments/angle.pug +24 -0
- package/layout/includes/widgets/page/moments/index.pug +18 -0
- package/layout/includes/widgets/page/says/saysBottom.pug +11 -0
- package/layout/includes/widgets/page/says/saysContent.pug +6 -0
- package/layout/includes/widgets/page/says/saysFunction.pug +10 -0
- package/layout/includes/widgets/page/says/saysMeta.pug +7 -0
- package/layout/includes/widgets/post/award.pug +48 -0
- package/layout/includes/widgets/post/copyright.pug +27 -0
- package/layout/includes/widgets/post/postMeta.pug +55 -0
- package/layout/includes/widgets/post/postNav.pug +25 -0
- package/layout/includes/widgets/post/wave.pug +9 -0
- package/layout/includes/widgets/randomlink.pug +32 -0
- package/layout/includes/widgets/rightside/index.pug +74 -0
- package/layout/includes/widgets/third-party/comments/comment.pug +14 -0
- package/layout/includes/widgets/third-party/comments/gitalk.pug +0 -0
- package/layout/{partial/compoment/third-party/comments/twikoo.ejs → includes/widgets/third-party/comments/twikoo.pug} +8 -9
- package/layout/includes/widgets/third-party/comments/valine.pug +0 -0
- package/layout/includes/widgets/third-party/music.pug +3 -0
- package/layout/includes/widgets/third-party/pjax.pug +30 -0
- package/layout/includes/widgets/third-party/search/algolia-search.pug +16 -0
- package/layout/includes/widgets/third-party/search/index.pug +7 -0
- package/layout/includes/widgets/third-party/search/local-search.pug +15 -0
- package/layout/index.pug +20 -0
- package/layout/page.pug +32 -0
- package/layout/post.pug +43 -0
- package/layout/tag.pug +19 -0
- package/package.json +4 -4
- package/scripts/event/page.js +20 -2
- package/scripts/filter/checkThemeConfig.js +0 -1
- package/scripts/filter/randomPosts.js +0 -1
- package/scripts/helper/{charts.js → echarts.js} +27 -28
- package/scripts/helper/stylus.js +23 -0
- package/scripts/tags/bvideo.js +1 -36
- package/source/css/_comment/index.styl +121 -0
- package/source/css/_comment/twikoo.styl +515 -0
- package/source/css/_extra/console.styl +354 -0
- package/source/css/_extra/rightmenu.styl +83 -0
- package/source/css/_global/animation.css +756 -0
- package/source/css/_global/function.styl +83 -0
- package/source/css/_global/index.styl +120 -0
- package/source/css/_global/var.styl +1 -0
- package/source/css/_layout/articleSort.styl +199 -0
- package/source/css/_layout/base.styl +392 -0
- package/source/css/_layout/footer.styl +359 -0
- package/source/css/_layout/header.styl +1331 -0
- package/source/css/_layout/index.styl +293 -0
- package/source/css/_layout/sidebar.styl +226 -0
- package/source/css/_mode/index.styl +52 -0
- package/source/css/_page/about.styl +944 -0
- package/source/css/_page/category.styl +141 -0
- package/source/css/_page/equipment.styl +108 -0
- package/source/css/_page/error.styl +161 -0
- package/source/css/_page/home.styl +58 -0
- package/source/css/_page/homeTop.styl +1035 -0
- package/source/css/_page/index.styl +22 -0
- package/source/css/_page/link.styl +433 -0
- package/source/css/_page/moment.styl +186 -0
- package/source/css/_page/rss.styl +87 -0
- package/source/css/_page/says.styl +353 -0
- package/source/css/_page/tag.styl +56 -0
- package/source/css/_post/commentBarrage.styl +149 -0
- package/source/css/_post/externalTags.styl +694 -0
- package/source/css/_post/highlight.styl +96 -0
- package/source/css/_post/index.styl +935 -0
- package/source/css/_post/pagination.styl +467 -0
- package/source/css/_post/postContent.styl +957 -0
- package/source/css/_post/relatedPost.styl +160 -0
- package/source/css/_post/reward.styl +217 -0
- package/source/css/_search/algolia-search.styl +206 -0
- package/source/css/_search/local-search.styl +112 -0
- package/source/css/_widgets/aside/allinfo.styl +134 -0
- package/source/css/_widgets/aside/flip.styl +68 -0
- package/source/css/_widgets/aside/history.styl +35 -0
- package/source/css/_widgets/aside/index.styl +156 -0
- package/source/css/_widgets/aside/info.styl +263 -0
- package/source/css/_widgets/aside/newPost.styl +55 -0
- package/source/css/_widgets/aside/power.styl +90 -0
- package/source/css/_widgets/aside/toc.styl +85 -0
- package/source/css/_widgets/aside/welcome.styl +14 -0
- package/source/css/_widgets/index.styl +3 -0
- package/source/css/index.styl +40 -0
- package/source/js/commentBarrage.js +8 -5
- package/source/js/extend/console/comment.js +60 -63
- package/source/js/extend/covercolor/local.js +1 -1
- package/source/js/extend/search/algolia-search.js +104 -111
- package/source/js/extend/search/local-search.js +7 -7
- package/source/js/main.js +655 -505
- package/source/js/utils.js +131 -137
- package/layout/404.ejs +0 -34
- package/layout/archive.ejs +0 -10
- package/layout/category.ejs +0 -18
- package/layout/index.ejs +0 -20
- package/layout/layout.ejs +0 -30
- package/layout/page/about.ejs +0 -15
- package/layout/page/categories.ejs +0 -12
- package/layout/page/circle.ejs +0 -5
- package/layout/page/echarts.ejs +0 -1
- package/layout/page/equipment.ejs +0 -2
- package/layout/page/links.ejs +0 -46
- package/layout/page/page.ejs +0 -3
- package/layout/page/rss.ejs +0 -39
- package/layout/page/says.ejs +0 -17
- package/layout/page/tags.ejs +0 -12
- package/layout/page/tlink.ejs +0 -11
- package/layout/page.ejs +0 -45
- package/layout/partial/body.ejs +0 -7
- package/layout/partial/compoment/about/authorinfo.ejs +0 -18
- package/layout/partial/compoment/about/award.ejs +0 -59
- package/layout/partial/compoment/about/contentinfo.ejs +0 -33
- package/layout/partial/compoment/about/hobbies.ejs +0 -53
- package/layout/partial/compoment/about/motto.ejs +0 -17
- package/layout/partial/compoment/about/other.ejs +0 -76
- package/layout/partial/compoment/about/personalities.ejs +0 -11
- package/layout/partial/compoment/about/skillsinfo.ejs +0 -62
- package/layout/partial/compoment/aside/aside.ejs +0 -28
- package/layout/partial/compoment/aside/asideAllInfo.ejs +0 -6
- package/layout/partial/compoment/aside/asideArchive.ejs +0 -11
- package/layout/partial/compoment/aside/asideFlipCard.ejs +0 -72
- package/layout/partial/compoment/aside/asideHistory.ejs +0 -49
- package/layout/partial/compoment/aside/asideInfoCard.ejs +0 -39
- package/layout/partial/compoment/aside/asideNewestPost.ejs +0 -31
- package/layout/partial/compoment/aside/asidePower.ejs +0 -31
- package/layout/partial/compoment/aside/asideSwitch.ejs +0 -41
- package/layout/partial/compoment/aside/asideTag.ejs +0 -5
- package/layout/partial/compoment/aside/asideToc.ejs +0 -11
- package/layout/partial/compoment/aside/asideWebInfo.ejs +0 -60
- package/layout/partial/compoment/aside/asideWelcome.ejs +0 -33
- package/layout/partial/compoment/circle/angle.ejs +0 -26
- package/layout/partial/compoment/circle/banner.ejs +0 -11
- package/layout/partial/compoment/circle/content.ejs +0 -19
- package/layout/partial/compoment/dorakika/rightmenu.ejs +0 -100
- package/layout/partial/compoment/equipment/list.ejs +0 -37
- package/layout/partial/compoment/home/homeCategoryBar.ejs +0 -11
- package/layout/partial/compoment/home/postList.ejs +0 -37
- package/layout/partial/compoment/hometop/bbTimeList.ejs +0 -15
- package/layout/partial/compoment/hometop/categoryGroup.ejs +0 -19
- package/layout/partial/compoment/hometop/groupTag.ejs +0 -30
- package/layout/partial/compoment/hometop/topGroup.ejs +0 -41
- package/layout/partial/compoment/inject/body.ejs +0 -70
- package/layout/partial/compoment/links/angle.ejs +0 -26
- package/layout/partial/compoment/links/banner.ejs +0 -42
- package/layout/partial/compoment/links/linksCard.ejs +0 -27
- package/layout/partial/compoment/links/linksItem.ejs +0 -21
- package/layout/partial/compoment/mixins/articleSort.ejs +0 -26
- package/layout/partial/compoment/mixins/pagination.ejs +0 -11
- package/layout/partial/compoment/nav/left.ejs +0 -22
- package/layout/partial/compoment/nav/menu.ejs +0 -25
- package/layout/partial/compoment/nav/right.ejs +0 -42
- package/layout/partial/compoment/post/award.ejs +0 -60
- package/layout/partial/compoment/post/copyright.ejs +0 -39
- package/layout/partial/compoment/post/postMeta.ejs +0 -85
- package/layout/partial/compoment/post/postNav.ejs +0 -41
- package/layout/partial/compoment/post/wave.ejs +0 -14
- package/layout/partial/compoment/says/banner.ejs +0 -10
- package/layout/partial/compoment/says/saysBottom.ejs +0 -18
- package/layout/partial/compoment/says/saysContent.ejs +0 -10
- package/layout/partial/compoment/says/saysFunction.ejs +0 -15
- package/layout/partial/compoment/third-party/comments/comment.ejs +0 -12
- package/layout/partial/compoment/third-party/comments/twikoo_k.ejs +0 -29
- package/layout/partial/compoment/third-party/music.ejs +0 -5
- package/layout/partial/compoment/third-party/pjax.ejs +0 -31
- package/layout/partial/compoment/third-party/search/algolia-search.ejs +0 -20
- package/layout/partial/compoment/third-party/search/index.ejs +0 -10
- package/layout/partial/compoment/third-party/search/local-search.ejs +0 -22
- package/layout/partial/compoment/tlink/banner.ejs +0 -10
- package/layout/partial/console.ejs +0 -68
- package/layout/partial/footer.ejs +0 -109
- package/layout/partial/head.ejs +0 -37
- package/layout/partial/header.ejs +0 -6
- package/layout/partial/hometop.ejs +0 -15
- package/layout/partial/nav.ejs +0 -34
- package/layout/partial/pwa.ejs +0 -40
- package/layout/partial/sidebar.ejs +0 -31
- package/layout/post.ejs +0 -52
- package/layout/tag.ejs +0 -19
- package/scripts/helper/randomLinks.js +0 -16
- package/scripts/helper/themeJsExport.js +0 -79
- package/source/css/commentBarrage.css +0 -174
- package/source/css/custom.css +0 -901
- package/source/css/main.css +0 -16285
- package/source/css/search/algolia-search.css +0 -141
- package/source/css/search/local-search.css +0 -138
- package/source/css/var.css +0 -189
- /package/source/js/{rightmenu.js → rightside.js} +0 -0
@@ -0,0 +1,121 @@
|
|
1
|
+
#post-comment
|
2
|
+
.comment-head
|
3
|
+
.comment-headline
|
4
|
+
display inline-block
|
5
|
+
vertical-align middle
|
6
|
+
font-weight 700
|
7
|
+
font-size 20px
|
8
|
+
|
9
|
+
#comment-switch
|
10
|
+
display inline-block
|
11
|
+
float right
|
12
|
+
margin .1rem auto 0
|
13
|
+
padding .2rem .8rem
|
14
|
+
width max-content
|
15
|
+
border-radius 5px
|
16
|
+
background #f6f8fa
|
17
|
+
|
18
|
+
.first-comment
|
19
|
+
color #307af6
|
20
|
+
|
21
|
+
.second-comment
|
22
|
+
color #ff7242
|
23
|
+
|
24
|
+
.switch-btn
|
25
|
+
position relative
|
26
|
+
display inline-block
|
27
|
+
margin -4px .4rem 0
|
28
|
+
width 42px
|
29
|
+
height 22px
|
30
|
+
border-radius 34px
|
31
|
+
background-color #307af6
|
32
|
+
vertical-align middle
|
33
|
+
cursor pointer
|
34
|
+
transition all .4s ease 0s
|
35
|
+
|
36
|
+
&::before
|
37
|
+
position absolute
|
38
|
+
bottom 4px
|
39
|
+
left 4px
|
40
|
+
width 14px
|
41
|
+
height 14px
|
42
|
+
border-radius 50%
|
43
|
+
background-color #fff
|
44
|
+
content ""
|
45
|
+
transition all .4s ease 0s
|
46
|
+
|
47
|
+
&.move
|
48
|
+
background-color #ff7242
|
49
|
+
|
50
|
+
&::before
|
51
|
+
transform translateX(20px)
|
52
|
+
|
53
|
+
.comment-wrap
|
54
|
+
> div:nth-child(2)
|
55
|
+
display none
|
56
|
+
|
57
|
+
.post-comment
|
58
|
+
background var(--sco-card-bg)
|
59
|
+
|
60
|
+
div#post-comment
|
61
|
+
margin-top 2rem
|
62
|
+
|
63
|
+
#post-comment
|
64
|
+
> div.comment-head
|
65
|
+
> div.comment-privacy
|
66
|
+
display block
|
67
|
+
justify-content space-between
|
68
|
+
margin-left 8px
|
69
|
+
font-size 13px
|
70
|
+
|
71
|
+
> div.comment-privacy
|
72
|
+
a:hover
|
73
|
+
color var(--sco-main)
|
74
|
+
|
75
|
+
.comment-tips
|
76
|
+
background-color rgba(103, 194, 58, .9)
|
77
|
+
border var(--style-border-always)
|
78
|
+
border-color var(--sco-green)
|
79
|
+
color var(--sco-white)
|
80
|
+
border-radius 8px 8px 0 0
|
81
|
+
padding 8px 12px
|
82
|
+
margin-top .5rem
|
83
|
+
display none
|
84
|
+
width 100%
|
85
|
+
position absolute
|
86
|
+
top 50px
|
87
|
+
z-index 1000
|
88
|
+
opacity 1
|
89
|
+
transition .3s
|
90
|
+
|
91
|
+
&:hover
|
92
|
+
opacity 0
|
93
|
+
|
94
|
+
&.show
|
95
|
+
display flex
|
96
|
+
font-weight 700
|
97
|
+
|
98
|
+
blockquote
|
99
|
+
background var(--sco-secondbg)
|
100
|
+
border var(--style-border)
|
101
|
+
box-shadow none
|
102
|
+
margin 0 0 .5rem
|
103
|
+
font-size .6rem
|
104
|
+
color var(--sco-secondtext)
|
105
|
+
border-radius 8px
|
106
|
+
|
107
|
+
.comment-head
|
108
|
+
font-size .8em !important
|
109
|
+
margin-bottom .5rem
|
110
|
+
display flex
|
111
|
+
align-items center
|
112
|
+
flex-wrap wrap
|
113
|
+
position relative
|
114
|
+
|
115
|
+
.comment-randomInfo
|
116
|
+
margin-left auto
|
117
|
+
font-size 13px
|
118
|
+
|
119
|
+
&:hover
|
120
|
+
a
|
121
|
+
color var(--sco-theme)
|
@@ -0,0 +1,515 @@
|
|
1
|
+
#twikoo
|
2
|
+
.tk-row
|
3
|
+
.tk-col
|
4
|
+
flex-direction column-reverse !important
|
5
|
+
|
6
|
+
> div.tk-comments
|
7
|
+
> div.tk-comments-container
|
8
|
+
> div.tk-comments-title
|
9
|
+
> span:nth-child(1)
|
10
|
+
display none !important
|
11
|
+
|
12
|
+
> div.tk-submit
|
13
|
+
> div.tk-row.actions
|
14
|
+
> a
|
15
|
+
display none !important
|
16
|
+
|
17
|
+
z-index 102
|
18
|
+
|
19
|
+
.tk-meta
|
20
|
+
display flex
|
21
|
+
align-items center
|
22
|
+
|
23
|
+
.twikoo-info
|
24
|
+
color var(--sco-secondtext)
|
25
|
+
|
26
|
+
.tk-action
|
27
|
+
.tk-action-link:first-child
|
28
|
+
display none
|
29
|
+
|
30
|
+
.tk-action-link
|
31
|
+
color var(--sco-lighttext) !important
|
32
|
+
cursor pointer
|
33
|
+
-webkit-user-select none
|
34
|
+
padding 0 12px 0 12px
|
35
|
+
transition all .3s
|
36
|
+
border-radius 8px
|
37
|
+
background-color var(--sco-secondbg)
|
38
|
+
border var(--style-border-always)
|
39
|
+
|
40
|
+
&:hover
|
41
|
+
background-color var(--sco-lighttext)
|
42
|
+
color var(--sco-card-bg) !important
|
43
|
+
|
44
|
+
.tk-action-icon svg
|
45
|
+
fill var(--sco-card-bg) !important
|
46
|
+
|
47
|
+
|
48
|
+
.tk-action-icon
|
49
|
+
svg
|
50
|
+
transition all .3s
|
51
|
+
fill var(--sco-lighttext) !important
|
52
|
+
|
53
|
+
.tk-content
|
54
|
+
img
|
55
|
+
max-height 1100px !important
|
56
|
+
max-width 100% !important
|
57
|
+
border-radius 12px
|
58
|
+
|
59
|
+
.tk-avatar
|
60
|
+
width 32px !important
|
61
|
+
height 32px !important
|
62
|
+
box-shadow var(--sco-shadow-border)
|
63
|
+
margin-right 16px !important
|
64
|
+
|
65
|
+
&.tk-has-avatar
|
66
|
+
width 32px !important
|
67
|
+
height 32px !important
|
68
|
+
border-radius 32px !important
|
69
|
+
|
70
|
+
.tk-row
|
71
|
+
.tk-avatar
|
72
|
+
display none
|
73
|
+
|
74
|
+
.tk-avatar
|
75
|
+
.tk-avatar-img:hover
|
76
|
+
transform rotate(360deg)
|
77
|
+
|
78
|
+
.tk-nick
|
79
|
+
font-size 1rem !important
|
80
|
+
line-height 32px
|
81
|
+
|
82
|
+
#page
|
83
|
+
.tk-meta-input
|
84
|
+
.el-input
|
85
|
+
box-shadow var(--sco-shadow-border)
|
86
|
+
|
87
|
+
.el-loading-mask
|
88
|
+
background-color none !important
|
89
|
+
|
90
|
+
.tk-tag
|
91
|
+
margin-left 4px
|
92
|
+
|
93
|
+
.tk-tag-green
|
94
|
+
border-radius 4px !important
|
95
|
+
border 0 solid #e1f3d8 !important
|
96
|
+
font-size .5rem !important
|
97
|
+
|
98
|
+
[data-theme=dark]
|
99
|
+
.tk-tag-green
|
100
|
+
background-color #67c23a21 !important
|
101
|
+
|
102
|
+
.tk-tag-yellow
|
103
|
+
border-radius 4px !important
|
104
|
+
border 0 solid #e1f3d8 !important
|
105
|
+
font-size .5rem !important
|
106
|
+
|
107
|
+
[data-theme=dark]
|
108
|
+
.tk-tag-green
|
109
|
+
background-color #c0c23a21 !important
|
110
|
+
|
111
|
+
.tk-tag-red
|
112
|
+
border-radius 4px !important
|
113
|
+
border 0 solid #f3d8d8 !important
|
114
|
+
font-size .5rem !important
|
115
|
+
|
116
|
+
[data-theme=dark]
|
117
|
+
.tk-tag-red
|
118
|
+
background-color #c23a3a21 !important
|
119
|
+
|
120
|
+
.tk-submit-action-icon.__markdown
|
121
|
+
display none
|
122
|
+
|
123
|
+
.tk-comments
|
124
|
+
.el-button--primary
|
125
|
+
border-color var(--sco-fontcolor) !important
|
126
|
+
color var(--sco-card-bg) !important
|
127
|
+
border-radius 4px !important
|
128
|
+
box-shadow var(--sco-shadow-black)
|
129
|
+
transition .3s
|
130
|
+
width 5rem
|
131
|
+
position absolute
|
132
|
+
top -53px
|
133
|
+
right 0
|
134
|
+
margin-left .5rem !important
|
135
|
+
height 32px
|
136
|
+
|
137
|
+
.el-button--primary.is-disabled,
|
138
|
+
.el-button--primary.is-disabled:active,
|
139
|
+
.el-button--primary.is-disabled:focus,
|
140
|
+
.el-button--primary.is-disabled:hover
|
141
|
+
opacity .2
|
142
|
+
|
143
|
+
.tk-row-actions-start
|
144
|
+
position absolute
|
145
|
+
top -100px
|
146
|
+
left 17px
|
147
|
+
|
148
|
+
@media screen and (max-width: 768px)
|
149
|
+
.tk-submit
|
150
|
+
.el-button--primary
|
151
|
+
width 5rem
|
152
|
+
height 132px
|
153
|
+
top -161px
|
154
|
+
|
155
|
+
.tk-row-actions-start
|
156
|
+
top -210px
|
157
|
+
|
158
|
+
.tk-comments-title
|
159
|
+
position absolute
|
160
|
+
bottom 0
|
161
|
+
left 0
|
162
|
+
|
163
|
+
.tk-extras
|
164
|
+
margin-top .5rem
|
165
|
+
padding-bottom .5rem
|
166
|
+
|
167
|
+
.tk-icon.__comments:first-child
|
168
|
+
display none
|
169
|
+
|
170
|
+
.tk-icon.__comments
|
171
|
+
margin-left 0 !important
|
172
|
+
|
173
|
+
.tk-row.actions
|
174
|
+
margin-bottom .5rem !important
|
175
|
+
margin-left 0 !important
|
176
|
+
margin-top .5rem !important
|
177
|
+
justify-content space-around !important
|
178
|
+
|
179
|
+
.tk-meta-input
|
180
|
+
position relative !important
|
181
|
+
margin-top .8rem
|
182
|
+
width calc(100% - 5.5rem)
|
183
|
+
|
184
|
+
.tk-content
|
185
|
+
.tk-owo-emotion
|
186
|
+
width 3em
|
187
|
+
margin 0 2px 0 2px
|
188
|
+
|
189
|
+
.tk-owo-emotion,
|
190
|
+
.twikoo
|
191
|
+
.OwO-item
|
192
|
+
img
|
193
|
+
pointer-events none
|
194
|
+
|
195
|
+
.tk-extra
|
196
|
+
background var(--sco-card-bg)
|
197
|
+
border var(--style-border-always)
|
198
|
+
padding 1px 5px 1px 2px
|
199
|
+
border-radius 8px
|
200
|
+
margin-right 4px !important
|
201
|
+
color var(--sco-secondtext) !important
|
202
|
+
display inline !important
|
203
|
+
margin-top 6px !important
|
204
|
+
font-size .5rem
|
205
|
+
|
206
|
+
.tk-extra
|
207
|
+
.tk-icon
|
208
|
+
display none
|
209
|
+
|
210
|
+
.tk-expand
|
211
|
+
background var(--sco-card-bg) !important
|
212
|
+
color var(--sco-fontcolor) !important
|
213
|
+
border var(--style-border-always)
|
214
|
+
box-shadow var(--sco-shadow-border)
|
215
|
+
border-radius 12px
|
216
|
+
-webkit-user-select none
|
217
|
+
|
218
|
+
&:hover
|
219
|
+
background var(--sco-theme) !important
|
220
|
+
color var(--sco-white) !important
|
221
|
+
|
222
|
+
.tk-time
|
223
|
+
color var(--sco-secondtext) !important
|
224
|
+
font-size .6rem
|
225
|
+
margin-left .5rem
|
226
|
+
|
227
|
+
.tk-comments-container
|
228
|
+
> .tk-comment
|
229
|
+
margin-top 0 !important
|
230
|
+
margin-bottom .5rem !important
|
231
|
+
background var(--sco-card-bg)
|
232
|
+
transition .3s
|
233
|
+
border-radius 12px
|
234
|
+
padding .5rem 0 0
|
235
|
+
border none
|
236
|
+
border-top var(--style-border-dashed)
|
237
|
+
|
238
|
+
#page
|
239
|
+
.tk-comments-container
|
240
|
+
> .tk-comment
|
241
|
+
padding 1rem 1rem 1.5rem
|
242
|
+
border var(--style-border)
|
243
|
+
border-top var(--style-border)
|
244
|
+
box-shadow var(--sco-shadow-border)
|
245
|
+
|
246
|
+
@media screen and (max-width: 768px)
|
247
|
+
.tk-comments-container
|
248
|
+
> .tk-comment
|
249
|
+
padding 1rem
|
250
|
+
border var(--style-border-always)
|
251
|
+
box-shadow var(--sco-shadow-border)
|
252
|
+
|
253
|
+
.tk-icon.__comments
|
254
|
+
left .5rem
|
255
|
+
|
256
|
+
.tk-icon
|
257
|
+
position absolute
|
258
|
+
|
259
|
+
.tk-comments-no
|
260
|
+
display none !important
|
261
|
+
|
262
|
+
.tk-comments-container
|
263
|
+
min-height 0 !important
|
264
|
+
margin-top .5rem
|
265
|
+
|
266
|
+
.tk-replies
|
267
|
+
> .tk-comment
|
268
|
+
background var(--sco-card-bg)
|
269
|
+
border-top var(--style-border-dashed)
|
270
|
+
border-radius 12px
|
271
|
+
transition .3s
|
272
|
+
padding 1rem 0 0
|
273
|
+
margin-top 0
|
274
|
+
|
275
|
+
.tk-content
|
276
|
+
p
|
277
|
+
margin 0 !important
|
278
|
+
|
279
|
+
.tk-replies
|
280
|
+
.tk-content
|
281
|
+
span:first-child
|
282
|
+
font-size .5rem
|
283
|
+
color var(--sco-secondtext)
|
284
|
+
|
285
|
+
.tk-meta-input
|
286
|
+
.el-input
|
287
|
+
.el-input-group__prepend
|
288
|
+
-webkit-user-select none
|
289
|
+
|
290
|
+
@media screen and (max-width: 768px)
|
291
|
+
.tk-meta-input
|
292
|
+
.el-input
|
293
|
+
.el-input-group__prepend
|
294
|
+
padding 0 .3rem !important
|
295
|
+
|
296
|
+
.tk-meta-input
|
297
|
+
display flex
|
298
|
+
flex-direction column
|
299
|
+
top 0
|
300
|
+
position inherit !important
|
301
|
+
|
302
|
+
.tk-meta-input
|
303
|
+
.el-input
|
304
|
+
margin-left 0 !important
|
305
|
+
width 100% !important
|
306
|
+
margin-bottom 8px
|
307
|
+
|
308
|
+
.tk-icon
|
309
|
+
position absolute
|
310
|
+
right 0
|
311
|
+
|
312
|
+
img.tk-avatar-img
|
313
|
+
height 32px !important
|
314
|
+
border-radius 32px
|
315
|
+
border var(--style-border-always)
|
316
|
+
|
317
|
+
.el-input--small
|
318
|
+
.el-input__inner
|
319
|
+
padding 8px
|
320
|
+
|
321
|
+
.el-input.el-input--small.el-input-group.el-input-group--prepend
|
322
|
+
border-radius 12px
|
323
|
+
background var(--sco-secondbg)
|
324
|
+
border var(--style-border-always)
|
325
|
+
|
326
|
+
.el-input.el-input--small.el-input-group.el-input-group--prepend:nth-child(1):before
|
327
|
+
content '输入QQ号会自动获取昵称和头像'
|
328
|
+
|
329
|
+
.el-input.el-input--small.el-input-group.el-input-group--prepend:nth-child(2):before
|
330
|
+
content '收到回复将会发送到你的邮箱'
|
331
|
+
|
332
|
+
.el-input.el-input--small.el-input-group.el-input-group--prepend:nth-child(3):before
|
333
|
+
content '可以通过昵称访问你的网站'
|
334
|
+
|
335
|
+
.el-input.el-input--small.el-input-group.el-input-group--prepend:focus-within::before
|
336
|
+
display block
|
337
|
+
animation commonTipsIn .3s
|
338
|
+
|
339
|
+
.el-input.el-input--small.el-input-group.el-input-group--prepend:focus-within::after
|
340
|
+
display block
|
341
|
+
animation commonTriangleIn .3s
|
342
|
+
|
343
|
+
.el-input.el-input--small.el-input-group.el-input-group--prepend::before
|
344
|
+
display none
|
345
|
+
position absolute
|
346
|
+
top -60px
|
347
|
+
white-space nowrap
|
348
|
+
border-radius 10px
|
349
|
+
left 50%
|
350
|
+
transform translate(-50%)
|
351
|
+
padding 14px 18px
|
352
|
+
background #444
|
353
|
+
color #fff
|
354
|
+
z-index 100
|
355
|
+
|
356
|
+
.el-input.el-input--small.el-input-group.el-input-group--prepend::after
|
357
|
+
display none
|
358
|
+
content ''
|
359
|
+
position absolute
|
360
|
+
border 12px solid transparent
|
361
|
+
border-top-color #444
|
362
|
+
left 50%
|
363
|
+
transform translate(-50%, -46px)
|
364
|
+
|
365
|
+
.el-input-group__append, .el-input-group__prepend
|
366
|
+
background-color var(--sco-card-bg) !important
|
367
|
+
color var(--sco-fontcolor) !important
|
368
|
+
border-color var(--sco-card-border) !important
|
369
|
+
border var(--style-border-always) !important
|
370
|
+
font-weight 700
|
371
|
+
|
372
|
+
.el-input__inner
|
373
|
+
background var(--sco-secondbg) !important
|
374
|
+
border 1px solid var(--sco-card-border) !important
|
375
|
+
color var(--sco-fontcolor) !important
|
376
|
+
padding-left 8px
|
377
|
+
|
378
|
+
.page
|
379
|
+
.el-input__inner
|
380
|
+
background var(--sco-card-bg) !important
|
381
|
+
|
382
|
+
.el-input__inner:focus
|
383
|
+
border 1px solid var(--sco-main) !important
|
384
|
+
|
385
|
+
.el-textarea__inner
|
386
|
+
background var(--sco-secondbg) !important
|
387
|
+
color var(--sco-fontcolor) !important
|
388
|
+
border-radius 12px !important
|
389
|
+
min-height 100px !important
|
390
|
+
padding 16px 16px 40px 16px !important
|
391
|
+
border var(--style-border-always) !important
|
392
|
+
box-shadow none !important
|
393
|
+
|
394
|
+
@media screen and (max-width: 768px)
|
395
|
+
.el-textarea__inner
|
396
|
+
background var(--sco-card-bg) !important
|
397
|
+
|
398
|
+
#page
|
399
|
+
.el-textarea__inner
|
400
|
+
background var(--sco-card-bg) !important
|
401
|
+
box-shadow var(--sco-shadow-border)
|
402
|
+
|
403
|
+
.el-textarea__inner:focus
|
404
|
+
border var(--style-border-hover-always) !important
|
405
|
+
box-shadow var(--sco-shadow-main)
|
406
|
+
|
407
|
+
.el-button
|
408
|
+
background-color var(--sco-fontcolor) !important
|
409
|
+
border 0 solid var(--sco-main) !important
|
410
|
+
color var(--sco-background) !important
|
411
|
+
border-radius 8px !important
|
412
|
+
|
413
|
+
.el-button:hover
|
414
|
+
background var(--sco-main) !important
|
415
|
+
color var(--sco-white) !important
|
416
|
+
|
417
|
+
.el-button.tk-preview
|
418
|
+
display none !important
|
419
|
+
|
420
|
+
button.el-button.tk-cancel.el-button--default.el-button--small
|
421
|
+
background var(--sco-secondbg) !important
|
422
|
+
border-radius 8px !important
|
423
|
+
color var(--sco-fontcolor) !important
|
424
|
+
|
425
|
+
@media screen and (max-width: 768px)
|
426
|
+
.OwO .OwO-body
|
427
|
+
width 300px
|
428
|
+
|
429
|
+
.OwO
|
430
|
+
.OwO-body
|
431
|
+
border var(--style-border-always) !important
|
432
|
+
border-radius 8px !important
|
433
|
+
overflow hidden
|
434
|
+
background-color var(--sco-maskbg) !important
|
435
|
+
backdrop-filter saturate(180%) blur(10px)
|
436
|
+
-webkit-backdrop-filter blur(10px)
|
437
|
+
transform translateZ(0)
|
438
|
+
|
439
|
+
.OwO-bar
|
440
|
+
border-top none !important
|
441
|
+
|
442
|
+
.OwO-items
|
443
|
+
.OwO-item:hover
|
444
|
+
box-shadow var(--sco-shadow-lightblack) !important
|
445
|
+
border-radius 8px
|
446
|
+
|
447
|
+
#twikoo > div.tk-comments > div.tk-submit > div.tk-row.actions > div > div.tk-action-icon.OwO.OwO-open > div.OwO-body > div > ul > li > span
|
448
|
+
line-height 48px
|
449
|
+
font-size 28px
|
450
|
+
|
451
|
+
.OwO
|
452
|
+
&.OwO-open
|
453
|
+
.OwO-body
|
454
|
+
animation .3s ease .1s 1 normal both running donate_effcet
|
455
|
+
|
456
|
+
.OwO-body
|
457
|
+
.OwO-bar
|
458
|
+
.OwO-packages
|
459
|
+
li
|
460
|
+
margin-right 0 !important
|
461
|
+
height 48px
|
462
|
+
transition .3s
|
463
|
+
|
464
|
+
li:hover
|
465
|
+
transition .3s
|
466
|
+
|
467
|
+
.OwO-packages
|
468
|
+
background var(--sco-background)
|
469
|
+
padding-left 8px !important
|
470
|
+
|
471
|
+
.OwO
|
472
|
+
.OwO-body
|
473
|
+
.OwO-bar
|
474
|
+
.OwO-packages
|
475
|
+
.OwO-package-active
|
476
|
+
background var(--sco-secondbg) !important
|
477
|
+
|
478
|
+
.OwO-items-show
|
479
|
+
margin 12px 8px !important
|
480
|
+
min-height 197px
|
481
|
+
|
482
|
+
.OwO-bar
|
483
|
+
.OwO-packages
|
484
|
+
li
|
485
|
+
line-height 45px !important
|
486
|
+
z-index 102
|
487
|
+
width 500px
|
488
|
+
|
489
|
+
#owo-big
|
490
|
+
position fixed
|
491
|
+
align-items center
|
492
|
+
background-color var(--sco-card-bg)
|
493
|
+
border var(--style-border-always)
|
494
|
+
border-radius 10px
|
495
|
+
z-index 9999
|
496
|
+
display none
|
497
|
+
transform translate(0, -105%)
|
498
|
+
overflow hidden
|
499
|
+
animation owoIn .3s cubic-bezier(.42, 0, .3, 1.11)
|
500
|
+
padding 1rem
|
501
|
+
|
502
|
+
img
|
503
|
+
width 100%
|
504
|
+
|
505
|
+
.tk-replies
|
506
|
+
.tk-content
|
507
|
+
margin-top 0 !important
|
508
|
+
|
509
|
+
.el-input-group--prepend
|
510
|
+
.el-input__inner, .el-input-group__append
|
511
|
+
border-left-width 0 !important
|
512
|
+
|
513
|
+
.el-textarea .el-input__count
|
514
|
+
color var(--sco-secondtext) !important
|
515
|
+
-webkit-user-select none
|