You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
235 lines
3.4 KiB
CSS
235 lines
3.4 KiB
CSS
/* PAGE */
|
|
|
|
html, body {
|
|
width: 100%;
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
padding: 0;
|
|
margin: 0;
|
|
position: relative;
|
|
font-size: 20px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.fa {
|
|
width: 17px;
|
|
font-family: FontAwesome;
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
padding-left: 10px;
|
|
}
|
|
|
|
li {
|
|
padding: 0px 5px;
|
|
cursor: pointer;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
.folder, .file {
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.contextMenu {
|
|
display: none;
|
|
position: absolute;
|
|
}
|
|
|
|
.droppable {
|
|
background-color: #FE9A2E;
|
|
color: #222;
|
|
}
|
|
|
|
.selected {
|
|
border: 1px dotted #bbb;
|
|
background: #666;
|
|
color: #eee;
|
|
}
|
|
|
|
/* TREE */
|
|
|
|
#tree {
|
|
position:absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 70%;
|
|
border: 2px solid blue;
|
|
box-sizing: border-box;
|
|
background: white;
|
|
overflow: auto;
|
|
}
|
|
|
|
#tree li {
|
|
cursor: auto;
|
|
}
|
|
|
|
#tree span.element {
|
|
cursor: pointer;
|
|
}
|
|
|
|
#tree li > span.element:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
#tree .active {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
#tree #trashTree {
|
|
margin-top: 2em;
|
|
}
|
|
|
|
#tree .fa.expcol {
|
|
margin-left: -10px;
|
|
font-size: 14px;
|
|
position: absolute;
|
|
left: -20px;
|
|
top: 9px;
|
|
width: auto;
|
|
height: 11px;
|
|
padding: 0;
|
|
margin: 0;
|
|
background: white;
|
|
z-index: 10;
|
|
cursor: default;
|
|
}
|
|
#tree .fa.expcol:before {
|
|
position:relative;
|
|
top: -1px;
|
|
}
|
|
|
|
#tree li.collapsed ul {
|
|
display: none;
|
|
}
|
|
|
|
#tree li input {
|
|
width: calc(100% - 30px);
|
|
}
|
|
|
|
/* Tree lines */
|
|
|
|
#tree ul {
|
|
margin: 0px 0px 0px 10px;
|
|
list-style: none;
|
|
}
|
|
#tree ul li {
|
|
position: relative;
|
|
}
|
|
#tree ul li:before {
|
|
position: absolute;
|
|
left: -15px;
|
|
top: -0.25em;
|
|
content: '';
|
|
display: block;
|
|
border-left: 1px solid #888;
|
|
height: 1em;
|
|
border-bottom: 1px solid #888;
|
|
width: 17.5px;
|
|
}
|
|
#tree ul li:after {
|
|
position: absolute;
|
|
left: -15px;
|
|
bottom: -7px;
|
|
content: '';
|
|
display: block;
|
|
border-left: 1px solid #888;
|
|
height: 100%;
|
|
}
|
|
#tree ul li.root {
|
|
margin: 0px 0px 0px -10px;
|
|
}
|
|
#tree ul li.root:before {
|
|
display: none;
|
|
}
|
|
#tree ul li.root:after {
|
|
display: none;
|
|
}
|
|
#tree ul li:last-child:after {
|
|
display: none;
|
|
}
|
|
|
|
|
|
/* CONTENT */
|
|
|
|
#content {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 30%;
|
|
bottom: 0;
|
|
right: 0;
|
|
border: 2px solid green;
|
|
box-sizing: border-box;
|
|
background: #eee;
|
|
overflow: auto;
|
|
}
|
|
|
|
.changeViewModeContainer {
|
|
border: 1px solid #ccc;
|
|
float: right;
|
|
}
|
|
|
|
.parentFolder {
|
|
cursor: pointer;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.parentFolder:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
#folderContent {
|
|
/*display: inline-block;*/
|
|
}
|
|
|
|
#content li:hover .name {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
#content .grid li {
|
|
display: inline-block;
|
|
margin: 10px 10px;
|
|
width: 140px;
|
|
text-align: center;
|
|
height: 70px;
|
|
vertical-align: top;
|
|
}
|
|
|
|
#content .grid li input {
|
|
width: 100%;
|
|
}
|
|
|
|
#content .grid li .fa {
|
|
display: block;
|
|
margin: auto;
|
|
font-size: 40px;
|
|
width: auto;
|
|
text-align: center;
|
|
}
|
|
|
|
#content .list li {
|
|
display: flex;
|
|
flex-flow: row;
|
|
align-items: center;
|
|
}
|
|
#content .list li .element {
|
|
display: inline-flex;
|
|
flex: 1;
|
|
}
|
|
|
|
#content .list .element span {
|
|
margin-right: 20px;
|
|
display: inline-block;
|
|
}
|
|
#content .list .element span.name {
|
|
flex: 1;
|
|
}
|
|
#content .list .element span.date {
|
|
width: 120px;
|
|
}
|
|
|