161 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			161 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| #host_main {
 | |
|     overflow: hidden;
 | |
| }
 | |
| 
 | |
| .icn {
 | |
|     font-family: 'CalciteWebCoreIcons';
 | |
| }
 | |
| 
 | |
| .icn-spin {
 | |
|     -webkit-animation: icn-spin 1.2s infinite linear;
 | |
|     animation: icn-spin 1.2s infinite linear;
 | |
| }
 | |
| 
 | |
| @-webkit-keyframes icn-spin {
 | |
|     0% {
 | |
|         -webkit-transform: rotate(0deg);
 | |
|         transform: rotate(0deg);
 | |
|     }
 | |
| 
 | |
|     100% {
 | |
|         -webkit-transform: rotate(359deg);
 | |
|         transform: rotate(359deg);
 | |
|     }
 | |
| }
 | |
| 
 | |
| @keyframes icn-spin {
 | |
|     0% {
 | |
|         -webkit-transform: rotate(0deg);
 | |
|         transform: rotate(0deg);
 | |
|     }
 | |
| 
 | |
|     100% {
 | |
|         -webkit-transform: rotate(359deg);
 | |
|         transform: rotate(359deg);
 | |
|     }
 | |
| }
 | |
| 
 | |
| #set_left {
 | |
|     background: #f6f6f6;
 | |
|     height: 100%;
 | |
|     width: 50px;
 | |
|     float: left;
 | |
|     color: #000;
 | |
|     position: relative;
 | |
| }
 | |
| 
 | |
| #set_right {
 | |
|     background: #fff;
 | |
|     height: 100%;
 | |
|     margin-left: 50px;
 | |
|     position: relative;
 | |
| }
 | |
| 
 | |
| .expand:before {
 | |
|     content: '\e62a';
 | |
| }
 | |
| 
 | |
| .collapse:before {
 | |
|     content: '\e62b';
 | |
| }
 | |
| 
 | |
| .ul_menu {
 | |
|     list-style: none;
 | |
|     margin: 0;
 | |
|     padding: 0;
 | |
| }
 | |
| 
 | |
|     .ul_menu li {
 | |
|         height: 40px;
 | |
|         line-height: 40px;
 | |
|         cursor: pointer;
 | |
|         overflow: hidden;
 | |
|     }
 | |
| 
 | |
|         .ul_menu li.selected,
 | |
|         .ul_menu li.selected:hover {
 | |
|             background: #ccc;
 | |
|         }
 | |
| 
 | |
|         .ul_menu li:hover {
 | |
|             background: rgb(225, 225, 225);
 | |
|         }
 | |
| 
 | |
|         .ul_menu li a span {
 | |
|             display: table-cell;
 | |
|             width: 180px;
 | |
|             white-space: nowrap;
 | |
|         }
 | |
| 
 | |
|         .ul_menu li a,
 | |
|         .ul_menu li a:hover,
 | |
|         .ul_menu li a:visited {
 | |
|             color: #000;
 | |
|             text-decoration: none;
 | |
|         }
 | |
| 
 | |
|         .ul_menu li div {
 | |
|             display: table-cell;
 | |
|             width: 50px;
 | |
|             min-width: 50px;
 | |
|             text-align: center;
 | |
|             font-size: 20px;
 | |
|             vertical-align: middle;
 | |
|         }
 | |
| 
 | |
| #nav_arrow .icn {
 | |
|     float: right;
 | |
|     font-size: 16px;
 | |
| }
 | |
| 
 | |
| #nav_users .icn:before {
 | |
|     content: '\e675';
 | |
| }
 | |
| 
 | |
| #nav_user_group .icn:before {
 | |
|     content: '\e655';
 | |
| }
 | |
| 
 | |
| #nav_dts .icn:before {
 | |
|     content: '\e61f';
 | |
| }
 | |
| 
 | |
| #nav_dt_group .icn:before {
 | |
|     content: '\e659';
 | |
| }
 | |
| 
 | |
| #nav_filters .icn:before {
 | |
|     content: '\e653';
 | |
| }
 | |
| 
 | |
| .set_iframe {
 | |
|     border: none;
 | |
|     margin: 0;
 | |
|     padding: 0;
 | |
|     width: 100%;
 | |
|     height: 100%;
 | |
|     display: block;
 | |
| }
 | |
| 
 | |
| .loading_holder {
 | |
|     position: absolute;
 | |
|     width: 100%;
 | |
|     height: 100%;
 | |
| }
 | |
| 
 | |
|     .loading_holder .loading_icon {
 | |
|         width: 70px;
 | |
|         height: 70px;
 | |
|         text-align: center;
 | |
|         line-height: 70px;
 | |
|         font-size: 54px;
 | |
|         position: absolute;
 | |
|         left: 50%;
 | |
|         top: 50%;
 | |
|         margin: -50px 0 0 -35px;
 | |
|     }
 | |
| 
 | |
|         .loading_holder .loading_icon:before {
 | |
|             content: '\e61a';
 | |
|         }
 |