infopark_cloud_connector 6.9.3.1.36404185 → 6.9.4
Sign up to get free protection for your applications and to get access to all the features.
- data/app/helpers/rails_connector/cms_asset_helper.rb +16 -20
- data/app/helpers/rails_connector/cms_tag_helper.rb +28 -10
- data/config/ca-bundle.crt +1 -1
- data/lib/assets/javascripts/infopark_editing.js +323 -6665
- data/lib/assets/stylesheets/infopark_editing.css +1 -1042
- data/lib/rails_connector/content_service.rb +1 -0
- metadata +3 -3
@@ -66,8 +66,7 @@
|
|
66
66
|
font-weight: normal;
|
67
67
|
font-style: normal;
|
68
68
|
}
|
69
|
-
i.ip_icon
|
70
|
-
.redactor_toolbar li a {
|
69
|
+
i.ip_icon {
|
71
70
|
font-family: "infopark_iconsregular", Arial, sans-serif;
|
72
71
|
font-style: normal;
|
73
72
|
font-weight: normal;
|
@@ -2046,1043 +2045,3 @@ a.ip_button:active {
|
|
2046
2045
|
background-size: cover;
|
2047
2046
|
}
|
2048
2047
|
}
|
2049
|
-
/*!
|
2050
|
-
* infopark redactor styles
|
2051
|
-
*/
|
2052
|
-
*.ip_field_editable {
|
2053
|
-
outline: 2px dotted #ffa500;
|
2054
|
-
outline: 2px dotted rgba(255, 165, 0, 0.03);
|
2055
|
-
text-shadow: none;
|
2056
|
-
-webkit-transition: outline-color ease-in-out .8s;
|
2057
|
-
-moz-transition: outline-color ease-in-out .8s;
|
2058
|
-
-o-transition: outline-color ease-in-out .8s;
|
2059
|
-
transition: outline-color ease-in-out .8s;
|
2060
|
-
}
|
2061
|
-
*.ip_field_editable:hover,
|
2062
|
-
*.ip_field_editable:focus {
|
2063
|
-
outline: 2px dotted #ffa500;
|
2064
|
-
text-shadow: none;
|
2065
|
-
-webkit-transition: outline-color ease-in-out .3s;
|
2066
|
-
-moz-transition: outline-color ease-in-out .3s;
|
2067
|
-
-o-transition: outline-color ease-in-out .3s;
|
2068
|
-
transition: outline-color ease-in-out .3s;
|
2069
|
-
}
|
2070
|
-
.redactor_box {
|
2071
|
-
position: relative;
|
2072
|
-
*zoom: 1;
|
2073
|
-
}
|
2074
|
-
.redactor_box:before,
|
2075
|
-
.redactor_box:after {
|
2076
|
-
display: table;
|
2077
|
-
content: "";
|
2078
|
-
line-height: 0;
|
2079
|
-
}
|
2080
|
-
.redactor_box:after {
|
2081
|
-
clear: both;
|
2082
|
-
}
|
2083
|
-
.redactor_box.ip_field_saving .redactor_toolbar,
|
2084
|
-
.redactor_box.ip_field_saving .redactor_editor {
|
2085
|
-
opacity: 0.1;
|
2086
|
-
filter: alpha(opacity=10);
|
2087
|
-
}
|
2088
|
-
.redactor_box.ip_field_saving {
|
2089
|
-
opacity: 0.4;
|
2090
|
-
filter: alpha(opacity=40);
|
2091
|
-
background-color: #aaaaaa;
|
2092
|
-
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.7)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.7)), color-stop(0.75, rgba(255, 255, 255, 0.7)), color-stop(0.75, transparent), to(transparent));
|
2093
|
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.7) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.7) 75%, transparent 75%, transparent);
|
2094
|
-
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.7) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.7) 75%, transparent 75%, transparent);
|
2095
|
-
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.7) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.5) 75%, transparent 75%, transparent);
|
2096
|
-
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.7) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.7) 75%, transparent 75%, transparent);
|
2097
|
-
-webkit-background-size: 40px 40px;
|
2098
|
-
-moz-background-size: 40px 40px;
|
2099
|
-
-o-background-size: 40px 40px;
|
2100
|
-
background-size: 40px 40px;
|
2101
|
-
-webkit-animation: progress-bar-stripes 1s linear infinite;
|
2102
|
-
-moz-animation: progress-bar-stripes 1s linear infinite;
|
2103
|
-
-ms-animation: progress-bar-stripes 1s linear infinite;
|
2104
|
-
-o-animation: progress-bar-stripes 1s linear infinite;
|
2105
|
-
animation: progress-bar-stripes 1s linear infinite;
|
2106
|
-
}
|
2107
|
-
.redactor_box.ip_field_saving *.ip_field_editable {
|
2108
|
-
outline: none!important;
|
2109
|
-
}
|
2110
|
-
/*.redactor_box[data-ip-field-saving="true"]:after {content:"\F023"; font-size:22px; line-height:27px; padding:0;
|
2111
|
-
position:absolute; top:50%; left:0; text-align:center; width:100%;
|
2112
|
-
display:block; text-shadow:0px 0px 40px #fff; color:#ffa500; color:rgba(255,165,0,.7);
|
2113
|
-
-webkit-animation: rotation 2s infinite linear;
|
2114
|
-
-moz-animation: rotation 2s infinite linear;
|
2115
|
-
-o-animation: rotation 2s infinite linear;
|
2116
|
-
animation: rotation 2s infinite linear;
|
2117
|
-
}
|
2118
|
-
|
2119
|
-
@-webkit-keyframes rotation {
|
2120
|
-
0% {-webkit-transform: rotate(0deg);}
|
2121
|
-
100% {-webkit-transform: rotate(359deg);}
|
2122
|
-
}
|
2123
|
-
@-moz-keyframes rotation {
|
2124
|
-
from {-moz-transform: rotate(0deg);}
|
2125
|
-
to {-moz-transform: rotate(359deg);}
|
2126
|
-
}
|
2127
|
-
@-o-keyframes rotation {
|
2128
|
-
from {-o-transform: rotate(0deg);}
|
2129
|
-
to {-o-transform: rotate(359deg);}
|
2130
|
-
}
|
2131
|
-
@keyframes rotation {
|
2132
|
-
0% {transform: rotate(0deg);}
|
2133
|
-
100% {transform: rotate(359deg);}
|
2134
|
-
}
|
2135
|
-
*/
|
2136
|
-
.redactor_editor {
|
2137
|
-
*zoom: 1;
|
2138
|
-
-webkit-transition: all ease-in-out .8s;
|
2139
|
-
-moz-transition: all ease-in-out .8s;
|
2140
|
-
-o-transition: all ease-in-out .8s;
|
2141
|
-
transition: all ease-in-out .8s;
|
2142
|
-
}
|
2143
|
-
.redactor_editor:before,
|
2144
|
-
.redactor_editor:after {
|
2145
|
-
display: table;
|
2146
|
-
content: "";
|
2147
|
-
line-height: 0;
|
2148
|
-
}
|
2149
|
-
.redactor_editor:after {
|
2150
|
-
clear: both;
|
2151
|
-
}
|
2152
|
-
.redactor_editor,
|
2153
|
-
.redactor_editor:focus {
|
2154
|
-
min-height: 35px;
|
2155
|
-
margin: 0!important;
|
2156
|
-
}
|
2157
|
-
/*
|
2158
|
-
.redactor_box {
|
2159
|
-
position: relative;
|
2160
|
-
border: 1px solid #ddd;
|
2161
|
-
overflow: visible;
|
2162
|
-
}
|
2163
|
-
|
2164
|
-
*/
|
2165
|
-
body .redactor_air {
|
2166
|
-
position: absolute;
|
2167
|
-
border: 1px solid #ddd;
|
2168
|
-
border-bottom: none;
|
2169
|
-
z-index: 2;
|
2170
|
-
}
|
2171
|
-
body .redactor_box_fullscreen {
|
2172
|
-
left: 0;
|
2173
|
-
position: fixed;
|
2174
|
-
overflow: hidden;
|
2175
|
-
top: 0;
|
2176
|
-
width: 100%;
|
2177
|
-
z-index: 2000;
|
2178
|
-
}
|
2179
|
-
.redactor_box textarea {
|
2180
|
-
font-family: Menlo, Monaco, monospace, sans-serif;
|
2181
|
-
font-size: 13px;
|
2182
|
-
overflow: auto;
|
2183
|
-
resize: none;
|
2184
|
-
margin: 0;
|
2185
|
-
padding: 0;
|
2186
|
-
display: block;
|
2187
|
-
position: relative;
|
2188
|
-
z-index: 1004;
|
2189
|
-
outline: none;
|
2190
|
-
border: none;
|
2191
|
-
width: 100%;
|
2192
|
-
background: #fff;
|
2193
|
-
-webkit-border-radius: 0px;
|
2194
|
-
-moz-border-radius: 0px;
|
2195
|
-
border-radius: 0px;
|
2196
|
-
}
|
2197
|
-
/*
|
2198
|
-
.redactor_editor,
|
2199
|
-
.redactor_editor:focus,
|
2200
|
-
.redactor_editor div,
|
2201
|
-
.redactor_editor p,
|
2202
|
-
.redactor_editor ul,
|
2203
|
-
.redactor_editor ol,
|
2204
|
-
.redactor_editor table,
|
2205
|
-
.redactor_editor dl,
|
2206
|
-
.redactor_editor blockquote,
|
2207
|
-
.redactor_editor pre,
|
2208
|
-
.redactor_editor h1,
|
2209
|
-
.redactor_editor h2,
|
2210
|
-
.redactor_editor h3,
|
2211
|
-
.redactor_editor h4,
|
2212
|
-
.redactor_editor h5 {
|
2213
|
-
font-family: Arial, Helvetica, Verdana, Tahoma, sans-serif !important;
|
2214
|
-
}
|
2215
|
-
|
2216
|
-
.redactor_editor code,
|
2217
|
-
.redactor_editor pre {
|
2218
|
-
font-family: Menlo, Monaco, monospace, sans-serif !important;
|
2219
|
-
}
|
2220
|
-
|
2221
|
-
|
2222
|
-
.redactor_editor,
|
2223
|
-
.redactor_editor:focus,
|
2224
|
-
.redactor_editor div,
|
2225
|
-
.redactor_editor p,
|
2226
|
-
.redactor_editor ul,
|
2227
|
-
.redactor_editor ol,
|
2228
|
-
.redactor_editor table,
|
2229
|
-
.redactor_editor dl,
|
2230
|
-
.redactor_editor blockquote,
|
2231
|
-
.redactor_editor pre {
|
2232
|
-
font-size: 15px !important;
|
2233
|
-
line-height: 1.45em !important;
|
2234
|
-
}
|
2235
|
-
|
2236
|
-
|
2237
|
-
.redactor_editor a {
|
2238
|
-
color: #15c !important;
|
2239
|
-
text-decoration: underline !important;
|
2240
|
-
}
|
2241
|
-
|
2242
|
-
.redactor_editor object,
|
2243
|
-
.redactor_editor embed,
|
2244
|
-
.redactor_editor video,
|
2245
|
-
.redactor_editor img {
|
2246
|
-
width: auto;
|
2247
|
-
max-width: 100%;
|
2248
|
-
}
|
2249
|
-
.redactor_editor video,
|
2250
|
-
.redactor_editor img {
|
2251
|
-
height: auto;
|
2252
|
-
}
|
2253
|
-
|
2254
|
-
.redactor_editor div,
|
2255
|
-
.redactor_editor p,
|
2256
|
-
.redactor_editor ul,
|
2257
|
-
.redactor_editor ol,
|
2258
|
-
.redactor_editor table,
|
2259
|
-
.redactor_editor dl,
|
2260
|
-
.redactor_editor blockquote,
|
2261
|
-
.redactor_editor pre {
|
2262
|
-
box-shadow: none !important;
|
2263
|
-
background: none !important;
|
2264
|
-
margin: 0 !important;
|
2265
|
-
margin-bottom: 15px !important;
|
2266
|
-
border: none;
|
2267
|
-
}
|
2268
|
-
|
2269
|
-
.redactor_editor iframe,
|
2270
|
-
.redactor_editor object,
|
2271
|
-
.redactor_editor hr {
|
2272
|
-
margin-bottom: 15px !important;
|
2273
|
-
}
|
2274
|
-
.redactor_editor blockquote {
|
2275
|
-
margin-left: 3em !important;
|
2276
|
-
font-style: italic !important;
|
2277
|
-
color: #777;
|
2278
|
-
}
|
2279
|
-
.redactor_editor ul,
|
2280
|
-
.redactor_editor ol {
|
2281
|
-
padding-left: 2em !important;
|
2282
|
-
}
|
2283
|
-
.redactor_editor ul ul,
|
2284
|
-
.redactor_editor ol ol,
|
2285
|
-
.redactor_editor ul ol,
|
2286
|
-
.redactor_editor ol ul {
|
2287
|
-
border: none;
|
2288
|
-
margin: 2px !important;
|
2289
|
-
padding: 0 !important;
|
2290
|
-
padding-left: 2em !important;
|
2291
|
-
}
|
2292
|
-
.redactor_editor dl dt { font-weight: bold; }
|
2293
|
-
.redactor_editor dd { margin-left: 1em;}
|
2294
|
-
*/
|
2295
|
-
.redactor_editor table {
|
2296
|
-
border-collapse: collapse;
|
2297
|
-
}
|
2298
|
-
.redactor_editor table td {
|
2299
|
-
border: 1px dotted orange;
|
2300
|
-
padding: 5px !important;
|
2301
|
-
vertical-align: top;
|
2302
|
-
}
|
2303
|
-
/*
|
2304
|
-
.redactor_editor table thead td {
|
2305
|
-
border-bottom: 2px solid #000 !important;
|
2306
|
-
font-weight: bold !important;
|
2307
|
-
}
|
2308
|
-
|
2309
|
-
.redactor_editor code {
|
2310
|
-
background-color: #d8d7d7 !important;
|
2311
|
-
}
|
2312
|
-
.redactor_editor pre {
|
2313
|
-
font-size: 90% !important;
|
2314
|
-
background: #f8f8f8 !important;
|
2315
|
-
border: 1px solid #ddd !important;
|
2316
|
-
border-radius: 3px !important;
|
2317
|
-
padding: 1em !important;
|
2318
|
-
white-space: pre;
|
2319
|
-
overflow: auto;
|
2320
|
-
}
|
2321
|
-
.redactor_editor hr {
|
2322
|
-
display: block;
|
2323
|
-
height: 1px;
|
2324
|
-
border: 0;
|
2325
|
-
border-top: 1px solid #ccc;
|
2326
|
-
}
|
2327
|
-
|
2328
|
-
.redactor_editor h1,
|
2329
|
-
.redactor_editor h2,
|
2330
|
-
.redactor_editor h3,
|
2331
|
-
.redactor_editor h4,
|
2332
|
-
.redactor_editor h5 {
|
2333
|
-
color: #000;
|
2334
|
-
background: none;
|
2335
|
-
margin: 0 !important;
|
2336
|
-
padding: 0 !important;
|
2337
|
-
font-weight: bold;
|
2338
|
-
}
|
2339
|
-
|
2340
|
-
.redactor_editor h1 {
|
2341
|
-
font-size: 36px !important;
|
2342
|
-
line-height: 40px !important;
|
2343
|
-
margin-bottom: 10px !important;
|
2344
|
-
}
|
2345
|
-
.redactor_editor h2 {
|
2346
|
-
font-size: 30px !important;
|
2347
|
-
line-height: 38px !important;
|
2348
|
-
margin-bottom: 15px !important;
|
2349
|
-
}
|
2350
|
-
.redactor_editor h3 {
|
2351
|
-
font-size: 24px !important;
|
2352
|
-
line-height: 30px !important;
|
2353
|
-
margin-bottom: 10px !important;
|
2354
|
-
}
|
2355
|
-
.redactor_editor h4 {
|
2356
|
-
font-size: 18px !important;
|
2357
|
-
line-height: 24px !important;
|
2358
|
-
margin-bottom: 10px !important;
|
2359
|
-
}
|
2360
|
-
.redactor_editor h5 {
|
2361
|
-
font-size: 1em !important;
|
2362
|
-
margin-bottom: 10px !important;
|
2363
|
-
}
|
2364
|
-
|
2365
|
-
.redactor_editor.redactor_editor_wym {
|
2366
|
-
background: #f6f6f6 !important;
|
2367
|
-
padding: 5px 15px !important;
|
2368
|
-
}
|
2369
|
-
.redactor_editor_wym div,
|
2370
|
-
.redactor_editor_wym p,
|
2371
|
-
.redactor_editor_wym ul,
|
2372
|
-
.redactor_editor_wym ol,
|
2373
|
-
.redactor_editor_wym table,
|
2374
|
-
.redactor_editor_wym dl,
|
2375
|
-
.redactor_editor_wym pre,
|
2376
|
-
.redactor_editor_wym h1,
|
2377
|
-
.redactor_editor_wym h2,
|
2378
|
-
.redactor_editor_wym h3,
|
2379
|
-
.redactor_editor_wym h4,
|
2380
|
-
.redactor_editor_wym h5,
|
2381
|
-
.redactor_editor_wym blockquote {
|
2382
|
-
background-color: #fff !important;
|
2383
|
-
border: 1px solid #e4e4e4 !important;
|
2384
|
-
padding: 10px !important;
|
2385
|
-
margin: 10px 0 !important;
|
2386
|
-
}
|
2387
|
-
.redactor_editor_wym ul,
|
2388
|
-
.redactor_editor_wym ol {
|
2389
|
-
padding-left: 2em !important;
|
2390
|
-
}
|
2391
|
-
*/
|
2392
|
-
/*
|
2393
|
-
TOOLBAR
|
2394
|
-
*/
|
2395
|
-
.redactor_toolbar {
|
2396
|
-
font-family: Helvetica, Arial, Verdana, Tahoma, sans-serif !important;
|
2397
|
-
position: relative;
|
2398
|
-
left: 0;
|
2399
|
-
top: 0;
|
2400
|
-
margin: 0 !important;
|
2401
|
-
padding: 0 !important;
|
2402
|
-
padding-left: 2px !important;
|
2403
|
-
line-height: 0 !important;
|
2404
|
-
list-style: none !important;
|
2405
|
-
font-size: 0;
|
2406
|
-
background: #f1f1f1;
|
2407
|
-
background: -moz-linear-gradient(top, #f1f1f1 0%, #e2e2e2 100%);
|
2408
|
-
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f1f1f1), color-stop(100%, #e2e2e2));
|
2409
|
-
background: -webkit-linear-gradient(top, #f1f1f1 0%, #e2e2e2 100%);
|
2410
|
-
background: -o-linear-gradient(top, #f1f1f1 0%, #e2e2e2 100%);
|
2411
|
-
background: -ms-linear-gradient(top, #f1f1f1 0%, #e2e2e2 100%);
|
2412
|
-
background: linear-gradient(to bottom, #f1f1f1 0%, #e2e2e2 100%);
|
2413
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f1f1f1', endColorstr='#e2e2e2', GradientType=0);
|
2414
|
-
*zoom: 1;
|
2415
|
-
}
|
2416
|
-
.redactor_toolbar:before,
|
2417
|
-
.redactor_toolbar:after {
|
2418
|
-
display: table;
|
2419
|
-
content: "";
|
2420
|
-
line-height: 0;
|
2421
|
-
}
|
2422
|
-
.redactor_toolbar:after {
|
2423
|
-
clear: both;
|
2424
|
-
}
|
2425
|
-
body .redactor_air .redactor_toolbar {
|
2426
|
-
padding-right: 2px !important;
|
2427
|
-
}
|
2428
|
-
.redactor_toolbar li {
|
2429
|
-
float: left !important;
|
2430
|
-
margin: 0 !important;
|
2431
|
-
padding: 1px 1px;
|
2432
|
-
padding-right: 0;
|
2433
|
-
list-style: none !important;
|
2434
|
-
outline: none;
|
2435
|
-
}
|
2436
|
-
.redactor_toolbar li.redactor_btn_right {
|
2437
|
-
float: none;
|
2438
|
-
float: right !important;
|
2439
|
-
}
|
2440
|
-
.redactor_toolbar li.redactor_separator {
|
2441
|
-
float: left;
|
2442
|
-
height: 29px;
|
2443
|
-
border-left: 1px solid #d3d3d3;
|
2444
|
-
border-right: 1px solid #f1f1f1;
|
2445
|
-
padding: 0;
|
2446
|
-
margin: 0 2px 0 3px !important;
|
2447
|
-
}
|
2448
|
-
.redactor_toolbar li a {
|
2449
|
-
display: block;
|
2450
|
-
color: #fff;
|
2451
|
-
text-shadow: 0 1px 0 #333;
|
2452
|
-
font-size: 13px;
|
2453
|
-
line-height: 14px;
|
2454
|
-
text-align: center;
|
2455
|
-
padding: 0;
|
2456
|
-
margin: 0;
|
2457
|
-
vertical-align: middle;
|
2458
|
-
width: 25px;
|
2459
|
-
height: 25px;
|
2460
|
-
border: 1px solid transparent;
|
2461
|
-
outline: none;
|
2462
|
-
text-decoration: none;
|
2463
|
-
background-color: #ebebeb;
|
2464
|
-
background-image: -moz-linear-gradient(top, #f1f1f1, #e2e2e2);
|
2465
|
-
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f1f1f1), to(#e2e2e2));
|
2466
|
-
background-image: -webkit-linear-gradient(top, #f1f1f1, #e2e2e2);
|
2467
|
-
background-image: -o-linear-gradient(top, #f1f1f1, #e2e2e2);
|
2468
|
-
background-image: linear-gradient(to bottom, #f1f1f1, #e2e2e2);
|
2469
|
-
background-repeat: repeat-x;
|
2470
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff1f1f1', endColorstr='#ffe2e2e2', GradientType=0);
|
2471
|
-
-webkit-user-select: none;
|
2472
|
-
-moz-user-select: none;
|
2473
|
-
-ms-user-select: none;
|
2474
|
-
-o-user-select: none;
|
2475
|
-
user-select: none;
|
2476
|
-
}
|
2477
|
-
.redactor_toolbar li a:hover {
|
2478
|
-
cursor: pointer;
|
2479
|
-
border: 1px solid #98a6ba;
|
2480
|
-
color: #fff;
|
2481
|
-
outline: none;
|
2482
|
-
background-color: #f8f8f8;
|
2483
|
-
background-image: -moz-linear-gradient(top, #ffffff, #eeeeee);
|
2484
|
-
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#eeeeee));
|
2485
|
-
background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee);
|
2486
|
-
background-image: -o-linear-gradient(top, #ffffff, #eeeeee);
|
2487
|
-
background-image: linear-gradient(to bottom, #ffffff, #eeeeee);
|
2488
|
-
background-repeat: repeat-x;
|
2489
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffeeeeee', GradientType=0);
|
2490
|
-
}
|
2491
|
-
.redactor_toolbar li a:active {
|
2492
|
-
border: 1px solid #b5b5b5;
|
2493
|
-
cursor: pointer;
|
2494
|
-
color: #fff;
|
2495
|
-
outline: none;
|
2496
|
-
background-color: #e7e7e7;
|
2497
|
-
background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
|
2498
|
-
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
|
2499
|
-
background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
|
2500
|
-
background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
|
2501
|
-
background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
|
2502
|
-
background-repeat: repeat-x;
|
2503
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
|
2504
|
-
}
|
2505
|
-
.redactor_toolbar li a.redactor_act {
|
2506
|
-
border: 1px solid #ddd;
|
2507
|
-
cursor: pointer;
|
2508
|
-
color: #fff;
|
2509
|
-
outline: none;
|
2510
|
-
background-color: #fafafa;
|
2511
|
-
background-image: -moz-linear-gradient(top, #ffffff, #f3f3f3);
|
2512
|
-
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f3f3f3));
|
2513
|
-
background-image: -webkit-linear-gradient(top, #ffffff, #f3f3f3);
|
2514
|
-
background-image: -o-linear-gradient(top, #ffffff, #f3f3f3);
|
2515
|
-
background-image: linear-gradient(to bottom, #ffffff, #f3f3f3);
|
2516
|
-
background-repeat: repeat-x;
|
2517
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff3f3f3', GradientType=0);
|
2518
|
-
}
|
2519
|
-
.redactor_toolbar li a.redactor_button_disabled,
|
2520
|
-
.redactor_toolbar li a.redactor_button_disabled:hover,
|
2521
|
-
.redactor_toolbar li a.redactor_button_disabled:active,
|
2522
|
-
.redactor_toolbar li a.redactor_button_disabled.redactor_act {
|
2523
|
-
border: 1px solid transparent;
|
2524
|
-
opacity: 0.3;
|
2525
|
-
background-color: #ebebeb;
|
2526
|
-
background-image: -moz-linear-gradient(top, #f1f1f1, #e2e2e2);
|
2527
|
-
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f1f1f1), to(#e2e2e2));
|
2528
|
-
background-image: -webkit-linear-gradient(top, #f1f1f1, #e2e2e2);
|
2529
|
-
background-image: -o-linear-gradient(top, #f1f1f1, #e2e2e2);
|
2530
|
-
background-image: linear-gradient(to bottom, #f1f1f1, #e2e2e2);
|
2531
|
-
background-repeat: repeat-x;
|
2532
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff1f1f1', endColorstr='#ffe2e2e2', GradientType=0);
|
2533
|
-
}
|
2534
|
-
/* -------- Button Icons -------- */
|
2535
|
-
.redactor_toolbar li a.redactor_btn_html:after {
|
2536
|
-
content: "\F04F";
|
2537
|
-
font-size: 7px;
|
2538
|
-
line-height: 25px;
|
2539
|
-
padding: 0;
|
2540
|
-
display: block;
|
2541
|
-
text-shadow: 0px 1px 0px #fff;
|
2542
|
-
color: #555;
|
2543
|
-
}
|
2544
|
-
.redactor_toolbar li a.redactor_btn_formatting:after {
|
2545
|
-
content: "\F050";
|
2546
|
-
font-size: 7px;
|
2547
|
-
line-height: 25px;
|
2548
|
-
padding: 0;
|
2549
|
-
display: block;
|
2550
|
-
text-shadow: 0px 1px 0px #fff;
|
2551
|
-
color: #555;
|
2552
|
-
}
|
2553
|
-
.redactor_toolbar li a.redactor_btn_bold:after {
|
2554
|
-
content: "\F051";
|
2555
|
-
font-size: 7px;
|
2556
|
-
line-height: 25px;
|
2557
|
-
padding: 0;
|
2558
|
-
display: block;
|
2559
|
-
text-shadow: 0px 1px 0px #fff;
|
2560
|
-
color: #555;
|
2561
|
-
}
|
2562
|
-
.redactor_toolbar li a.redactor_btn_italic:after {
|
2563
|
-
content: "\F052";
|
2564
|
-
font-size: 7px;
|
2565
|
-
line-height: 25px;
|
2566
|
-
padding: 0;
|
2567
|
-
display: block;
|
2568
|
-
text-shadow: 0px 1px 0px #fff;
|
2569
|
-
color: #555;
|
2570
|
-
}
|
2571
|
-
.redactor_toolbar li a.redactor_btn_deleted:after {
|
2572
|
-
content: "\F053";
|
2573
|
-
font-size: 7px;
|
2574
|
-
line-height: 25px;
|
2575
|
-
padding: 0;
|
2576
|
-
display: block;
|
2577
|
-
text-shadow: 0px 1px 0px #fff;
|
2578
|
-
color: #555;
|
2579
|
-
}
|
2580
|
-
.redactor_toolbar li a.redactor_btn_underline:after {
|
2581
|
-
content: "\F054";
|
2582
|
-
font-size: 7px;
|
2583
|
-
line-height: 25px;
|
2584
|
-
padding: 0;
|
2585
|
-
display: block;
|
2586
|
-
text-shadow: 0px 1px 0px #fff;
|
2587
|
-
color: #555;
|
2588
|
-
}
|
2589
|
-
.redactor_toolbar li a.redactor_btn_unorderedlist:after {
|
2590
|
-
content: "\F055";
|
2591
|
-
font-size: 7px;
|
2592
|
-
line-height: 25px;
|
2593
|
-
padding: 0;
|
2594
|
-
display: block;
|
2595
|
-
text-shadow: 0px 1px 0px #fff;
|
2596
|
-
color: #555;
|
2597
|
-
}
|
2598
|
-
.redactor_toolbar li a.redactor_btn_orderedlist:after {
|
2599
|
-
content: "\F056";
|
2600
|
-
font-size: 7px;
|
2601
|
-
line-height: 25px;
|
2602
|
-
padding: 0;
|
2603
|
-
display: block;
|
2604
|
-
text-shadow: 0px 1px 0px #fff;
|
2605
|
-
color: #555;
|
2606
|
-
}
|
2607
|
-
.redactor_toolbar li a.redactor_btn_outdent:after {
|
2608
|
-
content: "\F028";
|
2609
|
-
font-size: 7px;
|
2610
|
-
line-height: 25px;
|
2611
|
-
padding: 0;
|
2612
|
-
display: block;
|
2613
|
-
text-shadow: 0px 1px 0px #fff;
|
2614
|
-
color: #555;
|
2615
|
-
}
|
2616
|
-
.redactor_toolbar li a.redactor_btn_indent:after {
|
2617
|
-
content: "\F027";
|
2618
|
-
font-size: 7px;
|
2619
|
-
line-height: 25px;
|
2620
|
-
padding: 0;
|
2621
|
-
display: block;
|
2622
|
-
text-shadow: 0px 1px 0px #fff;
|
2623
|
-
color: #555;
|
2624
|
-
}
|
2625
|
-
.redactor_toolbar li a.redactor_btn_image:after {
|
2626
|
-
content: "\F061";
|
2627
|
-
font-size: 7px;
|
2628
|
-
line-height: 25px;
|
2629
|
-
padding: 0;
|
2630
|
-
display: block;
|
2631
|
-
text-shadow: 0px 1px 0px #fff;
|
2632
|
-
color: #555;
|
2633
|
-
}
|
2634
|
-
.redactor_toolbar li a.redactor_btn_video:after {
|
2635
|
-
content: "\F062";
|
2636
|
-
font-size: 7px;
|
2637
|
-
line-height: 25px;
|
2638
|
-
padding: 0;
|
2639
|
-
display: block;
|
2640
|
-
text-shadow: 0px 1px 0px #fff;
|
2641
|
-
color: #555;
|
2642
|
-
}
|
2643
|
-
.redactor_toolbar li a.redactor_btn_file:after {
|
2644
|
-
content: "\F001";
|
2645
|
-
font-size: 7px;
|
2646
|
-
line-height: 25px;
|
2647
|
-
padding: 0;
|
2648
|
-
display: block;
|
2649
|
-
text-shadow: 0px 1px 0px #fff;
|
2650
|
-
color: #555;
|
2651
|
-
}
|
2652
|
-
.redactor_toolbar li a.redactor_btn_table:after {
|
2653
|
-
content: "\F05C";
|
2654
|
-
font-size: 7px;
|
2655
|
-
line-height: 25px;
|
2656
|
-
padding: 0;
|
2657
|
-
display: block;
|
2658
|
-
text-shadow: 0px 1px 0px #fff;
|
2659
|
-
color: #555;
|
2660
|
-
}
|
2661
|
-
.redactor_toolbar li a.redactor_btn_link:after {
|
2662
|
-
content: "\F060";
|
2663
|
-
font-size: 7px;
|
2664
|
-
line-height: 25px;
|
2665
|
-
padding: 0;
|
2666
|
-
display: block;
|
2667
|
-
text-shadow: 0px 1px 0px #fff;
|
2668
|
-
color: #555;
|
2669
|
-
}
|
2670
|
-
.redactor_toolbar li a.redactor_btn_fontcolor:after {
|
2671
|
-
content: "\F05D";
|
2672
|
-
font-size: 7px;
|
2673
|
-
line-height: 25px;
|
2674
|
-
padding: 0;
|
2675
|
-
display: block;
|
2676
|
-
text-shadow: 0px 1px 0px #fff;
|
2677
|
-
color: #335374;
|
2678
|
-
}
|
2679
|
-
.redactor_toolbar li a.redactor_btn_backcolor:after {
|
2680
|
-
content: "\F05E";
|
2681
|
-
font-size: 7px;
|
2682
|
-
line-height: 25px;
|
2683
|
-
padding: 0;
|
2684
|
-
display: block;
|
2685
|
-
text-shadow: 0px 1px 0px #fff;
|
2686
|
-
color: #335374;
|
2687
|
-
}
|
2688
|
-
.redactor_toolbar li a.redactor_btn_alignment:after {
|
2689
|
-
content: "\F057";
|
2690
|
-
font-size: 7px;
|
2691
|
-
line-height: 25px;
|
2692
|
-
padding: 0;
|
2693
|
-
display: block;
|
2694
|
-
text-shadow: 0px 1px 0px #fff;
|
2695
|
-
color: #555;
|
2696
|
-
}
|
2697
|
-
.redactor_toolbar li a.redactor_btn_alignleft:after {
|
2698
|
-
content: "\F058";
|
2699
|
-
font-size: 7px;
|
2700
|
-
line-height: 25px;
|
2701
|
-
padding: 0;
|
2702
|
-
display: block;
|
2703
|
-
text-shadow: 0px 1px 0px #fff;
|
2704
|
-
color: #555;
|
2705
|
-
}
|
2706
|
-
.redactor_toolbar li a.redactor_btn_aligncenter:after {
|
2707
|
-
content: "\F059";
|
2708
|
-
font-size: 7px;
|
2709
|
-
line-height: 25px;
|
2710
|
-
padding: 0;
|
2711
|
-
display: block;
|
2712
|
-
text-shadow: 0px 1px 0px #fff;
|
2713
|
-
color: #555;
|
2714
|
-
}
|
2715
|
-
.redactor_toolbar li a.redactor_btn_alignright:after {
|
2716
|
-
content: "\F05A";
|
2717
|
-
font-size: 7px;
|
2718
|
-
line-height: 25px;
|
2719
|
-
padding: 0;
|
2720
|
-
display: block;
|
2721
|
-
text-shadow: 0px 1px 0px #fff;
|
2722
|
-
color: #555;
|
2723
|
-
}
|
2724
|
-
.redactor_toolbar li a.redactor_btn_justify:after {
|
2725
|
-
content: "\F05B";
|
2726
|
-
font-size: 7px;
|
2727
|
-
line-height: 25px;
|
2728
|
-
padding: 0;
|
2729
|
-
display: block;
|
2730
|
-
text-shadow: 0px 1px 0px #fff;
|
2731
|
-
color: #555;
|
2732
|
-
}
|
2733
|
-
.redactor_toolbar li a.redactor_btn_horizontalrule:after {
|
2734
|
-
content: "\F05F";
|
2735
|
-
font-size: 7px;
|
2736
|
-
line-height: 25px;
|
2737
|
-
padding: 0;
|
2738
|
-
display: block;
|
2739
|
-
text-shadow: 0px 1px 0px #fff;
|
2740
|
-
color: #555;
|
2741
|
-
}
|
2742
|
-
.redactor_toolbar li a.redactor_btn_fullscreen:after,
|
2743
|
-
.redactor_toolbar li a.redactor_btn_normalscreen:after,
|
2744
|
-
.redactor_toolbar li a.redactor_btn_clips:after {
|
2745
|
-
content: "\F011";
|
2746
|
-
font-size: 7px;
|
2747
|
-
line-height: 25px;
|
2748
|
-
padding: 0;
|
2749
|
-
display: block;
|
2750
|
-
text-shadow: 0px 1px 0px #fff;
|
2751
|
-
color: #555;
|
2752
|
-
}
|
2753
|
-
/* IP Buttons */
|
2754
|
-
.redactor_toolbar li a.redactor_btn_saveButton:after {
|
2755
|
-
content: "\F03F";
|
2756
|
-
font-size: 10px;
|
2757
|
-
line-height: 27px;
|
2758
|
-
padding: 0;
|
2759
|
-
display: block;
|
2760
|
-
text-shadow: 0px 1px 0px #fff;
|
2761
|
-
color: #73880A;
|
2762
|
-
}
|
2763
|
-
.redactor_toolbar li a.redactor_btn_cancelButton:after {
|
2764
|
-
content: "\F03E";
|
2765
|
-
font-size: 10px;
|
2766
|
-
line-height: 27px;
|
2767
|
-
padding: 0;
|
2768
|
-
display: block;
|
2769
|
-
text-shadow: 0px 1px 0px #fff;
|
2770
|
-
color: #bf1313;
|
2771
|
-
}
|
2772
|
-
/*
|
2773
|
-
Toolbar classes
|
2774
|
-
*/
|
2775
|
-
.redactor_format_blockquote {
|
2776
|
-
font-style: italic;
|
2777
|
-
color: #666 !important;
|
2778
|
-
padding-left: 10px;
|
2779
|
-
}
|
2780
|
-
.redactor_format_pre {
|
2781
|
-
font-family: monospace, sans-serif;
|
2782
|
-
}
|
2783
|
-
.redactor_format_h1,
|
2784
|
-
.redactor_format_h2,
|
2785
|
-
.redactor_format_h3,
|
2786
|
-
.redactor_format_h4 {
|
2787
|
-
font-weight: bold;
|
2788
|
-
}
|
2789
|
-
.redactor_format_h1 {
|
2790
|
-
font-size: 30px;
|
2791
|
-
line-height: 36px;
|
2792
|
-
}
|
2793
|
-
.redactor_format_h2 {
|
2794
|
-
font-size: 24px;
|
2795
|
-
line-height: 36px;
|
2796
|
-
}
|
2797
|
-
.redactor_format_h3 {
|
2798
|
-
font-size: 20px;
|
2799
|
-
line-height: 30px;
|
2800
|
-
}
|
2801
|
-
.redactor_format_h4 {
|
2802
|
-
font-size: 16px;
|
2803
|
-
line-height: 26px;
|
2804
|
-
}
|
2805
|
-
/*
|
2806
|
-
DROPDOWN
|
2807
|
-
*/
|
2808
|
-
.redactor_dropdown {
|
2809
|
-
font-family: Helvetica, Arial, Verdana, Tahoma, sans-serif;
|
2810
|
-
top: 28px;
|
2811
|
-
left: 0;
|
2812
|
-
z-index: 2004;
|
2813
|
-
position: absolute;
|
2814
|
-
width: 200px;
|
2815
|
-
background-color: #fff;
|
2816
|
-
border: 1px solid #ccc;
|
2817
|
-
font-size: 13px;
|
2818
|
-
-webkit-box-shadow: 0 2px 4px #333;
|
2819
|
-
-moz-box-shadow: 0 2px 4px #333;
|
2820
|
-
box-shadow: 0 2px 4px #333;
|
2821
|
-
line-height: 21px;
|
2822
|
-
padding: 10px;
|
2823
|
-
}
|
2824
|
-
.redactor_separator_drop {
|
2825
|
-
border-top: 1px solid #ddd;
|
2826
|
-
padding: 0 !important;
|
2827
|
-
line-height: 0;
|
2828
|
-
font-size: 0;
|
2829
|
-
}
|
2830
|
-
.redactor_dropdown a {
|
2831
|
-
display: block;
|
2832
|
-
color: #000;
|
2833
|
-
padding: 3px 5px;
|
2834
|
-
text-decoration: none;
|
2835
|
-
}
|
2836
|
-
.redactor_dropdown a:hover {
|
2837
|
-
color: #444 !important;
|
2838
|
-
text-decoration: none;
|
2839
|
-
background-color: #dde4ef;
|
2840
|
-
}
|
2841
|
-
/* ColorPicker */
|
2842
|
-
.redactor_color_link {
|
2843
|
-
padding: 0 !important;
|
2844
|
-
width: 15px !important;
|
2845
|
-
height: 15px !important;
|
2846
|
-
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset !important;
|
2847
|
-
border-radius: 4px !important;
|
2848
|
-
float: left !important;
|
2849
|
-
border: 2px solid #fff !important;
|
2850
|
-
font-size: 0;
|
2851
|
-
}
|
2852
|
-
.redactor_color_none {
|
2853
|
-
font-size: 11px;
|
2854
|
-
}
|
2855
|
-
/* MODAL */
|
2856
|
-
#redactor_modal_overlay {
|
2857
|
-
position: fixed;
|
2858
|
-
margin: auto;
|
2859
|
-
top: 0;
|
2860
|
-
left: 0;
|
2861
|
-
width: 100%;
|
2862
|
-
height: 100%;
|
2863
|
-
z-index: 500000;
|
2864
|
-
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
|
2865
|
-
filter: alpha(opacity=50);
|
2866
|
-
opacity: 0.50;
|
2867
|
-
background-color: #333 !important;
|
2868
|
-
}
|
2869
|
-
#redactor_modal {
|
2870
|
-
position: fixed;
|
2871
|
-
top: 50%;
|
2872
|
-
left: 50%;
|
2873
|
-
z-index: 500001;
|
2874
|
-
padding: 0;
|
2875
|
-
border-radius: 3px;
|
2876
|
-
background: #f7f7f7;
|
2877
|
-
background: -moz-linear-gradient(top, #f7f7f7 0%, #e2e2e2 100%);
|
2878
|
-
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7f7f7), color-stop(100%, #e2e2e2));
|
2879
|
-
background: -webkit-linear-gradient(top, #f7f7f7 0%, #e2e2e2 100%);
|
2880
|
-
background: -o-linear-gradient(top, #f7f7f7 0%, #e2e2e2 100%);
|
2881
|
-
background: -ms-linear-gradient(top, #f7f7f7 0%, #e2e2e2 100%);
|
2882
|
-
background: linear-gradient(to bottom, #f7f7f7 0%, #e2e2e2 100%);
|
2883
|
-
box-shadow: 0px 5px 60px #000;
|
2884
|
-
color: #000;
|
2885
|
-
text-shadow: 0 1px 0 #fff;
|
2886
|
-
font-size: 12px !important;
|
2887
|
-
font-family: Helvetica, Arial, Verdana, Tahoma, sans-serif;
|
2888
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7f7f7', endColorstr='#e2e2e2', GradientType=0);
|
2889
|
-
}
|
2890
|
-
#redactor_modal header {
|
2891
|
-
padding: 11px 30px 0 15px;
|
2892
|
-
border-radius: 3px 3px 0 0;
|
2893
|
-
font-weight: bold;
|
2894
|
-
font-size: 12px;
|
2895
|
-
}
|
2896
|
-
#redactor_modal section {
|
2897
|
-
padding: 20px 30px;
|
2898
|
-
}
|
2899
|
-
#redactor_modal_close {
|
2900
|
-
position: absolute;
|
2901
|
-
top: 5px;
|
2902
|
-
right: 5px;
|
2903
|
-
width: 20px;
|
2904
|
-
height: 20px;
|
2905
|
-
color: #777;
|
2906
|
-
font-size: 20px;
|
2907
|
-
cursor: pointer;
|
2908
|
-
}
|
2909
|
-
#redactor_modal_close:hover {
|
2910
|
-
color: #000;
|
2911
|
-
}
|
2912
|
-
#redactor_modal label {
|
2913
|
-
display: block !important;
|
2914
|
-
float: none !important;
|
2915
|
-
margin: 10px 0 3px 0 !important;
|
2916
|
-
padding: 0 !important;
|
2917
|
-
font-size: 12px !important;
|
2918
|
-
}
|
2919
|
-
#redactor_modal textarea {
|
2920
|
-
display: block;
|
2921
|
-
margin-top: 4px;
|
2922
|
-
}
|
2923
|
-
.redactor_input {
|
2924
|
-
width: 99%;
|
2925
|
-
font-size: 14px;
|
2926
|
-
}
|
2927
|
-
.redactor_modal_box {
|
2928
|
-
overflow: auto;
|
2929
|
-
margin-bottom: 10px;
|
2930
|
-
height: 350px;
|
2931
|
-
}
|
2932
|
-
#redactor_image_box {
|
2933
|
-
overflow: auto;
|
2934
|
-
margin-bottom: 10px;
|
2935
|
-
height: 270px;
|
2936
|
-
}
|
2937
|
-
#redactor_image_box_select {
|
2938
|
-
display: block;
|
2939
|
-
margin-bottom: 15px;
|
2940
|
-
width: 200px;
|
2941
|
-
}
|
2942
|
-
#redactor_image_box img {
|
2943
|
-
margin-right: 10px;
|
2944
|
-
margin-bottom: 10px;
|
2945
|
-
max-width: 100px;
|
2946
|
-
cursor: pointer;
|
2947
|
-
}
|
2948
|
-
#redactor_tabs {
|
2949
|
-
margin-bottom: 18px;
|
2950
|
-
}
|
2951
|
-
#redactor_tabs a {
|
2952
|
-
display: inline-block;
|
2953
|
-
margin-right: 5px;
|
2954
|
-
padding: 4px 14px;
|
2955
|
-
border: 1px solid #d2d2d2;
|
2956
|
-
border-radius: 10px;
|
2957
|
-
background-color: #fff;
|
2958
|
-
color: #000;
|
2959
|
-
text-decoration: none;
|
2960
|
-
font-size: 12px;
|
2961
|
-
line-height: 1;
|
2962
|
-
}
|
2963
|
-
#redactor_tabs a:hover,
|
2964
|
-
#redactor_tabs a.redactor_tabs_act {
|
2965
|
-
padding: 5px 15px;
|
2966
|
-
border: none;
|
2967
|
-
background-color: #ddd;
|
2968
|
-
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) inset;
|
2969
|
-
color: #777 !important;
|
2970
|
-
text-decoration: none !important;
|
2971
|
-
text-shadow: 0 1px 0 #eee;
|
2972
|
-
}
|
2973
|
-
#redactor_modal footer {
|
2974
|
-
padding: 9px 30px 20px 30px;
|
2975
|
-
border-radius: 0 0 3px 3px;
|
2976
|
-
text-align: right;
|
2977
|
-
}
|
2978
|
-
#redactor_modal input[type="radio"],
|
2979
|
-
#redactor_modal input[type="checkbox"] {
|
2980
|
-
position: relative;
|
2981
|
-
top: -1px;
|
2982
|
-
}
|
2983
|
-
#redactor_modal input[type="text"],
|
2984
|
-
#redactor_modal input[type="password"],
|
2985
|
-
#redactor_modal input[type="email"],
|
2986
|
-
#redactor_modal textarea {
|
2987
|
-
position: relative;
|
2988
|
-
z-index: 2;
|
2989
|
-
margin: 0;
|
2990
|
-
padding: 1px 2px;
|
2991
|
-
height: 23px;
|
2992
|
-
border: 1px solid #ccc;
|
2993
|
-
border-radius: 1px;
|
2994
|
-
background-color: white;
|
2995
|
-
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
|
2996
|
-
color: #333;
|
2997
|
-
font-size: 13px;
|
2998
|
-
font-family: Helvetica, Arial, Tahoma, sans-serif;
|
2999
|
-
line-height: 1;
|
3000
|
-
-webkit-transition: border 0.3s ease-in;
|
3001
|
-
-moz-transition: border 0.3s ease-in;
|
3002
|
-
-ms-transition: border 0.3s ease-in;
|
3003
|
-
-o-transition: border 0.3s ease-in;
|
3004
|
-
transition: border 0.3s ease-in;
|
3005
|
-
}
|
3006
|
-
#redactor_modal textarea {
|
3007
|
-
line-height: 1.4em;
|
3008
|
-
}
|
3009
|
-
#redactor_modal input:focus,
|
3010
|
-
#redactor_modal textarea:focus {
|
3011
|
-
outline: none;
|
3012
|
-
border-color: #5ca9e4;
|
3013
|
-
box-shadow: 0 0 0 2px rgba(70, 161, 231, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2) inset;
|
3014
|
-
}
|
3015
|
-
.redactor_modal_btn {
|
3016
|
-
margin-left: 8px;
|
3017
|
-
position: relative;
|
3018
|
-
cursor: pointer;
|
3019
|
-
outline: none;
|
3020
|
-
display: inline-block;
|
3021
|
-
text-align: center;
|
3022
|
-
text-decoration: none;
|
3023
|
-
font-family: Helvetica, Arial, Verdana, Tahoma, sans-serif;
|
3024
|
-
line-height: 1;
|
3025
|
-
font-size: 12px;
|
3026
|
-
font-weight: normal;
|
3027
|
-
padding: 6px 16px 5px 16px;
|
3028
|
-
border-radius: 4px;
|
3029
|
-
background-color: #f3f3f3;
|
3030
|
-
background-image: -moz-linear-gradient(top, #ffffff, #e1e1e1);
|
3031
|
-
background-image: -ms-linear-gradient(top, #ffffff, #e1e1e1);
|
3032
|
-
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e1e1e1));
|
3033
|
-
background-image: -webkit-linear-gradient(top, #ffffff, #e1e1e1);
|
3034
|
-
background-image: -o-linear-gradient(top, #ffffff, #e1e1e1);
|
3035
|
-
background-image: linear-gradient(top, #ffffff, #e1e1e1);
|
3036
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e1e1e1', GradientType=0);
|
3037
|
-
border: 1px solid #ccc;
|
3038
|
-
border-bottom-color: #aaa;
|
3039
|
-
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
|
3040
|
-
text-shadow: 0 1px 0px #ffffff;
|
3041
|
-
color: #000;
|
3042
|
-
}
|
3043
|
-
.redactor_modal_btn:hover {
|
3044
|
-
color: #555;
|
3045
|
-
}
|
3046
|
-
.redactor_modal_btn:hover {
|
3047
|
-
filter: none;
|
3048
|
-
background: none;
|
3049
|
-
background: #f3f3f3;
|
3050
|
-
text-shadow: 0 1px 0px rgba(255, 255, 255, 0.8);
|
3051
|
-
text-decoration: none;
|
3052
|
-
}
|
3053
|
-
/* Drag and Drop Area */
|
3054
|
-
.redactor_droparea {
|
3055
|
-
position: relative;
|
3056
|
-
width: 100%;
|
3057
|
-
margin: auto;
|
3058
|
-
margin-bottom: 5px;
|
3059
|
-
}
|
3060
|
-
.redactor_droparea .redactor_dropareabox {
|
3061
|
-
z-index: 1;
|
3062
|
-
position: relative;
|
3063
|
-
text-align: center;
|
3064
|
-
width: 99%;
|
3065
|
-
background-color: #fff;
|
3066
|
-
padding: 60px 0;
|
3067
|
-
border: 2px dashed #bbb;
|
3068
|
-
}
|
3069
|
-
.redactor_droparea .redactor_dropareabox,
|
3070
|
-
.redactor_dropalternative {
|
3071
|
-
color: #555;
|
3072
|
-
font-size: 12px;
|
3073
|
-
}
|
3074
|
-
.redactor_dropalternative {
|
3075
|
-
margin: 4px 0 2px 0;
|
3076
|
-
}
|
3077
|
-
.redactor_dropareabox.hover {
|
3078
|
-
background: #efe3b8;
|
3079
|
-
border-color: #aaa;
|
3080
|
-
}
|
3081
|
-
.redactor_dropareabox.error {
|
3082
|
-
background: #f7e5e5;
|
3083
|
-
border-color: #dcc3c3;
|
3084
|
-
}
|
3085
|
-
.redactor_dropareabox.drop {
|
3086
|
-
background: #f4f4ee;
|
3087
|
-
border-color: #e0e5d6;
|
3088
|
-
}
|