infopark_cloud_connector 6.9.1.3.22208381 → 6.9.2.1.125136549

Sign up to get free protection for your applications and to get access to all the features.
Files changed (28) hide show
  1. data/app/controllers/rails_connector/blobs_controller.rb +1 -1
  2. data/app/controllers/rails_connector/objs_controller.rb +29 -9
  3. data/app/controllers/rails_connector/tasks_controller.rb +1 -1
  4. data/app/controllers/rails_connector/widget_renderer.rb +66 -0
  5. data/app/controllers/rails_connector/workspaces_controller.rb +9 -5
  6. data/app/helpers/rails_connector/cms_tag_helper.rb +40 -12
  7. data/app/views/rails_connector/objs/create_widget.html.erb +1 -1
  8. data/app/views/rails_connector/objs/show.html.erb +1 -0
  9. data/config/routes.rb +1 -1
  10. data/lib/assets/javascripts/infopark_editing.js +5598 -3254
  11. data/lib/assets/stylesheets/infopark_editing.css +366 -311
  12. data/lib/generators/cms/migration/templates/migration.rb +7 -9
  13. data/lib/rails_connector/backend_not_available.rb +1 -1
  14. data/lib/rails_connector/basic_obj.rb +10 -21
  15. data/lib/rails_connector/cache.rb +1 -1
  16. data/lib/rails_connector/cms_cache_storage.rb +10 -1
  17. data/lib/rails_connector/cms_rest_api.rb +80 -40
  18. data/lib/rails_connector/content_service.rb +1 -1
  19. data/lib/rails_connector/date_attribute.rb +1 -1
  20. data/lib/rails_connector/link.rb +0 -4
  21. data/lib/rails_connector/migrations/migration_dsl.rb +116 -12
  22. data/lib/rails_connector/migrations/migrator.rb +0 -1
  23. data/lib/rails_connector/workspace.rb +1 -1
  24. metadata +5 -7
  25. data/lib/rails_connector/cms_api_search_request.rb +0 -50
  26. data/lib/rails_connector/default_search_request.rb +0 -6
  27. data/lib/rails_connector/elasticsearch_request.rb +0 -78
  28. data/lib/rails_connector/widget_renderer.rb +0 -41
@@ -117,6 +117,7 @@ html.ip_bottombar_on {
117
117
  padding: 0;
118
118
  }
119
119
  .ip_field_editable:empty:before {
120
+ line-height: 35px!important;
120
121
  content: '\F058';
121
122
  }
