blob: ca029b2578a47f5f9a4cbcf4fb4e8293fdc69d9a [file] [log] [blame]
avm9996304def3e2016-11-27 22:53:05 +01001#sc_drag_area_protector div{
2 border-radius: 0px 0px;
3 margin:0;
4 /*max-width:100%;*/
5 min-width: 1px;
6
7}
8
9#sc_drag_area {
10 height:100px;
11 left:150px;
12 position: absolute;
13 top:100px;
14 width:250px;
15 z-index: 9999;
16}
17#sc_drag_container {
18 border: 1px solid #0000FF;
19 cursor: move ;
20 height: 100% ;
21 margin: 0;
22 overflow: hidden;
23 padding: 0;
24 position: relative ;
25 width: 100%;
26 z-index:9997;
27}
28#sc_drag_area_protector {
29 border-radius: 0px 0px;
30 display: block;
31 height:100%;
32 left:0;
33 top:0;
34 position: absolute;
35 width:100%;
36 z-index:8500;
37 margin: 0;
38
39 min-width: 1px;
40 overflow: hidden;
41}
42#sc_drag_size {
43 background-color: rgba(44, 44, 44, 0.5);
44 color:#ffffff;
45 font-family: arial,san-serif;
46 font-weight:bold;
47 font-size:12px;
48 height:18px;
49 min-width:65px !important;
50 left:12px;
51 line-height:18px;
52 position:absolute;
53 padding-left:4px;
54 padding-right:4px;
55 text-align:center;
56 top: -18px;
57 z-index:9998;
58}
59#sc_drag_cancel, #sc_drag_crop {
60 background-color: rgba(0, 0, 0, 0.5);
61 cursor:pointer;
62 color:#ffffff;
63 font-size:12px;
64 font-family: arial,san-serif;
65 font-weight:bold;
66 height:22px;
67 line-height:22px;
68 position:absolute ;
69 z-index:9998
70}
71#sc_drag_crop {
72 bottom:-25px;
73 text-align: center;
74 right:10px;
75 min-width: 30px !important;
76 padding: 0 10px;
77}
78#sc_drag_cancel {
79 bottom:-25px;
80 text-align: center;
81 right:70px;
82 min-width: 30px !important;
83 padding: 0 10px;
84}
85#sc_drag_shadow_top, #sc_drag_shadow_bottom, #sc_drag_shadow_left, #sc_drag_shadow_right {
86 background-color: #000000;
87 opacity: 0.5;
88 position: absolute;
89 z-index:7000;
90 border: 0;
91}
92#sc_drag_shadow_top {
93 left: 0;
94 top: 0;
95}
96#sc_drag_shadow_bottom {
97 bottom: 0;
98 right: 0;
99}
100#sc_drag_shadow_left {
101 bottom: 0;
102 left: 0;
103}
104#sc_drag_shadow_right {
105 right: 0;
106 top: 0;
107}
108#sc_drag_north_east, #sc_drag_north_west, #sc_drag_south_east, #sc_drag_south_west {
109 border:1px solid #FFFFFF;
110 background-color: #0000FF;
111 height: 5px;
112 position: absolute;
113 width: 5px;
114 z-index:9998;
115}
116#sc_drag_north_east {
117 cursor: ne-resize ;
118 right: -4px ;
119 top: -3px;
120}
121#sc_drag_north_west {
122 cursor: nw-resize ;
123 left: -3px ;
124 top: -3px;
125}
126#sc_drag_south_east {
127 bottom: -4px;
128 cursor: se-resize ;
129 right: -4px ;
130}
131#sc_drag_south_west {
132 bottom: -4px;
133 cursor: sw-resize ;
134 left: -3px ;
135}
136
137.sc_tip_save_status {
138 position :fixed;
139 border-radius: 4px 4px;
140 height: 30px;
141 line-height: 30px;
142 text-indent: 1em;
143 width: 200px;
144 background: #fff1a8;
145 color: #000000;
146 top:5px;
147 left:45%;
148 font-size: 12px;
149}
150
151.sc_tip_save_status a{
152 text-decoration: underline;
153 color: #2A5DB0;
154}