21 lines
804 B
CSS
21 lines
804 B
CSS
.flex {display: flex;}
|
|
.flex-center {display: flex; justify-content: center; align-items: center;}
|
|
#main {padding-bottom: 0;}
|
|
|
|
.selectBox > button {width: 180px;}
|
|
/* main-content */
|
|
#mainContent {}
|
|
#mainContent > #sideBar {flex: 0 0 180px; height: calc(100vh - 120px); overflow: auto;}
|
|
#mainContent > .sidebar-toggle {flex: 0 0 16px;}
|
|
#mainContent > .main-col {flex: auto; height: calc(100vh - 120px); overflow: auto;}
|
|
|
|
/* tree */
|
|
.tree-icon {position: absolute; right: 0;}
|
|
.tree li > a {max-width: 100%; padding: 2px;}
|
|
.file-tree a.show-icon {padding-right: 15px;}
|
|
.tree li.has-input {overflow: hidden;}
|
|
|
|
/* sideBar */
|
|
|
|
.sidebar-toggle > .icon {width: 16px; height: 30px; margin-top: -10px; line-height: 30px; color: #fff; text-align: center; background: #7dcdfe; border-radius: 6px; cursor: pointer;}
|