122
123
  .ip_editing_dragover {
@@ -1051,6 +1052,25 @@ a.ip_button:active {
1051
1052
  color: #fff;
1052
1053
  text-shadow: 0 1px 1px #333;
1053
1054
  }
1055
+ .ip_element_overlay {
1056
+ opacity: 0.4;
1057
+ filter: alpha(opacity=40);
1058
+ background-color: #aaaaaa;
1059
+ 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));
1060
+ 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);
1061
+ 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);
1062
+ 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);
1063
+ 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);
1064
+ -webkit-background-size: 40px 40px;
1065
+ -moz-background-size: 40px 40px;
1066
+ -o-background-size: 40px 40px;
1067
+ background-size: 40px 40px;
1068
+ -webkit-animation: progress-bar-stripes 1s linear infinite;
1069
+ -moz-animation: progress-bar-stripes 1s linear infinite;
1070
+ -ms-animation: progress-bar-stripes 1s linear infinite;
1071
+ -o-animation: progress-bar-stripes 1s linear infinite;
1072
+ animation: progress-bar-stripes 1s linear infinite;
1073
+ }
1054
1074
  .ip_overlay {
1055
1075
  position: fixed;
1056
1076
  top: 0;
@@ -1072,7 +1092,7 @@ a.ip_button:active {
1072
1092
  background: radial-gradient(ellipse at center, #777777 10%, #333333 80%);
1073
1093
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#777777', endColorstr='#333333', GradientType=1);
1074
1094
  }
1075
- .ip_overlay.show {
1095
+ .ip_overlay.ip_show {
1076
1096
  z-index: 222222;
1077
1097
  opacity: 0.85;
1078
1098
  filter: alpha(opacity=85);
@@ -1138,18 +1158,18 @@ a.ip_button:active {
1138
1158
  -o-animation: rotation 4s infinite linear;
1139
1159
  animation: rotation 4s infinite linear;
1140
1160
  }
1141
- .ip_modal_small .modal_body form,
1142
- .ip_modal_big .modal_body form {
1161
+ .ip_modal_small .ip_modal_body form,
1162
+ .ip_modal_big .ip_modal_body form {
1143
1163
  margin: 0;
1144
1164
  }
1145
- .ip_modal_small .modal_body fieldset,
1146
- .ip_modal_big .modal_body fieldset {
1165
+ .ip_modal_small .ip_modal_body fieldset,
1166
+ .ip_modal_big .ip_modal_body fieldset {
1147
1167
  padding: 0;
1148
1168
  margin: 0;
1149
1169
  border: 0;
1150
1170
  }
1151
- .ip_modal_small .modal_body legend,
1152
- .ip_modal_big .modal_body legend {
1171
+ .ip_modal_small .ip_modal_body legend,
1172
+ .ip_modal_big .ip_modal_body legend {
1153
1173
  display: block;
1154
1174
  width: 100%;
1155
1175
  padding: 0;
@@ -1160,74 +1180,74 @@ a.ip_button:active {
1160
1180
  border: 0;
1161
1181
  border-bottom: 1px solid #e5e5e5;
1162
1182
  }
1163
- .ip_modal_small .modal_body legend small,
1164
- .ip_modal_big .modal_body legend small {
1183
+ .ip_modal_small .ip_modal_body legend small,
1184
+ .ip_modal_big .ip_modal_body legend small {
1165
1185
  font-size: 15px;
1166
1186
  color: #999999;
1167
1187
  }
1168
- .ip_modal_small .modal_body label,
1169
- .ip_modal_big .modal_body label,
1170
- .ip_modal_small .modal_body input,
1171
- .ip_modal_big .modal_body input,
1172
- .ip_modal_small .modal_body button,
1173
- .ip_modal_big .modal_body button,
1174
- .ip_modal_small .modal_body select,
1175
- .ip_modal_big .modal_body select,
1176
- .ip_modal_small .modal_body textarea,
1177
- .ip_modal_big .modal_body textarea {
1188
+ .ip_modal_small .ip_modal_body label,
1189
+ .ip_modal_big .ip_modal_body label,
1190
+ .ip_modal_small .ip_modal_body input,
1191
+ .ip_modal_big .ip_modal_body input,
1192
+ .ip_modal_small .ip_modal_body button,
1193
+ .ip_modal_big .ip_modal_body button,
1194
+ .ip_modal_small .ip_modal_body select,
1195
+ .ip_modal_big .ip_modal_body select,
1196
+ .ip_modal_small .ip_modal_body textarea,
1197
+ .ip_modal_big .ip_modal_body textarea {
1178
1198
  font-size: 14px;
1179
1199
  font-weight: normal;
1180
1200
  line-height: 20px;
1181
1201
  }
1182
- .ip_modal_small .modal_body input,
1183
- .ip_modal_big .modal_body input,
1184
- .ip_modal_small .modal_body button,
1185
- .ip_modal_big .modal_body button,
1186
- .ip_modal_small .modal_body select,
1187
- .ip_modal_big .modal_body select,
1188
- .ip_modal_small .modal_body textarea,
1189
- .ip_modal_big .modal_body textarea {
1202
+ .ip_modal_small .ip_modal_body input,
1203
+ .ip_modal_big .ip_modal_body input,
1204
+ .ip_modal_small .ip_modal_body button,
1205
+ .ip_modal_big .ip_modal_body button,
1206
+ .ip_modal_small .ip_modal_body select,
1207
+ .ip_modal_big .ip_modal_body select,
1208
+ .ip_modal_small .ip_modal_body textarea,
1209
+ .ip_modal_big .ip_modal_body textarea {
1190
1210
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1191
1211
  }
1192
- .ip_modal_small .modal_body label,
1193
- .ip_modal_big .modal_body label {
1212
+ .ip_modal_small .ip_modal_body label,
1213
+ .ip_modal_big .ip_modal_body label {
1194
1214
  display: block;
1195
1215
  margin-bottom: 5px;
1196
1216
  }
1197
- .ip_modal_small .modal_body select,
1198
- .ip_modal_big .modal_body select,
1199
- .ip_modal_small .modal_body textarea,
1200
- .ip_modal_big .modal_body textarea,
1201
- .ip_modal_small .modal_body input[type="text"],
1202
- .ip_modal_big .modal_body input[type="text"],
1203
- .ip_modal_small .modal_body input[type="password"],
1204
- .ip_modal_big .modal_body input[type="password"],
1205
- .ip_modal_small .modal_body input[type="datetime"],
1206
- .ip_modal_big .modal_body input[type="datetime"],
1207
- .ip_modal_small .modal_body input[type="datetime-local"],
1208
- .ip_modal_big .modal_body input[type="datetime-local"],
1209
- .ip_modal_small .modal_body input[type="date"],
1210
- .ip_modal_big .modal_body input[type="date"],
1211
- .ip_modal_small .modal_body input[type="month"],
1212
- .ip_modal_big .modal_body input[type="month"],
1213
- .ip_modal_small .modal_body input[type="time"],
1214
- .ip_modal_big .modal_body input[type="time"],
1215
- .ip_modal_small .modal_body input[type="week"],
1216
- .ip_modal_big .modal_body input[type="week"],
1217
- .ip_modal_small .modal_body input[type="number"],
1218
- .ip_modal_big .modal_body input[type="number"],
1219
- .ip_modal_small .modal_body input[type="email"],
1220
- .ip_modal_big .modal_body input[type="email"],
1221
- .ip_modal_small .modal_body input[type="url"],
1222
- .ip_modal_big .modal_body input[type="url"],
1223
- .ip_modal_small .modal_body input[type="search"],
1224
- .ip_modal_big .modal_body input[type="search"],
1225
- .ip_modal_small .modal_body input[type="tel"],
1226
- .ip_modal_big .modal_body input[type="tel"],
1227
- .ip_modal_small .modal_body input[type="color"],
1228
- .ip_modal_big .modal_body input[type="color"],
1229
- .ip_modal_small .modal_body .uneditable-input,
1230
- .ip_modal_big .modal_body .uneditable-input {
1217
+ .ip_modal_small .ip_modal_body select,
1218
+ .ip_modal_big .ip_modal_body select,
1219
+ .ip_modal_small .ip_modal_body textarea,
1220
+ .ip_modal_big .ip_modal_body textarea,
1221
+ .ip_modal_small .ip_modal_body input[type="text"],
1222
+ .ip_modal_big .ip_modal_body input[type="text"],
1223
+ .ip_modal_small .ip_modal_body input[type="password"],
1224
+ .ip_modal_big .ip_modal_body input[type="password"],
1225
+ .ip_modal_small .ip_modal_body input[type="datetime"],
1226
+ .ip_modal_big .ip_modal_body input[type="datetime"],
1227
+ .ip_modal_small .ip_modal_body input[type="datetime-local"],
1228
+ .ip_modal_big .ip_modal_body input[type="datetime-local"],
1229
+ .ip_modal_small .ip_modal_body input[type="date"],
1230
+ .ip_modal_big .ip_modal_body input[type="date"],
1231
+ .ip_modal_small .ip_modal_body input[type="month"],
1232
+ .ip_modal_big .ip_modal_body input[type="month"],
1233
+ .ip_modal_small .ip_modal_body input[type="time"],
1234
+ .ip_modal_big .ip_modal_body input[type="time"],
1235
+ .ip_modal_small .ip_modal_body input[type="week"],
1236
+ .ip_modal_big .ip_modal_body input[type="week"],
1237
+ .ip_modal_small .ip_modal_body input[type="number"],
1238
+ .ip_modal_big .ip_modal_body input[type="number"],
1239
+ .ip_modal_small .ip_modal_body input[type="email"],
1240
+ .ip_modal_big .ip_modal_body input[type="email"],
1241
+ .ip_modal_small .ip_modal_body input[type="url"],
1242
+ .ip_modal_big .ip_modal_body input[type="url"],
1243
+ .ip_modal_small .ip_modal_body input[type="search"],
1244
+ .ip_modal_big .ip_modal_body input[type="search"],
1245
+ .ip_modal_small .ip_modal_body input[type="tel"],
1246
+ .ip_modal_big .ip_modal_body input[type="tel"],
1247
+ .ip_modal_small .ip_modal_body input[type="color"],
1248
+ .ip_modal_big .ip_modal_body input[type="color"],
1249
+ .ip_modal_small .ip_modal_body .uneditable-input,
1250
+ .ip_modal_big .ip_modal_body .uneditable-input {
1231
1251
  display: inline-block;
1232
1252
  height: 20px;
1233
1253
  padding: 4px 6px;
@@ -1240,50 +1260,50 @@ a.ip_button:active {
1240
1260
  border-radius: 4px;
1241
1261
  vertical-align: middle;
1242
1262
  }
1243
- .ip_modal_small .modal_body input,
1244
- .ip_modal_big .modal_body input,
1245
- .ip_modal_small .modal_body textarea,
1246
- .ip_modal_big .modal_body textarea,
1247
- .ip_modal_small .modal_body .uneditable-input,
1248
- .ip_modal_big .modal_body .uneditable-input {
1263
+ .ip_modal_small .ip_modal_body input,
1264
+ .ip_modal_big .ip_modal_body input,
1265
+ .ip_modal_small .ip_modal_body textarea,
1266
+ .ip_modal_big .ip_modal_body textarea,
1267
+ .ip_modal_small .ip_modal_body .uneditable-input,
1268
+ .ip_modal_big .ip_modal_body .uneditable-input {
1249
1269
  width: 206px;
1250
1270
  }
1251
- .ip_modal_small .modal_body textarea,
1252
- .ip_modal_big .modal_body textarea {
1271
+ .ip_modal_small .ip_modal_body textarea,
1272
+ .ip_modal_big .ip_modal_body textarea {
1253
1273
  height: auto;
1254
1274
  }
1255
- .ip_modal_small .modal_body textarea,
1256
- .ip_modal_big .modal_body textarea,
1257
- .ip_modal_small .modal_body input[type="text"],
1258
- .ip_modal_big .modal_body input[type="text"],
1259
- .ip_modal_small .modal_body input[type="password"],
1260
- .ip_modal_big .modal_body input[type="password"],
1261
- .ip_modal_small .modal_body input[type="datetime"],
1262
- .ip_modal_big .modal_body input[type="datetime"],
1263
- .ip_modal_small .modal_body input[type="datetime-local"],
1264
- .ip_modal_big .modal_body input[type="datetime-local"],
1265
- .ip_modal_small .modal_body input[type="date"],
1266
- .ip_modal_big .modal_body input[type="date"],
1267
- .ip_modal_small .modal_body input[type="month"],
1268
- .ip_modal_big .modal_body input[type="month"],
1269
- .ip_modal_small .modal_body input[type="time"],
1270
- .ip_modal_big .modal_body input[type="time"],
1271
- .ip_modal_small .modal_body input[type="week"],
1272
- .ip_modal_big .modal_body input[type="week"],
1273
- .ip_modal_small .modal_body input[type="number"],
1274
- .ip_modal_big .modal_body input[type="number"],
1275
- .ip_modal_small .modal_body input[type="email"],
1276
- .ip_modal_big .modal_body input[type="email"],
1277
- .ip_modal_small .modal_body input[type="url"],
1278
- .ip_modal_big .modal_body input[type="url"],
1279
- .ip_modal_small .modal_body input[type="search"],
1280
- .ip_modal_big .modal_body input[type="search"],
1281
- .ip_modal_small .modal_body input[type="tel"],
1282
- .ip_modal_big .modal_body input[type="tel"],
1283
- .ip_modal_small .modal_body input[type="color"],
1284
- .ip_modal_big .modal_body input[type="color"],
1285
- .ip_modal_small .modal_body .uneditable-input,
1286
- .ip_modal_big .modal_body .uneditable-input {
1275
+ .ip_modal_small .ip_modal_body textarea,
1276
+ .ip_modal_big .ip_modal_body textarea,
1277
+ .ip_modal_small .ip_modal_body input[type="text"],
1278
+ .ip_modal_big .ip_modal_body input[type="text"],
1279
+ .ip_modal_small .ip_modal_body input[type="password"],
1280
+ .ip_modal_big .ip_modal_body input[type="password"],
1281
+ .ip_modal_small .ip_modal_body input[type="datetime"],
1282
+ .ip_modal_big .ip_modal_body input[type="datetime"],
1283
+ .ip_modal_small .ip_modal_body input[type="datetime-local"],
1284
+ .ip_modal_big .ip_modal_body input[type="datetime-local"],
1285
+ .ip_modal_small .ip_modal_body input[type="date"],
1286
+ .ip_modal_big .ip_modal_body input[type="date"],
1287
+ .ip_modal_small .ip_modal_body input[type="month"],
1288
+ .ip_modal_big .ip_modal_body input[type="month"],
1289
+ .ip_modal_small .ip_modal_body input[type="time"],
1290
+ .ip_modal_big .ip_modal_body input[type="time"],
1291
+ .ip_modal_small .ip_modal_body input[type="week"],
1292
+ .ip_modal_big .ip_modal_body input[type="week"],
1293
+ .ip_modal_small .ip_modal_body input[type="number"],
1294
+ .ip_modal_big .ip_modal_body input[type="number"],
1295
+ .ip_modal_small .ip_modal_body input[type="email"],
1296
+ .ip_modal_big .ip_modal_body input[type="email"],
1297
+ .ip_modal_small .ip_modal_body input[type="url"],
1298
+ .ip_modal_big .ip_modal_body input[type="url"],
1299
+ .ip_modal_small .ip_modal_body input[type="search"],
1300
+ .ip_modal_big .ip_modal_body input[type="search"],
1301
+ .ip_modal_small .ip_modal_body input[type="tel"],
1302
+ .ip_modal_big .ip_modal_body input[type="tel"],
1303
+ .ip_modal_small .ip_modal_body input[type="color"],
1304
+ .ip_modal_big .ip_modal_body input[type="color"],
1305
+ .ip_modal_small .ip_modal_body .uneditable-input,
1306
+ .ip_modal_big .ip_modal_body .uneditable-input {
1287
1307
  background-color: #ffffff;
1288
1308
  border: 1px solid #cccccc;
1289
1309
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
@@ -1294,38 +1314,38 @@ a.ip_button:active {
1294
1314
  -o-transition: border linear 0.2s, box-shadow linear 0.2s;
1295
1315
  transition: border linear 0.2s, box-shadow linear 0.2s;
1296
1316
  }
1297
- .ip_modal_small .modal_body textarea:focus,
1298
- .ip_modal_big .modal_body textarea:focus,
1299
- .ip_modal_small .modal_body input[type="text"]:focus,
1300
- .ip_modal_big .modal_body input[type="text"]:focus,
1301
- .ip_modal_small .modal_body input[type="password"]:focus,
1302
- .ip_modal_big .modal_body input[type="password"]:focus,
1303
- .ip_modal_small .modal_body input[type="datetime"]:focus,
1304
- .ip_modal_big .modal_body input[type="datetime"]:focus,
1305
- .ip_modal_small .modal_body input[type="datetime-local"]:focus,
1306
- .ip_modal_big .modal_body input[type="datetime-local"]:focus,
1307
- .ip_modal_small .modal_body input[type="date"]:focus,
1308
- .ip_modal_big .modal_body input[type="date"]:focus,
1309
- .ip_modal_small .modal_body input[type="month"]:focus,
1310
- .ip_modal_big .modal_body input[type="month"]:focus,
1311
- .ip_modal_small .modal_body input[type="time"]:focus,
1312
- .ip_modal_big .modal_body input[type="time"]:focus,
1313
- .ip_modal_small .modal_body input[type="week"]:focus,
1314
- .ip_modal_big .modal_body input[type="week"]:focus,
1315
- .ip_modal_small .modal_body input[type="number"]:focus,
1316
- .ip_modal_big .modal_body input[type="number"]:focus,
1317
- .ip_modal_small .modal_body input[type="email"]:focus,
1318
- .ip_modal_big .modal_body input[type="email"]:focus,
1319
- .ip_modal_small .modal_body input[type="url"]:focus,
1320
- .ip_modal_big .modal_body input[type="url"]:focus,
1321
- .ip_modal_small .modal_body input[type="search"]:focus,
1322
- .ip_modal_big .modal_body input[type="search"]:focus,
1323
- .ip_modal_small .modal_body input[type="tel"]:focus,
1324
- .ip_modal_big .modal_body input[type="tel"]:focus,
1325
- .ip_modal_small .modal_body input[type="color"]:focus,
1326
- .ip_modal_big .modal_body input[type="color"]:focus,
1327
- .ip_modal_small .modal_body .uneditable-input:focus,
1328
- .ip_modal_big .modal_body .uneditable-input:focus {
1317
+ .ip_modal_small .ip_modal_body textarea:focus,
1318
+ .ip_modal_big .ip_modal_body textarea:focus,
1319
+ .ip_modal_small .ip_modal_body input[type="text"]:focus,
1320
+ .ip_modal_big .ip_modal_body input[type="text"]:focus,
1321
+ .ip_modal_small .ip_modal_body input[type="password"]:focus,
1322
+ .ip_modal_big .ip_modal_body input[type="password"]:focus,
1323
+ .ip_modal_small .ip_modal_body input[type="datetime"]:focus,
1324
+ .ip_modal_big .ip_modal_body input[type="datetime"]:focus,
1325
+ .ip_modal_small .ip_modal_body input[type="datetime-local"]:focus,
1326
+ .ip_modal_big .ip_modal_body input[type="datetime-local"]:focus,
1327
+ .ip_modal_small .ip_modal_body input[type="date"]:focus,
1328
+ .ip_modal_big .ip_modal_body input[type="date"]:focus,
1329
+ .ip_modal_small .ip_modal_body input[type="month"]:focus,
1330
+ .ip_modal_big .ip_modal_body input[type="month"]:focus,
1331
+ .ip_modal_small .ip_modal_body input[type="time"]:focus,
1332
+ .ip_modal_big .ip_modal_body input[type="time"]:focus,
1333
+ .ip_modal_small .ip_modal_body input[type="week"]:focus,
1334
+ .ip_modal_big .ip_modal_body input[type="week"]:focus,
1335
+ .ip_modal_small .ip_modal_body input[type="number"]:focus,
1336
+ .ip_modal_big .ip_modal_body input[type="number"]:focus,
1337
+ .ip_modal_small .ip_modal_body input[type="email"]:focus,
1338
+ .ip_modal_big .ip_modal_body input[type="email"]:focus,
1339
+ .ip_modal_small .ip_modal_body input[type="url"]:focus,
1340
+ .ip_modal_big .ip_modal_body input[type="url"]:focus,
1341
+ .ip_modal_small .ip_modal_body input[type="search"]:focus,
1342
+ .ip_modal_big .ip_modal_body input[type="search"]:focus,
1343
+ .ip_modal_small .ip_modal_body input[type="tel"]:focus,
1344
+ .ip_modal_big .ip_modal_body input[type="tel"]:focus,
1345
+ .ip_modal_small .ip_modal_body input[type="color"]:focus,
1346
+ .ip_modal_big .ip_modal_body input[type="color"]:focus,
1347
+ .ip_modal_small .ip_modal_body .uneditable-input:focus,
1348
+ .ip_modal_big .ip_modal_body .uneditable-input:focus {
1329
1349
  border-color: #7191c4;
1330
1350
  outline: 0;
1331
1351
  outline: thin dotted \9;
@@ -1335,10 +1355,10 @@ a.ip_button:active {
1335
1355
  -moz-box-shadow: 0 0 8px rgba(109, 131, 166, 0.6);
1336
1356
  box-shadow: 0 0 8px rgba(109, 131, 166, 0.6);
1337
1357
  }
1338
- .ip_modal_small .modal_body input[type="radio"],
1339
- .ip_modal_big .modal_body input[type="radio"],
1340
- .ip_modal_small .modal_body input[type="checkbox"],
1341
- .ip_modal_big .modal_body input[type="checkbox"] {
1358
+ .ip_modal_small .ip_modal_body input[type="radio"],
1359
+ .ip_modal_big .ip_modal_body input[type="radio"],
1360
+ .ip_modal_small .ip_modal_body input[type="checkbox"],
1361
+ .ip_modal_big .ip_modal_body input[type="checkbox"] {
1342
1362
  margin: 4px 0 0;
1343
1363
  *margin-top: 0;
1344
1364
  /* IE7 */
@@ -1348,26 +1368,26 @@ a.ip_button:active {
1348
1368
 
1349
1369
  line-height: normal;
1350
1370
  }
1351
- .ip_modal_small .modal_body input[type="file"],
1352
- .ip_modal_big .modal_body input[type="file"],
1353
- .ip_modal_small .modal_body input[type="image"],
1354
- .ip_modal_big .modal_body input[type="image"],
1355
- .ip_modal_small .modal_body input[type="submit"],
1356
- .ip_modal_big .modal_body input[type="submit"],
1357
- .ip_modal_small .modal_body input[type="reset"],
1358
- .ip_modal_big .modal_body input[type="reset"],
1359
- .ip_modal_small .modal_body input[type="button"],
1360
- .ip_modal_big .modal_body input[type="button"],
1361
- .ip_modal_small .modal_body input[type="radio"],
1362
- .ip_modal_big .modal_body input[type="radio"],
1363
- .ip_modal_small .modal_body input[type="checkbox"],
1364
- .ip_modal_big .modal_body input[type="checkbox"] {
1371
+ .ip_modal_small .ip_modal_body input[type="file"],
1372
+ .ip_modal_big .ip_modal_body input[type="file"],
1373
+ .ip_modal_small .ip_modal_body input[type="image"],
1374
+ .ip_modal_big .ip_modal_body input[type="image"],
1375
+ .ip_modal_small .ip_modal_body input[type="submit"],
1376
+ .ip_modal_big .ip_modal_body input[type="submit"],
1377
+ .ip_modal_small .ip_modal_body input[type="reset"],
1378
+ .ip_modal_big .ip_modal_body input[type="reset"],
1379
+ .ip_modal_small .ip_modal_body input[type="button"],
1380
+ .ip_modal_big .ip_modal_body input[type="button"],
1381
+ .ip_modal_small .ip_modal_body input[type="radio"],
1382
+ .ip_modal_big .ip_modal_body input[type="radio"],
1383
+ .ip_modal_small .ip_modal_body input[type="checkbox"],
1384
+ .ip_modal_big .ip_modal_body input[type="checkbox"] {
1365
1385
  width: auto;
1366
1386
  }
1367
- .ip_modal_small .modal_body select,
1368
- .ip_modal_big .modal_body select,
1369
- .ip_modal_small .modal_body input[type="file"],
1370
- .ip_modal_big .modal_body input[type="file"] {
1387
+ .ip_modal_small .ip_modal_body select,
1388
+ .ip_modal_big .ip_modal_body select,
1389
+ .ip_modal_small .ip_modal_body input[type="file"],
1390
+ .ip_modal_big .ip_modal_body input[type="file"] {
1371
1391
  height: 30px;
1372
1392
  /* In IE7, the height of the select element cannot be changed by height, only font-size */
1373
1393
 
@@ -1376,34 +1396,34 @@ a.ip_button:active {
1376
1396
 
1377
1397
  line-height: 30px;
1378
1398
  }
1379
- .ip_modal_small .modal_body select,
1380
- .ip_modal_big .modal_body select {
1399
+ .ip_modal_small .ip_modal_body select,
1400
+ .ip_modal_big .ip_modal_body select {
1381
1401
  width: 220px;
1382
1402
  border: 1px solid #cccccc;
1383
1403
  background-color: #ffffff;
1384
1404
  }
1385
- .ip_modal_small .modal_body select[multiple],
1386
- .ip_modal_big .modal_body select[multiple],
1387
- .ip_modal_small .modal_body select[size],
1388
- .ip_modal_big .modal_body select[size] {
1405
+ .ip_modal_small .ip_modal_body select[multiple],
1406
+ .ip_modal_big .ip_modal_body select[multiple],
1407
+ .ip_modal_small .ip_modal_body select[size],
1408
+ .ip_modal_big .ip_modal_body select[size] {
1389
1409
  height: auto;
1390
1410
  }
1391
- .ip_modal_small .modal_body select:focus,
1392
- .ip_modal_big .modal_body select:focus,
1393
- .ip_modal_small .modal_body input[type="file"]:focus,
1394
- .ip_modal_big .modal_body input[type="file"]:focus,
1395
- .ip_modal_small .modal_body input[type="radio"]:focus,
1396
- .ip_modal_big .modal_body input[type="radio"]:focus,
1397
- .ip_modal_small .modal_body input[type="checkbox"]:focus,
1398
- .ip_modal_big .modal_body input[type="checkbox"]:focus {
1411
+ .ip_modal_small .ip_modal_body select:focus,
1412
+ .ip_modal_big .ip_modal_body select:focus,
1413
+ .ip_modal_small .ip_modal_body input[type="file"]:focus,
1414
+ .ip_modal_big .ip_modal_body input[type="file"]:focus,
1415
+ .ip_modal_small .ip_modal_body input[type="radio"]:focus,
1416
+ .ip_modal_big .ip_modal_body input[type="radio"]:focus,
1417
+ .ip_modal_small .ip_modal_body input[type="checkbox"]:focus,
1418
+ .ip_modal_big .ip_modal_body input[type="checkbox"]:focus {
1399
1419
  outline: thin dotted #333;
1400
1420
  outline: 5px auto -webkit-focus-ring-color;
1401
1421
  outline-offset: -2px;
1402
1422
  }
1403
- .ip_modal_small .modal_body .uneditable-input,
1404
- .ip_modal_big .modal_body .uneditable-input,
1405
- .ip_modal_small .modal_body .uneditable-textarea,
1406
- .ip_modal_big .modal_body .uneditable-textarea {
1423
+ .ip_modal_small .ip_modal_body .uneditable-input,
1424
+ .ip_modal_big .ip_modal_body .uneditable-input,
1425
+ .ip_modal_small .ip_modal_body .uneditable-textarea,
1426
+ .ip_modal_big .ip_modal_body .uneditable-textarea {
1407
1427
  color: #999999;
1408
1428
  background-color: #fcfcfc;
1409
1429
  border-color: #cccccc;
@@ -1412,67 +1432,67 @@ a.ip_button:active {
1412
1432
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
1413
1433
  cursor: not-allowed;
1414
1434
  }
1415
- .ip_modal_small .modal_body .uneditable-input,
1416
- .ip_modal_big .modal_body .uneditable-input {
1435
+ .ip_modal_small .ip_modal_body .uneditable-input,
1436
+ .ip_modal_big .ip_modal_body .uneditable-input {
1417
1437
  overflow: hidden;
1418
1438
  white-space: nowrap;
1419
1439
  }
1420
- .ip_modal_small .modal_body .uneditable-textarea,
1421
- .ip_modal_big .modal_body .uneditable-textarea {
1440
+ .ip_modal_small .ip_modal_body .uneditable-textarea,
1441
+ .ip_modal_big .ip_modal_body .uneditable-textarea {
1422
1442
  width: auto;
1423
1443
  height: auto;
1424
1444
  }
1425
- .ip_modal_small .modal_body input:-moz-placeholder,
1426
- .ip_modal_big .modal_body input:-moz-placeholder,
1427
- .ip_modal_small .modal_body textarea:-moz-placeholder,
1428
- .ip_modal_big .modal_body textarea:-moz-placeholder {
1445
+ .ip_modal_small .ip_modal_body input:-moz-placeholder,
1446
+ .ip_modal_big .ip_modal_body input:-moz-placeholder,
1447
+ .ip_modal_small .ip_modal_body textarea:-moz-placeholder,
1448
+ .ip_modal_big .ip_modal_body textarea:-moz-placeholder {
1429
1449
  color: #999999;
1430
1450
  }
1431
- .ip_modal_small .modal_body input:-ms-input-placeholder,
1432
- .ip_modal_big .modal_body input:-ms-input-placeholder,
1433
- .ip_modal_small .modal_body textarea:-ms-input-placeholder,
1434
- .ip_modal_big .modal_body textarea:-ms-input-placeholder {
1451
+ .ip_modal_small .ip_modal_body input:-ms-input-placeholder,
1452
+ .ip_modal_big .ip_modal_body input:-ms-input-placeholder,
1453
+ .ip_modal_small .ip_modal_body textarea:-ms-input-placeholder,
1454
+ .ip_modal_big .ip_modal_body textarea:-ms-input-placeholder {
1435
1455
  color: #999999;
1436
1456
  }
1437
- .ip_modal_small .modal_body input::-webkit-input-placeholder,
1438
- .ip_modal_big .modal_body input::-webkit-input-placeholder,
1439
- .ip_modal_small .modal_body textarea::-webkit-input-placeholder,
1440
- .ip_modal_big .modal_body textarea::-webkit-input-placeholder {
1457
+ .ip_modal_small .ip_modal_body input::-webkit-input-placeholder,
1458
+ .ip_modal_big .ip_modal_body input::-webkit-input-placeholder,
1459
+ .ip_modal_small .ip_modal_body textarea::-webkit-input-placeholder,
1460
+ .ip_modal_big .ip_modal_body textarea::-webkit-input-placeholder {
1441
1461
  color: #999999;
1442
1462
  }
1443
- .ip_modal_small .modal_body .radio,
1444
- .ip_modal_big .modal_body .radio,
1445
- .ip_modal_small .modal_body .checkbox,
1446
- .ip_modal_big .modal_body .checkbox {
1463
+ .ip_modal_small .ip_modal_body .radio,
1464
+ .ip_modal_big .ip_modal_body .radio,
1465
+ .ip_modal_small .ip_modal_body .checkbox,
1466
+ .ip_modal_big .ip_modal_body .checkbox {
1447
1467
  min-height: 20px;
1448
1468
  padding-left: 20px;
1449
1469
  }
1450
- .ip_modal_small .modal_body .radio input[type="radio"],
1451
- .ip_modal_big .modal_body .radio input[type="radio"],
1452
- .ip_modal_small .modal_body .checkbox input[type="checkbox"],
1453
- .ip_modal_big .modal_body .checkbox input[type="checkbox"] {
1470
+ .ip_modal_small .ip_modal_body .radio input[type="radio"],
1471
+ .ip_modal_big .ip_modal_body .radio input[type="radio"],
1472
+ .ip_modal_small .ip_modal_body .checkbox input[type="checkbox"],
1473
+ .ip_modal_big .ip_modal_body .checkbox input[type="checkbox"] {
1454
1474
  float: left;
1455
1475
  margin-left: -20px;
1456
1476
  }
1457
- .ip_modal_small .modal_body .controls > .radio:first-child,
1458
- .ip_modal_big .modal_body .controls > .radio:first-child,
1459
- .ip_modal_small .modal_body .controls > .checkbox:first-child,
1460
- .ip_modal_big .modal_body .controls > .checkbox:first-child {
1477
+ .ip_modal_small .ip_modal_body .controls > .radio:first-child,
1478
+ .ip_modal_big .ip_modal_body .controls > .radio:first-child,
1479
+ .ip_modal_small .ip_modal_body .controls > .checkbox:first-child,
1480
+ .ip_modal_big .ip_modal_body .controls > .checkbox:first-child {
1461
1481
  padding-top: 5px;
1462
1482
  }
1463
- .ip_modal_small .modal_body .radio.inline,
1464
- .ip_modal_big .modal_body .radio.inline,
1465
- .ip_modal_small .modal_body .checkbox.inline,
1466
- .ip_modal_big .modal_body .checkbox.inline {
1483
+ .ip_modal_small .ip_modal_body .radio.inline,
1484
+ .ip_modal_big .ip_modal_body .radio.inline,
1485
+ .ip_modal_small .ip_modal_body .checkbox.inline,
1486
+ .ip_modal_big .ip_modal_body .checkbox.inline {
1467
1487
  display: inline-block;
1468
1488
  padding-top: 5px;
1469
1489
  margin-bottom: 0;
1470
1490
  vertical-align: middle;
1471
1491
  }
1472
- .ip_modal_small .modal_body .radio.inline + .radio.inline,
1473
- .ip_modal_big .modal_body .radio.inline + .radio.inline,
1474
- .ip_modal_small .modal_body .checkbox.inline + .checkbox.inline,
1475
- .ip_modal_big .modal_body .checkbox.inline + .checkbox.inline {
1492
+ .ip_modal_small .ip_modal_body .radio.inline + .radio.inline,
1493
+ .ip_modal_big .ip_modal_body .radio.inline + .radio.inline,
1494
+ .ip_modal_small .ip_modal_body .checkbox.inline + .checkbox.inline,
1495
+ .ip_modal_big .ip_modal_body .checkbox.inline + .checkbox.inline {
1476
1496
  margin-left: 10px;
1477
1497
  }
1478
1498
  .ip_modal_small {
@@ -1503,7 +1523,7 @@ a.ip_button:active {
1503
1523
  -o-transition: top 0.45s ease-in;
1504
1524
  transition: top 0.45s ease-in;
1505
1525
  }
1506
- .ip_modal_small.show {
1526
+ .ip_modal_small.ip_show {
1507
1527
  top: 45%;
1508
1528
  z-index: 333333;
1509
1529
  }
@@ -1511,58 +1531,60 @@ a.ip_button:active {
1511
1531
  float: right;
1512
1532
  margin: 0 0 0 10px;
1513
1533
  }
1514
- .ip_modal_small .modal_header {
1534
+ .ip_modal_small .ip_modal_header {
1515
1535
  padding: 9px 10px 8px 10px;
1516
1536
  }
1517
- .ip_modal_small .modal_header h3 {
1537
+ .ip_modal_small .ip_modal_header h3 {
1518
1538
  margin: 0;
1519
1539
  padding: 25px 15px 5px 100px;
1520
1540
  line-height: 26px;
1521
1541
  color: #555;
1522
1542
  font-size: 26px;
1523
1543
  }
1524
- .ip_modal_small .modal_header p {
1544
+ .ip_modal_small .ip_modal_header p {
1525
1545
  margin: 0;
1526
1546
  padding: 0px 15px 0 100px;
1527
1547
  color: #444;
1528
1548
  font-size: 15px;
1529
1549
  }
1530
- .ip_modal_small .modal_header i.ip_icon {
1550
+ .ip_modal_small .ip_modal_header i.ip_icon {
1531
1551
  float: left;
1532
1552
  padding: 40px 10px 10px 20px;
1533
1553
  font-size: 30px;
1534
1554
  }
1535
- .ip_modal_small .modal_body {
1555
+ .ip_modal_small .ip_modal_body {
1536
1556
  overflow-y: auto;
1537
1557
  max-height: 400px;
1538
1558
  padding: 15px 15px 0 15px;
1539
1559
  -webkit-overflow-scrolling: touch;
1540
1560
  }
1541
- .ip_modal_small .modal_body form input .ip_modal_small form {
1561
+ .ip_modal_small .ip_modal_body form input .ip_modal_small form {
1542
1562
  margin-bottom: 0;
1543
1563
  }
1544
1564
  .ip_modal_small .form-horizontal {
1545
1565
  padding: 15px 0 ;
1546
1566
  }
1547
- .ip_modal_small input[type="text"],
1548
- .ip_modal_small input[type="password"],
1549
- .ip_modal_small select,
1550
- .ip_modal_small textarea {
1567
+ .ip_modal_small .modal_body input[type="text"],
1568
+ .ip_modal_small .modal_body input[type="password"],
1569
+ .ip_modal_small .modal_body textarea {
1551
1570
  width: 97%;
1552
1571
  }
1553
- .ip_modal_small .modal_footer {
1572
+ .ip_modal_small .modal_body select {
1573
+ width: 100%;
1574
+ }
1575
+ .ip_modal_small .ip_modal_footer {
1554
1576
  padding: 14px 15px 15px;
1555
1577
  margin-bottom: 0;
1556
1578
  text-align: right;
1557
1579
  *zoom: 1;
1558
1580
  }
1559
- .ip_modal_small .modal_footer:before,
1560
- .ip_modal_small .modal_footer:after {
1581
+ .ip_modal_small .ip_modal_footer:before,
1582
+ .ip_modal_small .ip_modal_footer:after {
1561
1583
  display: table;
1562
1584
  content: "";
1563
1585
  line-height: 0;
1564
1586
  }
1565
- .ip_modal_small .modal_footer:after {
1587
+ .ip_modal_small .ip_modal_footer:after {
1566
1588
  clear: both;
1567
1589
  }
1568
1590
  .ip_modal_big {
@@ -1587,15 +1609,15 @@ a.ip_button:active {
1587
1609
  -o-transition: top 0.25s ease-in;
1588
1610
  transition: top 0.25s ease-in;
1589
1611
  }
1590
- .ip_modal_big.show {
1612
+ .ip_modal_big.ip_show {
1591
1613
  top: 50%;
1592
1614
  z-index: 333333;
1593
1615
  }
1594
- .ip_modal_big .modal_footer .ip_button {
1616
+ .ip_modal_big .ip_modal_footer .ip_button {
1595
1617
  float: right;
1596
1618
  margin: 0 10px 0 0;
1597
1619
  }
1598
- .ip_modal_big .modal_header {
1620
+ .ip_modal_big .ip_modal_header {
1599
1621
  padding: 9px 10px 8px 10px;
1600
1622
  border-bottom: 1px solid #ddd;
1601
1623
  z-index: 10;
@@ -1615,21 +1637,21 @@ a.ip_button:active {
1615
1637
  -moz-border-radius: 6px 6px 0 0;
1616
1638
  border-radius: 6px 6px 0 0;
1617
1639
  }
1618
- .ip_modal_big .modal_header h3 {
1640
+ .ip_modal_big .ip_modal_header h3 {
1619
1641
  color: #444;
1620
1642
  margin: 0;
1621
1643
  line-height: 30px;
1622
1644
  }
1623
- .ip_modal_big .modal_header h3 i.ip_icon {
1645
+ .ip_modal_big .ip_modal_header h3 i.ip_icon {
1624
1646
  padding: 0 8px 5px 0;
1625
1647
  }
1626
- .ip_modal_big .modal_header p {
1648
+ .ip_modal_big .ip_modal_header p {
1627
1649
  margin: -2px 0;
1628
1650
  padding: 0 0 0 36px;
1629
1651
  color: #666;
1630
1652
  font-size: 13px;
1631
1653
  }
1632
- .ip_modal_big .modal_body {
1654
+ .ip_modal_big .ip_modal_body {
1633
1655
  overflow-y: auto;
1634
1656
  padding: 15px;
1635
1657
  background: #fff;
@@ -1650,7 +1672,7 @@ a.ip_button:active {
1650
1672
  .ip_modal_big textarea {
1651
1673
  width: 95%;
1652
1674
  }
1653
- .ip_modal_big .modal_footer {
1675
+ .ip_modal_big .ip_modal_footer {
1654
1676
  position: absolute;
1655
1677
  bottom: 0;
1656
1678
  left: 0;
@@ -1669,29 +1691,29 @@ a.ip_button:active {
1669
1691
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffdfdfdf', GradientType=0);
1670
1692
  *zoom: 1;
1671
1693
  }
1672
- .ip_modal_big .modal_footer:before,
1673
- .ip_modal_big .modal_footer:after {
1694
+ .ip_modal_big .ip_modal_footer:before,
1695
+ .ip_modal_big .ip_modal_footer:after {
1674
1696
  display: table;
1675
1697
  content: "";
1676
1698
  line-height: 0;
1677
1699
  }
1678
- .ip_modal_big .modal_footer:after {
1700
+ .ip_modal_big .ip_modal_footer:after {
1679
1701
  clear: both;
1680
1702
  }
1681
- .ip_modal_big .modal_header_tab_container {
1703
+ .ip_modal_big .ip_modal_header_tab_container {
1682
1704
  margin: 0 -10px -8px -10px;
1683
1705
  *zoom: 1;
1684
1706
  }
1685
- .ip_modal_big .modal_header_tab_container:before,
1686
- .ip_modal_big .modal_header_tab_container:after {
1707
+ .ip_modal_big .ip_modal_header_tab_container:before,
1708
+ .ip_modal_big .ip_modal_header_tab_container:after {
1687
1709
  display: table;
1688
1710
  content: "";
1689
1711
  line-height: 0;
1690
1712
  }
1691
- .ip_modal_big .modal_header_tab_container:after {
1713
+ .ip_modal_big .ip_modal_header_tab_container:after {
1692
1714
  clear: both;
1693
1715
  }
1694
- .ip_modal_big .modal_header_tab_container .modal_header_tabs {
1716
+ .ip_modal_big .ip_modal_header_tab_container .ip_modal_header_tabs {
1695
1717
  list-style-type: none;
1696
1718
  display: block;
1697
1719
  overflow: hidden;
@@ -1707,16 +1729,16 @@ a.ip_button:active {
1707
1729
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffdddddd', GradientType=0);
1708
1730
  *zoom: 1;
1709
1731
  }
1710
- .ip_modal_big .modal_header_tab_container .modal_header_tabs:before,
1711
- .ip_modal_big .modal_header_tab_container .modal_header_tabs:after {
1732
+ .ip_modal_big .ip_modal_header_tab_container .ip_modal_header_tabs:before,
1733
+ .ip_modal_big .ip_modal_header_tab_container .ip_modal_header_tabs:after {
1712
1734
  display: table;
1713
1735
  content: "";
1714
1736
  line-height: 0;
1715
1737
  }
1716
- .ip_modal_big .modal_header_tab_container .modal_header_tabs:after {
1738
+ .ip_modal_big .ip_modal_header_tab_container .ip_modal_header_tabs:after {
1717
1739
  clear: both;
1718
1740
  }
1719
- .ip_modal_big .modal_header_tab_container .modal_header_tabs li {
1741
+ .ip_modal_big .ip_modal_header_tab_container .ip_modal_header_tabs li {
1720
1742
  display: block;
1721
1743
  float: left;
1722
1744
  margin: 0 10px 0 0;
@@ -1742,8 +1764,8 @@ a.ip_button:active {
1742
1764
  background-repeat: no-repeat;
1743
1765
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffcccccc', GradientType=0);
1744
1766
  }
1745
- .ip_modal_big .modal_header_tab_container .modal_header_tabs li.active,
1746
- .ip_modal_big .modal_header_tab_container .modal_header_tabs li:hover {
1767
+ .ip_modal_big .ip_modal_header_tab_container .ip_modal_header_tabs li.active,
1768
+ .ip_modal_big .ip_modal_header_tab_container .ip_modal_header_tabs li:hover {
1747
1769
  cursor: pointer;
1748
1770
  color: #444;
1749
1771
  background-color: #ffffff;
@@ -1755,23 +1777,23 @@ a.ip_button:active {
1755
1777
  background-repeat: no-repeat;
1756
1778
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffffffff', GradientType=0);
1757
1779
  }
1758
- .ip_modal_big .modal_header_tab_container .modal_header_tabs li.right {
1780
+ .ip_modal_big .ip_modal_header_tab_container .ip_modal_header_tabs li.right {
1759
1781
  float: right;
1760
1782
  }
1761
- .ip_modal_big .modal_header_tab_container .modal_header_tabs li:first-child {
1783
+ .ip_modal_big .ip_modal_header_tab_container .ip_modal_header_tabs li:first-child {
1762
1784
  margin: 0 10px 0 10px;
1763
1785
  }
1764
- .ip_modal_big .modal_header_tab_container .modal_header_tabs li i.ip_editing_icon {
1786
+ .ip_modal_big .ip_modal_header_tab_container .ip_modal_header_tabs li i.ip_editing_icon {
1765
1787
  color: #888;
1766
1788
  vertical-align: bottom;
1767
1789
  font-size: 10px;
1768
1790
  padding: 0 8px 0 0;
1769
1791
  }
1770
- .ip_modal_big .modal_header_tab_container .modal_header_tabs li.active i.ip_editing_icon,
1771
- .ip_modal_big .modal_header_tab_container .modal_header_tabs li:hover i.ip_editing_icon {
1792
+ .ip_modal_big .ip_modal_header_tab_container .ip_modal_header_tabs li.active i.ip_editing_icon,
1793
+ .ip_modal_big .ip_modal_header_tab_container .ip_modal_header_tabs li:hover i.ip_editing_icon {
1772
1794
  color: #444;
1773
1795
  }
1774
- .ip_modal_big .modal_header_filter {
1796
+ .ip_modal_big .ip_modal_header_filter {
1775
1797
  margin: 0;
1776
1798
  padding: 12px 10px 10px 10px;
1777
1799
  background-color: #f8f8f8;
@@ -1784,16 +1806,16 @@ a.ip_button:active {
1784
1806
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffeeeeee', GradientType=0);
1785
1807
  *zoom: 1;
1786
1808
  }
1787
- .ip_modal_big .modal_header_filter:before,
1788
- .ip_modal_big .modal_header_filter:after {
1809
+ .ip_modal_big .ip_modal_header_filter:before,
1810
+ .ip_modal_big .ip_modal_header_filter:after {
1789
1811
  display: table;
1790
1812
  content: "";
1791
1813
  line-height: 0;
1792
1814
  }
1793
- .ip_modal_big .modal_header_filter:after {
1815
+ .ip_modal_big .ip_modal_header_filter:after {
1794
1816
  clear: both;
1795
1817
  }
1796
- .ip_modal_big .modal_header_filter label {
1818
+ .ip_modal_big .ip_modal_header_filter label {
1797
1819
  float: left;
1798
1820
  display: block;
1799
1821
  margin: 0 10px 0 0;
@@ -1801,15 +1823,15 @@ a.ip_button:active {
1801
1823
  vertical-align: middle;
1802
1824
  width: 200px;
1803
1825
  }
1804
- .ip_modal_big .modal_header_filter label input[type="radio"],
1805
- .ip_modal_big .modal_header_filter label input[type="checkbox"] {
1826
+ .ip_modal_big .ip_modal_header_filter label input[type="radio"],
1827
+ .ip_modal_big .ip_modal_header_filter label input[type="checkbox"] {
1806
1828
  float: left;
1807
1829
  display: block;
1808
1830
  margin: 6px 10px 0 3px;
1809
1831
  }
1810
- .ip_modal_big .modal_header_filter input[type="text"],
1811
- .ip_modal_big .modal_header_filter input[type="password"],
1812
- .ip_modal_big .modal_header_filter select {
1832
+ .ip_modal_big .ip_modal_header_filter input[type="text"],
1833
+ .ip_modal_big .ip_modal_header_filter input[type="password"],
1834
+ .ip_modal_big .ip_modal_header_filter select {
1813
1835
  float: left;
1814
1836
  display: block;
1815
1837
  margin: 0 10px 0 0;
@@ -1895,6 +1917,15 @@ a.ip_button:active {
1895
1917
  text-shadow: 0 1px 0 #fff;
1896
1918
  color: #555;
1897
1919
  }
1920
+ .ip_editable_workspace_dialog label.ip_disabled {
1921
+ color: #888;
1922
+ }
1923
+ .ip_editable_workspace_dialog input.ip_disabled,
1924
+ .ip_editable_workspace_dialog select.ip_disabled {
1925
+ color: #000;
1926
+ background: #e9e9e9;
1927
+ border: 1px solid #bbb;
1928
+ }
1898
1929
  @media (min-width: 768px) and (max-width: 979px) {
1899
1930
  .ip_modal_big {
1900
1931
  width: 90%;
@@ -1912,21 +1943,21 @@ a.ip_button:active {
1912
1943
  width: 90%;
1913
1944
  margin: -30% 0 0 -45%;
1914
1945
  }
1915
- .ip_modal_small.show {
1946
+ .ip_modal_small.ip_show {
1916
1947
  width: 90%;
1917
1948
  margin: -30% 0 0 -45%;
1918
1949
  }
1919
- .ip_modal_small .modal_header h3 {
1950
+ .ip_modal_small .ip_modal_header h3 {
1920
1951
  margin: 0;
1921
1952
  padding: 10px 15px 5px 45px;
1922
1953
  line-height: 18px;
1923
1954
  color: #555;
1924
1955
  font-size: 18px;
1925
1956
  }
1926
- .ip_modal_small .modal_header p {
1957
+ .ip_modal_small .ip_modal_header p {
1927
1958
  padding: 0 15px 0 45px;
1928
1959
  }
1929
- .ip_modal_small .modal_header i.ip_icon {
1960
+ .ip_modal_small .ip_modal_header i.ip_icon {
1930
1961
  float: left;
1931
1962
  padding: 15px 10px 10px 0px;
1932
1963
  font-size: 18px;
@@ -1935,8 +1966,8 @@ a.ip_button:active {
1935
1966
  width: 95%;
1936
1967
  height: 95%;
1937
1968
  }
1938
- .ip_modal_big .modal_header h2,
1939
- .ip_modal_big .modal_header h3 {
1969
+ .ip_modal_big .ip_modal_header h2,
1970
+ .ip_modal_big .ip_modal_header h3 {
1940
1971
  font-size: 20px;
1941
1972
  }
1942
1973
  }
@@ -2051,6 +2082,7 @@ a.ip_button:active {
2051
2082
  }
2052
2083
  .redactor_editor,
2053
2084
  .redactor_editor:focus {
2085
+ min-height: 35px;
2054
2086
  margin: 0!important;
2055
2087
  }
2056
2088
  /*
@@ -2310,9 +2342,16 @@ body .redactor_box_fullscreen {
2310
2342
  background: -ms-linear-gradient(top, #f1f1f1 0%, #e2e2e2 100%);
2311
2343
  background: linear-gradient(to bottom, #f1f1f1 0%, #e2e2e2 100%);
2312
2344
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f1f1f1', endColorstr='#e2e2e2', GradientType=0);
2313
- overflow: hidden !important;
2314
- height: 32px !important;
2315
- border-bottom: 1px solid #bbb;
2345
+ *zoom: 1;
2346
+ }
2347
+ .redactor_toolbar:before,
2348
+ .redactor_toolbar:after {
2349
+ display: table;
2350
+ content: "";
2351
+ line-height: 0;
2352
+ }
2353
+ .redactor_toolbar:after {
2354
+ clear: both;
2316
2355
  }
2317
2356
  body .redactor_air .redactor_toolbar {
2318
2357
  padding-right: 2px !important;
@@ -2320,7 +2359,7 @@ body .redactor_air .redactor_toolbar {
2320
2359
  .redactor_toolbar li {
2321
2360
  float: left !important;
2322
2361
  margin: 0 !important;
2323
- padding: 3px 1px;
2362
+ padding: 1px 1px;
2324
2363
  padding-right: 0;
2325
2364
  list-style: none !important;
2326
2365
  outline: none;
@@ -2331,7 +2370,7 @@ body .redactor_air .redactor_toolbar {
2331
2370
  }
2332
2371
  .redactor_toolbar li.redactor_separator {
2333
2372
  float: left;
2334
- height: 34px;
2373
+ height: 29px;
2335
2374
  border-left: 1px solid #d3d3d3;
2336
2375
  border-right: 1px solid #f1f1f1;
2337
2376
  padding: 0;
@@ -2408,6 +2447,21 @@ body .redactor_air .redactor_toolbar {
2408
2447
  background-repeat: repeat-x;
2409
2448
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff3f3f3', GradientType=0);
2410
2449
  }
2450
+ .redactor_toolbar li a.redactor_button_disabled,
2451
+ .redactor_toolbar li a.redactor_button_disabled:hover,
2452
+ .redactor_toolbar li a.redactor_button_disabled:active,
2453
+ .redactor_toolbar li a.redactor_button_disabled.redactor_act {
2454
+ border: 1px solid transparent;
2455
+ opacity: 0.3;
2456
+ background-color: #ebebeb;
2457
+ background-image: -moz-linear-gradient(top, #f1f1f1, #e2e2e2);
2458
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f1f1f1), to(#e2e2e2));
2459
+ background-image: -webkit-linear-gradient(top, #f1f1f1, #e2e2e2);
2460
+ background-image: -o-linear-gradient(top, #f1f1f1, #e2e2e2);
2461
+ background-image: linear-gradient(to bottom, #f1f1f1, #e2e2e2);
2462
+ background-repeat: repeat-x;
2463
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff1f1f1', endColorstr='#ffe2e2e2', GradientType=0);
2464
+ }
2411
2465
  /* -------- Button Icons -------- */
2412
2466
  .redactor_toolbar li a.redactor_btn_html:after {
2413
2467
  content: "\F04F";
@@ -2737,13 +2791,19 @@ body .redactor_air .redactor_toolbar {
2737
2791
  left: 0;
2738
2792
  width: 100%;
2739
2793
  height: 100%;
2740
- z-index: 50000;
2794
+ z-index: 500000;
2741
2795
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
2742
2796
  filter: alpha(opacity=50);
2743
2797
  opacity: 0.50;
2744
2798
  background-color: #333 !important;
2745
2799
  }
2746
2800
  #redactor_modal {
2801
+ position: fixed;
2802
+ top: 50%;
2803
+ left: 50%;
2804
+ z-index: 500001;
2805
+ padding: 0;
2806
+ border-radius: 3px;
2747
2807
  background: #f7f7f7;
2748
2808
  background: -moz-linear-gradient(top, #f7f7f7 0%, #e2e2e2 100%);
2749
2809
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7f7f7), color-stop(100%, #e2e2e2));
@@ -2751,102 +2811,97 @@ body .redactor_air .redactor_toolbar {
2751
2811
  background: -o-linear-gradient(top, #f7f7f7 0%, #e2e2e2 100%);
2752
2812
  background: -ms-linear-gradient(top, #f7f7f7 0%, #e2e2e2 100%);
2753
2813
  background: linear-gradient(to bottom, #f7f7f7 0%, #e2e2e2 100%);
2754
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7f7f7', endColorstr='#e2e2e2', GradientType=0);
2755
- text-shadow: 0 1px 0 #fff;
2756
- padding: 0;
2757
- position: fixed;
2758
- top: 50%;
2759
- left: 50%;
2760
2814
  box-shadow: 0px 5px 60px #000;
2761
- border-radius: 3px;
2762
- z-index: 50001;
2763
- font-family: Helvetica, Arial, Verdana, Tahoma, sans-serif;
2764
- font-size: 12px !important;
2765
2815
  color: #000;
2816
+ text-shadow: 0 1px 0 #fff;
2817
+ font-size: 12px !important;
2818
+ font-family: Helvetica, Arial, Verdana, Tahoma, sans-serif;
2819
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7f7f7', endColorstr='#e2e2e2', GradientType=0);
2766
2820
  }
2767
- #redactor_modal_header {
2821
+ #redactor_modal header {
2768
2822
  padding: 11px 30px 0 15px;
2769
- font-size: 12px;
2770
2823
  border-radius: 3px 3px 0 0;
2771
2824
  font-weight: bold;
2825
+ font-size: 12px;
2772
2826
  }
2773
- #redactor_modal_content {
2827
+ #redactor_modal section {
2774
2828
  padding: 20px 30px;
2775
2829
  }
2776
2830
  #redactor_modal_close {
2777
2831
  position: absolute;
2778
- right: 5px;
2779
2832
  top: 5px;
2780
- font-size: 20px;
2833
+ right: 5px;
2781
2834
  width: 20px;
2782
2835
  height: 20px;
2783
2836
  color: #777;
2837
+ font-size: 20px;
2784
2838
  cursor: pointer;
2785
2839
  }
2786
2840
  #redactor_modal_close:hover {
2787
2841
  color: #000;
2788
2842
  }
2789
2843
  #redactor_modal label {
2844
+ display: block !important;
2845
+ float: none !important;
2790
2846
  margin: 10px 0 3px 0 !important;
2791
2847
  padding: 0 !important;
2792
- float: none !important;
2793
- display: block !important;
2848
+ font-size: 12px !important;
2794
2849
  }
2795
2850
  #redactor_modal textarea {
2796
- margin-top: 4px;
2797
2851
  display: block;
2852
+ margin-top: 4px;
2798
2853
  }
2799
2854
  .redactor_input {
2800
2855
  width: 99%;
2801
2856
  font-size: 14px;
2802
2857
  }
2803
2858
  .redactor_modal_box {
2804
- height: 350px;
2805
2859
  overflow: auto;
2806
2860
  margin-bottom: 10px;
2861
+ height: 350px;
2807
2862
  }
2808
2863
  #redactor_image_box {
2809
- height: 270px;
2810
2864
  overflow: auto;
2811
2865
  margin-bottom: 10px;
2866
+ height: 270px;
2812
2867
  }
2813
2868
  #redactor_image_box_select {
2814
2869
  display: block;
2815
- width: 200px;
2816
2870
  margin-bottom: 15px;
2871
+ width: 200px;
2817
2872
  }
2818
2873
  #redactor_image_box img {
2819
2874
  margin-right: 10px;
2820
2875
  margin-bottom: 10px;
2821
- cursor: pointer;
2822
2876
  max-width: 100px;
2877
+ cursor: pointer;
2823
2878
  }
2824
2879
  #redactor_tabs {
2825
2880
  margin-bottom: 18px;
2826
2881
  }
2827
2882
  #redactor_tabs a {
2828
2883
  display: inline-block;
2829
- border: 1px solid #d2d2d2;
2884
+ margin-right: 5px;
2830
2885
  padding: 4px 14px;
2831
- font-size: 12px;
2886
+ border: 1px solid #d2d2d2;
2887
+ border-radius: 10px;
2832
2888
  background-color: #fff;
2833
- text-decoration: none;
2834
2889
  color: #000;
2890
+ text-decoration: none;
2891
+ font-size: 12px;
2835
2892
  line-height: 1;
2836
- border-radius: 10px;
2837
- margin-right: 5px;
2838
2893
  }
2839
2894
  #redactor_tabs a:hover,
2840
2895
  #redactor_tabs a.redactor_tabs_act {
2841
- background-color: #ddd;
2842
2896
  padding: 5px 15px;
2843
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) inset;
2844
2897
  border: none;
2845
- text-shadow: 0 1px 0 #eee;
2898
+ background-color: #ddd;
2899
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) inset;
2846
2900
  color: #777 !important;
2847
2901
  text-decoration: none !important;
2902
+ text-shadow: 0 1px 0 #eee;
2848
2903
  }
2849
- #redactor_modal_footer {
2904
+ #redactor_modal footer {
2850
2905
  padding: 9px 30px 20px 30px;
2851
2906
  border-radius: 0 0 3px 3px;
2852
2907
  text-align: right;
@@ -2862,17 +2917,17 @@ body .redactor_air .redactor_toolbar {
2862
2917
  #redactor_modal textarea {
2863
2918
  position: relative;
2864
2919
  z-index: 2;
2865
- font-family: Helvetica, Arial, Tahoma, sans-serif;
2866
- height: 23px;
2867
- border: 1px solid #ccc;
2868
2920
  margin: 0;
2869
2921
  padding: 1px 2px;
2922
+ height: 23px;
2923
+ border: 1px solid #ccc;
2924
+ border-radius: 1px;
2870
2925
  background-color: white;
2926
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
2871
2927
  color: #333;
2872
2928
  font-size: 13px;
2929
+ font-family: Helvetica, Arial, Tahoma, sans-serif;
2873
2930
  line-height: 1;
2874
- border-radius: 1px;
2875
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
2876
2931
  -webkit-transition: border 0.3s ease-in;
2877
2932
  -moz-transition: border 0.3s ease-in;
2878
2933
  -ms-transition: border 0.3s ease-in;