
#treeHead {
	cursor: pointer;
	-webkit-user-select: none;  /* Chrome all / Safari all */
	-moz-user-select: none;     /* Firefox all */
	-ms-user-select: none;      /* IE 10+ */
	user-select: none;          /* Likely future */
}

#treeDiv .file-container {
   height: auto;
   overflow: hidden;
}

#treeDiv .file-right {
	float: right;
	padding: 3px 0 5px 8px;
}

#treeDiv .file-right:nth-of-type(1) {
	width: 100px;
}

#treeDiv .file-right:nth-of-type(2) {
	width: 150px;
}

#treeDiv .file-right:nth-of-type(3) {
	width: 80px;
}

#treeDiv .file-left {
	width: auto;
	overflow: hidden;
}

li.file-container.recent-file {
	font-weight: bold;
}

li.file-container.selected {
	background-color: lightgray;
}

/* line 20, /Users/jonasvonandrian/jquery-sortable/source/css/jquery-sortable.css.sass */
ul.sortable li.placeholder {
	position: relative;
	margin: 0;
	padding: 0;
	border: none;
	width: auto;
}

/* line 25, /Users/jonasvonandrian/jquery-sortable/source/css/jquery-sortable.css.sass */
ul.sortable li.placeholder:before {
	position: absolute;
	content: '';
	width: 0;
	height: 0;
	margin-top: -5px;
	left: -5px;
	top: -4px;
	border: 5px solid transparent;
	border-left-color: red;
	border-right: none;
}