@import url(https://fonts.googleapis.com/css?family=Roboto:400,700);
@import url(https://fonts.googleapis.com/css?family=Roboto+Slab:400,700);
@import url(https://plansware.com/style/main.css);

button span {
    margin-left: 8px;
}
.container {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}
#toolbar {
    position: absolute;
    top: 0px;
    height: 34px;
    left: 0px;
    right: 0px;
    padding: 4px;
    border-bottom: 8px solid #333;
}
#toolbar form {
    display: inline-block;
}
#main {
    position: absolute;
    top: 46px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: 0;
    padding: 0;
}
.directoryTree {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 8px;
    background: #eee;
    overflow: auto;
}
.directoryTree ul {
    margin: 0 0 0 12px;
    padding: 0;
    list-style-type: none;
}
.directoryTree li {
    white-space: nowrap;
}
.directoryTree li span {
    cursor: pointer;
}
.directoryTree button {
    margin-right: 4px;
    padding: 0;
    width: 8px;
    height: 8px;
    background: red;
    border: none;
    vertical-align: middle;
}
.directoryTree .file > button {
    background: url(dir_file.png);
}
.directoryTree .open > button {
    background: url(dir_open.png);
}
.directoryTree .closed > button {
    background: url(dir_closed.png);
}
.directoryTree .loading > button {
    background: url(dir_loading.png);
}
.directoryTree .empty > button {
    background: url(dir_empty.png);
}
.directoryTree .loading {
    font-style: italic;
}
.directoryTree .empty {
    font-style: italic;
}
.splitPanel .resizeBar {
    background: #333;
    cursor: col-resize;
}
.fileManager {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
.fileManager .title {
    font-size: 120%;
    font-weight: bold;
    margin: 4px 8px;
    padding: 4px 8px;
    border: 1px solid #333;
    border-radius: 2px;
}
.fileManager .toolbar {
    margin-bottom: 8px;
}
.fileManager .toolbar button {
    margin: 0px 8px;
}
.fileManager .toolbar form {
    display: inline;
}
.fileManager table {
    border-collapse: collapse;
    width: 100%;
}
.fileManager thead {
    color: #fff;
    background: #333;
    border-bottom: 1px solid #fff;
}
.fileManager tbody tr:hover {
    color: #fff;
    background: #333;
}
.fileManager tbody tr:hover button {
    color: #fff;
    background: #333;
    border: 1px solid #fff;
}
.fileManager tbody tr:hover button img {
    filter: invert(100%);
}
.fileManager tbody tr:hover button:hover {
    color: #333;
    background: #fff;
}
.fileManager tbody tr:hover button:hover img {
    filter: invert(20%);
}
.fileManager th {
    padding: 6px 12px;
    text-align: left;
}
.fileManager td {
    padding: 2px 12px;
}
.fileManager td.button {
    width: 0;
}
.fileManager.move {
    padding: 0;
}
.fileManager.move .destination {
    position: absolute;
    top: 0;
    height: 30px;
    left: 0;
    right: 0;
}
.fileManager.move .destination input {
    width: 100%;
}
.fileManager.move .tree {
    position: absolute;
    top: 30px;
    bottom: 0;
    left: 0;
    right: 0;
}
.panel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: auto;
}
.textEditor {
    width: 100%;
    height: 100%;
}
.textEditor .toolbar {
    position: absolute;
    top: 0;
    height: 48px;
    left: 0;
    right: 0;
}
.textEditor .toolbar button {
    margin: 8px;
}
.textEditor .main {
    position: absolute;
    top: 48px;
    bottom: 0;
    left: 0;
    right: 0;
}
.dialog .background {
    z-index: 100;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    opacity: 0.5;
}
.dialog .box {
    z-index: 101;
    position: absolute;
    overflow: auto;
    background: #fff;
    border: 1px solid #333;
}
.dialog .box .title {
    background: #333;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 4px 8px;
    margin: 0;
}
.dialog .box .main {
    padding: 16px;
}
.dialog .box .main .content {
    padding: 0;
    margin: 0;
}
.dialog .box .buttons {
    text-align: center;
    padding: 8px;
}
.center {
    text-align: center;
}
