feature(cloudcmd) readify: add support of links

This commit is contained in:
coderaiser 2018-10-10 12:54:27 +03:00
parent 03685ee390
commit 52ffc2ac28
5 changed files with 31 additions and 23 deletions

View file

@ -107,12 +107,12 @@
color: white;
}
.text-file::before {
.file::before, .file-link::before {
color: rgba(26, 224, 124, 0.56);
content: '\e80d';
}
.current-file .text-file::before {
.current-file .file::before, .file-link::before {
color: white;
}
@ -133,11 +133,11 @@
display: inline-block;
}
.directory::before {
.directory::before, .directory-link::before {
content: '\e807';
}
.text-file {
.file, .file-link {
background-image: none;
}

View file

@ -37,7 +37,15 @@
background-image: url(../img/dir.png);
}
.text-file {
.directory-link {
background-image: url(../img/dir.png);
}
.file {
background-image: url(../img/txt.png);
}
.file-link {
background-image: url(../img/txt.png);
}