nnnjjj123
2020-11-17 1b2c1edb61190eeb19f465ff031eaa3b2a1b8dbc
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
.dart-panel {
  position: relative;
  overflow: hidden;
  z-index:;
}
 
.dart-panel .title {
  position: absolute;
  height: 60px;
  width: 100%;
}
 
.dart-panel .handle {
  position: absolute;
  height: 60px;
  left: 0px;
  right: 64px;
  cursor: move;
}
 
.jimu-rtl .dart-panel .handle {
  right: 0px;
  left: 64px;
}
 
.dart-panel .handle.minimized {
  left: 0px;
  right: 0px;
  height: 30px;
}
 
.dart-panel .title .widget-icon {
  position: absolute;
  width: 60px;
  height: 60px;
}
 
.dart-panel .title .widget-icon .icon {
  margin: 15px;
  width: 30px;
  height: 30px;
}
 
.jimu-rtl .dart-panel .title .widget-icon {
  right: 0px;
}
 
.dart-panel .title-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #ffffff;
  font-size: 16px;
  line-height: 60px;
  position: absolute;
  left: 60px;
  right: 70px;
}
 
.jimu-rtl .dart-panel .title-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #ffffff;
  font-size: 16px;
  line-height: 60px;
  position: absolute;
  left: 70px;
  right: 60px;
}
 
.dart-panel .title .min-icon {
  margin: 0;
  width: 32px;
  height: 60px;
  display: block;
  cursor: pointer;
  z-index: 10;
  background: transparent url(images/fold_up.png) center no-repeat;
}
 
.dart-panel .title .min-icon.minimized {
  margin: 50px 0;
  width: 60px;
  height: 10px;
}
 
.dart-panel .title .close-icon {
  margin: 0;
  width: 32px;
  height: 60px;
  display: block;
  cursor: pointer;
  background: transparent url(images/x.png) center no-repeat;
}
 
.dart-panel .title .close-icon.minimized {
  display: none;
}
 
.dart-panel .panel-bg {
  position: absolute;
  top: 60px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: #4c4c4c;
  background-image: url('images/shadow.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
 
.dart-panel .panel-content {
  position: absolute;
  top: 60px;
  left: 10px;
  right: 10px;
  bottom: 10px;
}