2020-04-24 22:49:10 +08:00
|
|
|
$li-border-radius = 5px;
|
2020-04-26 15:16:53 +08:00
|
|
|
$li-margin-bottom = 12px;
|
2020-04-24 22:49:10 +08:00
|
|
|
|
2021-01-06 23:53:17 +08:00
|
|
|
.post-tools-container {
|
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 {
|
|
|
|
cursor: pointer;
|
2021-01-07 15:42:25 +08:00
|
|
|
width: $post-tool-button-width;
|
|
|
|
height: $post-tool-button-width;
|
2020-10-25 10:48:07 +08:00
|
|
|
border-radius: 50%;
|
2020-12-01 16:51:38 +08:00
|
|
|
font-size: 1.2rem;
|
2020-04-02 20:37:34 +08:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2020-04-24 22:49:10 +08:00
|
|
|
margin-bottom: $li-margin-bottom;
|
|
|
|
background: var(--background-color);
|
2021-01-21 16:47:13 +08:00
|
|
|
color: var(--default-text-color);
|
2020-04-24 22:49:10 +08:00
|
|
|
|
2021-01-21 16:47:13 +08:00
|
|
|
i {
|
|
|
|
color: var(--default-text-color);
|
2020-09-05 23:08:03 +08:00
|
|
|
}
|
|
|
|
|
2020-04-25 21:45:45 +08:00
|
|
|
&:hover {
|
|
|
|
background: var(--primary-color);
|
2021-01-21 16:47:13 +08:00
|
|
|
color: var(--background-color);
|
|
|
|
|
|
|
|
i {
|
|
|
|
color: var(--background-color);
|
|
|
|
}
|
2020-04-25 21:45:45 +08:00
|
|
|
}
|
|
|
|
|
2021-01-21 16:47:13 +08:00
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-21 18:23:22 +08:00
|
|
|
hover-style(true, 1.06, 1.06);
|
|
|
|
|
2020-09-07 15:56:13 +08:00
|
|
|
&.page-aside-toggle {
|
|
|
|
display: none;
|
2020-09-07 16:25:37 +08:00
|
|
|
|
2020-11-20 12:02:22 +08:00
|
|
|
+keep-tablet() {
|
2020-09-07 16:25:37 +08:00
|
|
|
display: none !important;
|
|
|
|
}
|
2020-09-07 15:56:13 +08:00
|
|
|
}
|
2020-04-02 11:01:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-05 23:08:03 +08:00
|
|
|
}
|