@innovastudio/contentbuilder 1.4.113 → 1.4.115

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@innovastudio/contentbuilder",
3
3
  "type": "module",
4
- "version": "1.4.113",
4
+ "version": "1.4.115",
5
5
  "description": "",
6
6
  "main": "public/contentbuilder/contentbuilder.esm.js",
7
7
  "files": [
@@ -3043,6 +3043,7 @@ button:focus-visible {
3043
3043
  .is-ui .is-tool.is-audio-tool svg,
3044
3044
  .is-ui .is-tool.is-iframe-tool svg {
3045
3045
  fill: #fff;
3046
+ color: #fff;
3046
3047
  }
3047
3048
  #_cbhtml .is-tool#divImageResizer,
3048
3049
  .is-ui .is-tool#divImageResizer {
@@ -4582,6 +4583,10 @@ button:focus-visible {
4582
4583
  background: transparent;
4583
4584
  padding: 5px;
4584
4585
  }
4586
+ #_cbhtml .is-tool.is-element-tool {
4587
+ border-radius: 3px;
4588
+ overflow: hidden;
4589
+ }
4585
4590
  #_cbhtml .is-tool.is-element-tool button {
4586
4591
  width: 25px;
4587
4592
  height: 25px;
@@ -4622,6 +4627,8 @@ button:focus-visible {
4622
4627
  left: auto;
4623
4628
  right: -40px;
4624
4629
  box-shadow: none;
4630
+ border-radius: 2px;
4631
+ overflow: hidden;
4625
4632
  }
4626
4633
  .is-tool.is-row-tool button {
4627
4634
  width: 25px;
@@ -4675,6 +4682,8 @@ button:focus-visible {
4675
4682
  margin-top: 0px;
4676
4683
  margin-left: -1px;
4677
4684
  box-shadow: none;
4685
+ border-radius: 2px;
4686
+ overflow: hidden;
4678
4687
  }
4679
4688
  .is-tool.is-col-tool button {
4680
4689
  width: 25px;
@@ -5511,3 +5520,68 @@ div[data-html] {
5511
5520
  .padding-0[data-module=text-builder] {
5512
5521
  padding: 0 2px 4px !important;
5513
5522
  }
5523
+
5524
+ /* IFRAME * New Control Panel */
5525
+ .is-content-view.desktop {
5526
+ width: 1366px;
5527
+ height: 853px;
5528
+ }
5529
+ .is-content-view.tablet-landscape {
5530
+ width: 1080px;
5531
+ height: 810px;
5532
+ }
5533
+ .is-content-view.tablet {
5534
+ width: 768px;
5535
+ height: 1024px;
5536
+ }
5537
+ .is-content-view.mobile {
5538
+ width: 390px;
5539
+ height: 844px;
5540
+ }
5541
+
5542
+ @media all and (min-width: 2030px) {
5543
+ .is-content-view.desktop {
5544
+ width: 1560px;
5545
+ height: 974px;
5546
+ }
5547
+
5548
+ .is-content-view.tablet-landscape {
5549
+ width: 1280px;
5550
+ height: 960px;
5551
+ }
5552
+ }
5553
+ @media all and (max-width: 1520px) {
5554
+ .is-content-view {
5555
+ transform: scale(0.95);
5556
+ }
5557
+ }
5558
+ @media all and (max-width: 1450px) {
5559
+ .is-content-view {
5560
+ transform: scale(0.9);
5561
+ }
5562
+ }
5563
+ @media all and (max-width: 1375px) {
5564
+ .is-content-view {
5565
+ transform: scale(0.85);
5566
+ }
5567
+ }
5568
+ @media all and (max-width: 1300px) {
5569
+ .is-content-view {
5570
+ transform: scale(0.8);
5571
+ }
5572
+ }
5573
+ @media all and (max-width: 1235px) {
5574
+ .is-content-view {
5575
+ transform: scale(0.75);
5576
+ }
5577
+ }
5578
+ @media all and (max-width: 1175px) {
5579
+ .is-content-view {
5580
+ transform: scale(0.7);
5581
+ }
5582
+ }
5583
+ @media all and (max-width: 1090px) {
5584
+ .is-content-view {
5585
+ transform: scale(0.65);
5586
+ }
5587
+ }