Move the folder icon style to the less file

This commit is contained in:
yflory
2017-01-25 17:16:41 +01:00
parent 8c7305bf1b
commit 95056315cf
3 changed files with 20 additions and 2 deletions

View File

@@ -183,9 +183,9 @@ define([
// Icons
var $folderIcon = $('<span>', {"class": "fa fa-folder folder", style:"color:#FEDE8B;text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;"});
var $folderIcon = $('<span>', {"class": "fa fa-folder folder"});
var $folderEmptyIcon = $folderIcon.clone();
var $folderOpenedIcon = $('<span>', {"class": "fa fa-folder-open folder", style:"color:#FEDE8B;text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;"});
var $folderOpenedIcon = $('<span>', {"class": "fa fa-folder-open folder");
var $folderOpenedEmptyIcon = $folderOpenedIcon.clone();
var $fileIcon = $('<span>', {"class": "fa fa-file-text-o file"});
var $padIcon = $('<span>', {"class": "fa fa-file-word-o file"});