angular-cn/public/resources/css/module/_filetree.scss

31 lines
588 B
SCSS
Raw Normal View History

2015-12-15 04:53:24 -05:00
.filetree {
padding: 12px 24px;
background: $mist;
.file {
display: block;
font-family: $mono-font;
line-height: 32px;
color: $platinum;
}
.children {
padding-left: 24px;
position: relative;
overflow: hidden;
2015-12-15 04:53:24 -05:00
.file {
position: relative;
&:before {
content: '';
left: -18px;
bottom: 16px;
2015-12-15 04:53:24 -05:00
width: 12px;
height: 9999px;
2015-12-15 04:53:24 -05:00
position: absolute;
border-width: 0 0 2px 2px;
border-style: solid;
border-color: #bccad1;
border-radius: 0 0 0 3px;
2015-12-15 04:53:24 -05:00
}
}
}
}