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
| /*Plugin CSS*/
| .str_wrap {
| overflow: hidden;
| //zoom:1;
| width: 100%;
| font-size: 12px;
| line-height: 16px;
| position: relative;
| -moz-user-select: none;
| -khtml-user-select: none;
| user-select: none;
| /* background: #f6f6f6; */
| white-space: nowrap;
| }
|
| .str_wrap.str_active {
| /* background: #f1f1f1; */
| }
|
| .str_move {
| white-space: nowrap;
| position: absolute;
| top: 0;
| left: 0;
| cursor: move;
| }
|
| .str_move_clone {
| display: inline-block;
| //display:inline;
| //zoom:1;
| vertical-align: top;
| position: absolute;
| left: 100%;
| top: 0;
| }
|
| .str_vertical .str_move_clone {
| left: 0;
| top: 100%;
| }
|
| .str_down .str_move_clone {
| left: 0;
| bottom: 100%;
| }
|
| .str_vertical .str_move,
| .str_down .str_move {
| white-space: normal;
| width: 100%;
| }
|
| .str_static .str_move,
| .no_drag .str_move,
| .noStop .str_move {
| cursor: inherit;
| }
|
| .str_wrap img {
| max-width: none !important;
| }
|
|