ngx-xtroedge-cms 1.2.0 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -215,9 +215,9 @@ var CMS_STYLES = `
215
215
  .lcms-btn-save { background: var(--lcms-primary, #00C853); color: white; }
216
216
  .lcms-btn-save:hover { background: var(--lcms-primary, #00C853); filter: brightness(1.15); }
217
217
  .lcms-btn-save:disabled { background: rgba(var(--lcms-primary-rgb, 0,200,83),0.2); color: rgba(255,255,255,0.35); cursor: not-allowed; filter: none; }
218
- .lcms-btn-publish { background: linear-gradient(135deg, #2196F3, #1976D2); color: white; }
219
- .lcms-btn-publish:hover { background: linear-gradient(135deg, #1976D2, #1565C0); }
220
- .lcms-btn-publish:disabled { background: rgba(var(--lcms-primary-rgb, 0,200,83),0.2); color: rgba(255,255,255,0.35); cursor: not-allowed; }
218
+ .lcms-btn-publish { background: linear-gradient(135deg, var(--lcms-primary, #00C853), var(--lcms-primary-dark, #2E7D32)); color: white; }
219
+ .lcms-btn-publish:hover { background: linear-gradient(135deg, var(--lcms-primary, #00C853), var(--lcms-primary-dark, #2E7D32)); filter: brightness(1.1); }
220
+ .lcms-btn-publish:disabled { background: rgba(var(--lcms-primary-rgb, 0,200,83),0.2); color: rgba(255,255,255,0.35); cursor: not-allowed; filter: none; }
221
221
  .lcms-btn-cancel { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(var(--lcms-primary-rgb, 0,200,83),0.25) !important; }
222
222
  .lcms-btn-cancel:hover { color: white; border-color: rgba(var(--lcms-primary-rgb, 0,200,83),0.5) !important; background: rgba(var(--lcms-primary-rgb, 0,200,83),0.08); }
223
223
  .lcms-btn-cancel:disabled { opacity: 0.3; cursor: not-allowed; }
@@ -276,7 +276,8 @@ var DEFAULT_EDITABLE_TAGS = [
276
276
  "small",
277
277
  "blockquote",
278
278
  "td",
279
- "th"
279
+ "th",
280
+ "div"
280
281
  ];
281
282
  var XtroedgeCMS = class _XtroedgeCMS {
282
283
  constructor(config) {