2022-09-30 11:36:38 +08:00
|
|
|
$li-border-radius = 0.4rem
|
|
|
|
$li-margin-bottom = 0.8rem
|
2020-04-24 22:49:10 +08:00
|
|
|
|
2021-01-06 23:53:17 +08:00
|
|
|
.post-tools-container {
|
2022-10-12 15:55:47 +08:00
|
|
|
position relative
|
|
|
|
box-sizing border-box
|
|
|
|
padding-top 2rem
|
2020-04-02 20:37:34 +08:00
|
|
|
|
|
|
|
.tools-list {
|
2021-01-21 16:47:13 +08:00
|
|
|
|
2020-04-02 11:01:24 +08:00
|
|
|
li {
|
2022-10-13 22:51:32 +08:00
|
|
|
position relative
|
|
|
|
box-sizing border-box
|
2022-09-30 10:51:42 +08:00
|
|
|
width $post-tool-button-width
|
|
|
|
height $post-tool-button-width
|
|
|
|
margin-bottom $li-margin-bottom
|
2022-10-14 17:56:32 +08:00
|
|
|
color var(--text-color-3)
|
2022-09-30 10:51:42 +08:00
|
|
|
font-size 1.2rem
|
2022-10-14 17:56:32 +08:00
|
|
|
background var(--background-color-1)
|
2022-09-30 10:51:42 +08:00
|
|
|
border-radius 50%
|
|
|
|
cursor pointer
|
2020-04-24 22:49:10 +08:00
|
|
|
|
2021-01-21 16:47:13 +08:00
|
|
|
i {
|
2022-10-14 17:56:32 +08:00
|
|
|
color var(--text-color-3)
|
2020-09-05 23:08:03 +08:00
|
|
|
}
|
|
|
|
|
2020-04-25 21:45:45 +08:00
|
|
|
&:hover {
|
2022-10-14 17:56:32 +08:00
|
|
|
color var(--background-color-1)
|
2022-09-30 10:51:42 +08:00
|
|
|
background var(--primary-color)
|
2021-01-21 16:47:13 +08:00
|
|
|
|
|
|
|
i {
|
2022-10-14 17:56:32 +08:00
|
|
|
color var(--background-color-1)
|
2021-01-21 16:47:13 +08:00
|
|
|
}
|
2020-04-25 21:45:45 +08:00
|
|
|
}
|
|
|
|
|
2021-01-21 16:47:13 +08:00
|
|
|
|
|
|
|
&:last-child {
|
2022-09-30 10:51:42 +08:00
|
|
|
margin-bottom 0
|
2021-01-21 16:47:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-30 10:51:42 +08:00
|
|
|
hover-style(true, 1.06, 1.06)
|
2021-01-21 18:23:22 +08:00
|
|
|
|
2022-10-11 12:37:06 +08:00
|
|
|
&.toggle-show-toc {
|
2022-09-30 10:51:42 +08:00
|
|
|
display none
|
2020-09-07 16:25:37 +08:00
|
|
|
|
2020-11-20 12:02:22 +08:00
|
|
|
+keep-tablet() {
|
2022-09-30 10:51:42 +08:00
|
|
|
display none !important
|
2020-09-07 16:25:37 +08:00
|
|
|
}
|
2020-09-07 15:56:13 +08:00
|
|
|
}
|
2022-10-13 22:51:32 +08:00
|
|
|
|
|
|
|
|
|
|
|
&.go-to-comments {
|
|
|
|
.post-comments-count {
|
|
|
|
position absolute
|
|
|
|
top 0
|
|
|
|
right -1rem
|
|
|
|
display none
|
|
|
|
align-items center
|
|
|
|
justify-content center
|
|
|
|
box-sizing border-box
|
2022-10-20 23:15:46 +08:00
|
|
|
min-width 1.1rem
|
|
|
|
height 1.1rem
|
2022-10-13 22:51:32 +08:00
|
|
|
padding 0 0.2rem
|
2022-10-14 17:56:32 +08:00
|
|
|
color var(--badge-color)
|
2022-10-13 22:51:32 +08:00
|
|
|
font-size 12px
|
2022-10-14 17:56:32 +08:00
|
|
|
background var(--badge-background-color)
|
2022-10-13 22:51:32 +08:00
|
|
|
border-radius 0.4rem
|
|
|
|
|
|
|
|
+keep-tablet() {
|
|
|
|
display none !important
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-02 11:01:24 +08:00
|
|
|
}
|
|
|
|
}
|
2020-09-05 23:08:03 +08:00
|
|
|
}
|