50 lines
783 B
CSS
50 lines
783 B
CSS
@charset "UTF-8";
|
|
|
|
i.icon.trash {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
width: 10px;
|
|
height: 12px;
|
|
border: 2px solid transparent;
|
|
box-shadow:
|
|
0 0 0 2px,
|
|
inset -2px 0 0,
|
|
inset 2px 0 0;
|
|
border-bottom-left-radius: 1px;
|
|
border-bottom-right-radius: 1px;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
i.icon.trash.small {
|
|
height: 9px;
|
|
}
|
|
|
|
i.icon.trash::after,
|
|
i.icon.trash::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
}
|
|
|
|
i.icon.trash::after {
|
|
background: currentColor;
|
|
border-radius: 3px;
|
|
width: 16px;
|
|
height: 2px;
|
|
top: -4px;
|
|
left: -5px;
|
|
}
|
|
|
|
i.icon.trash::before {
|
|
width: 10px;
|
|
height: 4px;
|
|
border: 2px solid;
|
|
border-bottom: transparent;
|
|
border-top-left-radius: 2px;
|
|
border-top-right-radius: 2px;
|
|
top: -7px;
|
|
left: -2px;
|
|
}
|