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
 
/********************************************************/
.tab-widget-frame{
  border: 1px solid transparent;
}
.tab-widget-frame .title{
  overflow: hidden;
}
.tab-widget-frame .title-label{
  height: 20px;
  padding: 5px 13px;
  background-color: white;
  float: left;
  border-top-left-radius: 4px;
  color: #222;
  font: 12px Arial;
  /*font-weight: bold;*/
  display: inline-block;
  max-width: 338px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tab-widget-frame .title-angle{
  width: 21px;
  height: 20px;
  background: url(images/tab_triangle.png);
  float: left;
}
.tab-widget-frame .jimu-container{
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  position: relative;
  overflow-x: auto;
}
.tab-widget-frame .jimu-viewstack {
  top: 0px;
}
.tab-widget-frame .jimu-widget-chart{
  background-color: #fff;
}
 
.jimu-rtl .tab-widget-frame .title-label{
  float: right;
  border-top-right-radius: 4px;
  border-top-left-radius: 0;
}
.jimu-rtl .tab-widget-frame .title-angle{
  background: url(images/tab_triangle_2.png);
  float: right;
}
.jimu-rtl .tab-widget-frame .jimu-container{
  border-top-left-radius: 4px;
  border-top-right-radius: 0;
}