43 lines
902 B
SCSS
Raw Normal View History

2023-06-14 18:14:47 +08:00
/** 清除浮动 */
@mixin clearfix {
&::after {
content: "";
display: table;
clear: both;
}
}
2023-06-05 11:19:27 +08:00
2023-06-14 18:14:47 +08:00
/** 美化原生滚动条 */
2023-06-05 11:19:27 +08:00
@mixin scrollbar {
// 整个滚动条
2023-06-05 11:19:27 +08:00
&::-webkit-scrollbar {
width: 8px;
height: 8px;
2023-06-05 11:19:27 +08:00
}
// 滚动条上的滚动滑块
2023-06-05 11:19:27 +08:00
&::-webkit-scrollbar-thumb {
border-radius: 4px;
background-color: #90939955;
2023-06-05 11:19:27 +08:00
}
&::-webkit-scrollbar-thumb:hover {
background-color: #90939977;
2023-06-05 11:19:27 +08:00
}
&::-webkit-scrollbar-thumb:active {
background-color: #90939999;
2023-06-05 11:19:27 +08:00
}
2023-06-14 18:14:47 +08:00
// 当同时有垂直滚动条和水平滚动条时交汇的部分
2023-06-05 11:42:59 +08:00
&::-webkit-scrollbar-corner {
background-color: transparent;
}
2023-06-05 11:19:27 +08:00
}
2023-06-14 18:14:47 +08:00
/** 文本溢出时显示省略号 */
@mixin ellipsis {
// 隐藏溢出的文本
overflow: hidden;
// 防止文本换行
white-space: nowrap;
// 文本内容溢出容器时,文本末尾显示省略号
text-overflow: ellipsis;
}