35 lines
713 B
CSS
35 lines
713 B
CSS
@charset "UTF-8";
|
|
|
|
i.icon.list.tree {
|
|
position: relative;
|
|
width: 22px;
|
|
height: 22px;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
background:
|
|
linear-gradient(to left, currentcolor 8px, transparent 0) no-repeat left
|
|
top/8px 8px,
|
|
linear-gradient(to left, currentcolor 8px, transparent 0) no-repeat center
|
|
3px/8px 2px,
|
|
linear-gradient(to left, currentcolor 8px, transparent 0) no-repeat 10px
|
|
17px/6px 2px,
|
|
linear-gradient(to left, currentcolor 8px, transparent 0) no-repeat 10px
|
|
3px/2px 16px;
|
|
|
|
&::after,
|
|
&::before {
|
|
position: absolute;
|
|
right: 0;
|
|
content: '';
|
|
width: 8px;
|
|
height: 8px;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
border: 2px solid;
|
|
}
|
|
|
|
&::after {
|
|
bottom: 0;
|
|
}
|
|
}
|