Delta-File-Manager/styles.css
Florian Bouillon efc0a0e1b9 file explorer working
but can't open files externally
2019-03-10 01:13:57 +01:00

38 lines
579 B
CSS

main {
display: flex;
flex-wrap: wrap;
}
table {
width: 100%;
border-collapse: collapse;
cursor: pointer;
}
table th {
text-align: left;
}
table tr {
border-bottom: 1px solid #aaa;
height: 50px;
}
table tr td {
border-left: 1px solid #eee;
}
table tr td:first-child {
padding-left: 60px;
background-repeat: no-repeat;
border-left: none;
}
table tr.folder td:first-child {
background-image: url(https://image.flaticon.com/icons/svg/148/148953.svg);
}
table tr.file td:first-child {
background-image: url(https://image.flaticon.com/icons/svg/263/263103.svg)
}