zhgdyun/src/assets/style/mixins.styl
2022-06-08 14:51:11 +08:00

23 lines
826 B
Stylus
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

setScrollbar(scrollbarWidth, trackColor = #EBEEF5, thumbColor = #909399)
//
&::-webkit-scrollbar
width scrollbarWidth
//
&::-webkit-scrollbar-track
background-color trackColor
-webkit-border-radius 2em
-moz-border-radius 2em
border-radius 2em
//
&::-webkit-scrollbar-thumb
background-color thumbColor
-webkit-border-radius 2em
-moz-border-radius 2em
border-radius 2em
setEllipsis(line)
display: -webkit-box;
overflow: hidden;
white-space: wrap;
text-overflow: ellipsis;
-webkit-box-orient: vertical; /* -webkit-box-orient */
-webkit-line-clamp: line; /* -webkit-line-clamp */