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
| .area-datasource {
| position: absolute;
| left: 5px;
| top: 5px;
| bottom: 5px;
| border: 1px solid #ccc;
| width: 220px;
| }
|
| .area-workspace {
| position: absolute;
| left: 230px;
| top: 5px;
| bottom: 5px;
| right: 5px;
| overflow-x: hidden;
| overflow-y: hidden;
| }
|
| .area-workbook {
| position: absolute;
| top: 0px;
| left: 0px;
| right: 0px;
| height: 50%
| }
|
| .area-formula {
| position: absolute;
| top: 50%;
| left: 0px;
| right: 0px;
| bottom: 0px;
| background-color: white;
| z-index: 20;
| }
|
| .datasource-title {
| height: 34px;
| line-height: 34px;
| font-size: 13px;
| font-weight: bold;
| padding-left: 15px;
| color: #655454;
| background-color: #eaeaea;
| }
|
| .datasource-body {
| position: absolute;
| top: 34px;
| left: 0px;
| right: 0px;
| bottom: 0px;
| overflow-x: hidden;
| overflow-y: auto;
| }
|
| .panel-buttons {
| position: absolute;
| top: 5px;
| left: 0px;
| right: 0px;
| height: 27px;
| background-color: #f6f6f6;
| border: 1px solid #ccc;
| font-size: 12px;
| padding-top: 2px;
| }
|
| .panel-formula {
| position: absolute;
| top: 40px;
| left: 0px;
| right: 0px;
| bottom: 0px;
| border: 1px solid #ccc;
| }
|
| .icon {
| color: #706868;
| }
|
|