demo.css
2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
*{ margin: 0; padding: 0; list-style: none; }
html,body{
height: 100%;
width: 100%;
}
#app{
height: 100%;
width: 100%;
position: relative;
}
#appContainer{
float: left;
overflow: hidden;
}
#app #appLeft,
#app #appMian,
#app #appRight{
height: 100%;
position: relative;
float: left;
}
#app #appFooter{
position: relative;
float: left;
width: 100%;
height: 80px;
}
#appLeft{
background-color: #fff;
width: 140px;
overflow: auto;
}
#appRight{
background-color: #fff;
width: 320px;
}
#appMian{
background-color: #fff;
width: 100%;
}
#handleLM,
#handleMR{
width: 2px;
cursor: col-resize;
/* Disable selection so it doesn't get annoying */
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: moz-none;
-ms-user-select: none;
user-select: none;
background-color: #F0F3F5;
height: 100%;
position: absolute;
right: 0;
top: 0;
}
.handle-bar{
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
width: 11px;
height: 70px;
border: 1px solid #000;
text-align: center;
line-height: 70px;
background-color: #dcdcdc;
z-index: 1;
cursor: col-resize;
}
.handle-bar:before,
.handle-bar:after{
content: '|';
display: block;
position: absolute;
}
.handle-bar:before{
left: 2px;
}
.handle-bar:after{
right: 2px;
}
ul.ztree{
background-color: transparent;
width: 100%;
height: 100%;
padding: 10px 8px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
border: none;
padding-top: 70px;
}
textarea[id^="tab"]{ display: none; }
textarea[id^="tab"].active{ display: block; }
.CodeMirror{ padding: 0; }
#appMianHeader{
background-image: -webkit-linear-gradient(left, #1FB6FF 0%, #62DCF5 100%);
background-image: -o-linear-gradient(left, #1FB6FF 0%, #62DCF5 100%);
background-image: linear-gradient(to right, #1FB6FF 0%, #62DCF5 100%);
height: 60px;
}
#appMianHeader .nav-tabs {
border-bottom: none;
padding: 0 8px;
}
#appMianHeader .nav-tabs > li > a {
margin-right: 0;
line-height: 1.428571429;
border: none !important;
background: transparent !important;
height: 60px;
line-height: 60px;
padding: 0 12px;
color: #ADE6FD;
}
#appMianHeader .nav-tabs > li.active > a,
#appMianHeader .nav-tabs > li.active > a:hover,
#appMianHeader .nav-tabs > li.active > a:focus {
color: #FFF;
}
#appMianHeader .iconfont{
font-size: 20px;
vertical-align: middle;
margin-right: 6px;
}