@syncfusion/ej2-pdfviewer 17.3.59-4568 → 17.3.60-4568

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/package.json CHANGED
@@ -70,5 +70,5 @@
70
70
  },
71
71
  "sideEffects": false,
72
72
  "typings": "index.d.ts",
73
- "version": "17.3.59-4568"
73
+ "version": "17.3.60-4568"
74
74
  }
@@ -1585,8 +1585,14 @@ var TextMarkupAnnotation = /** @class */ (function () {
1585
1585
  }
1586
1586
  annotCanvas.style.width = '';
1587
1587
  annotCanvas.style.height = '';
1588
- annotCanvas.width = this.pdfViewerBase.pageSize[pageNumber].width * this.pdfViewerBase.getZoomFactor();
1589
- annotCanvas.height = this.pdfViewerBase.pageSize[pageNumber].height * this.pdfViewerBase.getZoomFactor();
1588
+ if (this.pdfViewer.restrictZoomRequest) {
1589
+ annotCanvas.style.width = this.pdfViewerBase.pageSize[pageNumber].width * this.pdfViewerBase.getZoomFactor() + 'px';
1590
+ annotCanvas.style.height = this.pdfViewerBase.pageSize[pageNumber].height * this.pdfViewerBase.getZoomFactor() + 'px';
1591
+ }
1592
+ else {
1593
+ annotCanvas.width = this.pdfViewerBase.pageSize[pageNumber].width * this.pdfViewerBase.getZoomFactor();
1594
+ annotCanvas.height = this.pdfViewerBase.pageSize[pageNumber].height * this.pdfViewerBase.getZoomFactor();
1595
+ }
1590
1596
  this.renderTextMarkupAnnotations(null, pageNumber, annotCanvas, this.pdfViewerBase.getZoomFactor());
1591
1597
  }
1592
1598
  };
@@ -4738,6 +4738,9 @@ var PdfViewerBase = /** @class */ (function () {
4738
4738
  // tslint:disable-next-line
4739
4739
  PdfViewerBase.prototype.getStoredData = function (pageIndex) {
4740
4740
  var zoomFactor = this.retrieveCurrentZoomFactor();
4741
+ if (this.pdfViewer.restrictZoomRequest && !this.pdfViewer.tileRenderingSettings.enableTileRendering) {
4742
+ zoomFactor = 1;
4743
+ }
4741
4744
  // tslint:disable-next-line
4742
4745
  var storedData = this.getWindowSessionStorage(pageIndex, zoomFactor) ? this.getWindowSessionStorage(pageIndex, zoomFactor) : this.getPinchZoomPage(pageIndex);
4743
4746
  // tslint:disable-next-line
@@ -603,9 +603,16 @@ var Magnification = /** @class */ (function () {
603
603
  var pageNumber = parseInt(pageDivs[i].id.split('_pageCanvas_')[1]);
604
604
  var pageWidth = this.pdfViewerBase.pageSize[pageNumber].width;
605
605
  if ((viewPortWidth < pageWidth) && this.pdfViewer.tileRenderingSettings.enableTileRendering) {
606
- pageDivs[i].width = pageWidth * this.pdfViewerBase.getZoomFactor();
607
- // tslint:disable-next-line:max-line-length
608
- pageDivs[i].height = this.pdfViewerBase.pageSize[pageNumber].height * this.pdfViewerBase.getZoomFactor();
606
+ if (this.pdfViewer.restrictZoomRequest) {
607
+ pageDivs[i].style.width = pageWidth * this.pdfViewerBase.getZoomFactor() + 'px';
608
+ // eslint-disable-next-line max-len
609
+ pageDivs[i].style.height = this.pdfViewerBase.pageSize[pageNumber].height * this.pdfViewerBase.getZoomFactor() + 'px';
610
+ }
611
+ else {
612
+ pageDivs[i].width = pageWidth * this.pdfViewerBase.getZoomFactor();
613
+ // eslint-disable-next-line max-len
614
+ pageDivs[i].height = this.pdfViewerBase.pageSize[pageNumber].height * this.pdfViewerBase.getZoomFactor();
615
+ }
609
616
  }
610
617
  }
611
618
  if (this.pdfViewerBase.textLayer) {
@@ -708,11 +715,11 @@ var Magnification = /** @class */ (function () {
708
715
  var canvas = this.pdfViewerBase.getElement('_pageCanvas_' + i);
709
716
  var width = this.pdfViewerBase.pageSize[i].width * this.zoomFactor;
710
717
  var height = this.pdfViewerBase.pageSize[i].height * this.zoomFactor;
711
- if (canvas) {
718
+ if (canvas && !this.pdfViewer.restrictZoomRequest) {
712
719
  // tslint:disable-next-line:max-line-length
713
720
  this.pdfViewerBase.renderPageCanvas(this.pdfViewerBase.getElement('_pageDiv_' + i), width, height, i, 'none');
714
721
  }
715
- else {
722
+ else if (!this.pdfViewer.restrictZoomRequest) {
716
723
  this.pdfViewerBase.renderPageElement(i);
717
724
  }
718
725
  }
@@ -1871,6 +1871,13 @@ export interface PdfViewerModel extends ComponentModel{
1871
1871
  */
1872
1872
  enableHandwrittenSignature?: boolean;
1873
1873
 
1874
+ /**
1875
+ * restrict zoom request.
1876
+ *
1877
+ * @default false
1878
+ */
1879
+ restrictZoomRequest?: boolean;
1880
+
1874
1881
  /**
1875
1882
  * Specifies the open state of the hyperlink in the PDF document.
1876
1883
  * @default CurrentTab
@@ -1559,6 +1559,12 @@ export declare class PdfViewer extends Component<HTMLElement> implements INotify
1559
1559
  * @default true
1560
1560
  */
1561
1561
  enableHandwrittenSignature: boolean;
1562
+ /**
1563
+ * restrict zoom request.
1564
+ *
1565
+ * @default false
1566
+ */
1567
+ restrictZoomRequest: boolean;
1562
1568
  /**
1563
1569
  * Specifies the open state of the hyperlink in the PDF document.
1564
1570
  * @default CurrentTab
@@ -2619,6 +2619,9 @@ var PdfViewer = /** @class */ (function (_super) {
2619
2619
  __decorate([
2620
2620
  Property(true)
2621
2621
  ], PdfViewer.prototype, "enableHandwrittenSignature", void 0);
2622
+ __decorate([
2623
+ Property(false)
2624
+ ], PdfViewer.prototype, "restrictZoomRequest", void 0);
2622
2625
  __decorate([
2623
2626
  Property('CurrentTab')
2624
2627
  ], PdfViewer.prototype, "hyperlinkOpenState", void 0);
@@ -83,7 +83,7 @@
83
83
  --color-sf-border-pressed: #4d4d4d;
84
84
  --color-sf-border-focus: var(--color-sf-border);
85
85
  --color-sf-border-selected: #b3b3b3;
86
- --color-sf-border-dragged: var(--color-sf-primary);
86
+ --color-sf-border-dragged: #ebf3fc;
87
87
  --color-sf-border-disabled: var(--color-sf-border-light);
88
88
  --color-sf-border-warning: #da3b01;
89
89
  --color-sf-border-error: #c50f1f;
@@ -310,6 +310,42 @@
310
310
  --color-sf-utility-danger-lighter: #fecdc9;
311
311
  --color-sf-fg-white: #fff;
312
312
  --color-sf-shadow-color: #000;
313
+ --color-sf-shadow-color1: #fff;
314
+ --color-sf-link-button: var(--color-sf-primary);
315
+ --color-sf-link-button-hover: #115ea3;
316
+ --color-sf-link-button-pressed: #0c3b5e;
317
+ --color-sf-link-button-focus: #0f6cbd;
318
+ --color-sf-link-button-border-focus: #242424;
319
+ --color-sf-chip-bg-color: #f5f5f5;
320
+ --color-sf-chip-border-color: rgba(0, 0, 0, 0);
321
+ --color-sf-chip-bg-disabled: #f0f0f0;
322
+ --color-sf-chip-border-disabled: #fff;
323
+ --color-sf-secondary-outline-button-text-color-hover: #242424;
324
+ --color-sf-secondary-outline-button-text-color-pressed: #242424;
325
+ --color-sf-secondary-outline-button-text-color-selected: #242424;
326
+ --color-sf-secondary-outline-button-text-color-focus: #242424;
327
+ --color-sf-slider-shadow1: #fff;
328
+ --color-sf-slider-shadow2: #d1d1d1;
329
+ --color-sf-slider-disabled: #d1d1d1;
330
+ --color-sf-slider-border-color: rgba(255, 255, 255, 0);
331
+ --color-sf-slider-bg-disabled: #e0e0e0;
332
+ --color-sf-toggle-switch-border-disabled: #f0f0f0;
333
+ --color-sf-calendar-icon-color: #0f6ebd;
334
+ --color-sf-calendar-header-text-color-pressed: #0f548c;
335
+ --color-sf-calendar-today-bg-color: #0f63bd;
336
+ --color-sf-dialog-border: #fafafa;
337
+ --color-sf-badge-light-bg-color: #e6e6e6;
338
+ --color-sf-secondary-badge-border-color: #fff;
339
+ --color-sf-secondary-badge-bg-color: #fff;
340
+ --color-sf-secondary-badge-bg-color-focus: #fff;
341
+ --color-sf-skeleton-bg-color: #e6e6e6;
342
+ --color-sf-tab-selected-bg-color-disabled: #0f6ebd;
343
+ --color-sf-tab-selected-text-color-disabled: #bdbdbd;
344
+ --color-sf-ribbon-border-color: #00000000;
345
+ --color-sf-toolbar-icon-color: #0f6cbd;
346
+ --color-sf-contextual-text: #616161;
347
+ --color-sf-cell-selection-bg-color: #ebf3fc;
348
+ --color-sf-document-editor-border-color: #00000000;
313
349
  }
314
350
 
315
351
  .e-dark-mode {
@@ -326,8 +362,8 @@
326
362
  --color-sf-content-bg-color-pressed: var(--color-sf-content-bg-color-alt2);
327
363
  --color-sf-content-bg-color-focus: var(--color-sf-content-bg-color-hover);
328
364
  --color-sf-content-bg-color-selected: #2e2e2e;
329
- --color-sf-content-bg-color-dragged: #082338;
330
- --color-sf-content-bg-color-disabled: transparent;
365
+ --color-sf-content-bg-color-dragged: #08233b;
366
+ --color-sf-content-bg-color-disabled: #141414;
331
367
  --color-sf-flyout-bg-color: var(--color-sf-content-bg-color-alt1);
332
368
  --color-sf-flyout-bg-color-hover: #3d3d3d;
333
369
  --color-sf-flyout-bg-color-pressed: var(--color-sf-black);
@@ -370,7 +406,7 @@
370
406
  --color-sf-border-focus: var(--color-sf-border);
371
407
  --color-sf-border-selected: #6b6b6b;
372
408
  --color-sf-border-dragged: var(--color-sf-primary);
373
- --color-sf-border-disabled: #424242;
409
+ --color-sf-border-disabled: #08233b;
374
410
  --color-sf-border-warning: #bc4b09;
375
411
  --color-sf-border-error: #dc626d;
376
412
  --color-sf-border-success: #9fd89f;
@@ -616,6 +652,42 @@
616
652
  --color-sf-msg-warning-close-icon-color-alt1: var(--color-sf-msg-warning-close-icon-color-alt1);
617
653
  --color-sf-msg-warning-close-icon-color-alt2: #fff;
618
654
  --color-sf-shadow-color: #fff;
655
+ --color-sf-shadow-color1: #000;
656
+ --color-sf-link-button: var(--color-sf-primary);
657
+ --color-sf-link-button-hover: #0f6cbd;
658
+ --color-sf-link-button-pressed: #115ea3;
659
+ --color-sf-link-button-focus: #115ea3;
660
+ --color-sf-link-button-border-focus: #fff;
661
+ --color-sf-chip-bg-color: #141414;
662
+ --color-sf-chip-border-color: rgba(0, 0, 0, 0);
663
+ --color-sf-chip-bg-disabled: #141414;
664
+ --color-sf-chip-border-disabled: rgba(0, 0, 0, 0);
665
+ --color-sf-secondary-outline-button-text-color-hover: #fff;
666
+ --color-sf-secondary-outline-button-text-color-pressed: #fff;
667
+ --color-sf-secondary-outline-button-text-color-selected: #fff;
668
+ --color-sf-secondary-outline-button-text-color-focus: #fff;
669
+ --color-sf-slider-shadow1: #000;
670
+ --color-sf-slider-shadow2: #666666;
671
+ --color-sf-slider-disabled: #666666;
672
+ --color-sf-slider-border-color: rgba(255, 255, 255, 0);
673
+ --color-sf-slider-bg-disabled: #525252;
674
+ --color-sf-toggle-switch-border-disabled: #141414;
675
+ --color-sf-calendar-icon-color: #1153a3;
676
+ --color-sf-calendar-header-text-color-pressed: #62abf5;
677
+ --color-sf-calendar-today-bg-color: #1153a3;
678
+ --color-sf-dialog-border: #1f1f1f;
679
+ --color-sf-badge-light-bg-color: #333333;
680
+ --color-sf-secondary-badge-border-color: #292929;
681
+ --color-sf-secondary-badge-bg-color: #292929;
682
+ --color-sf-secondary-badge-bg-color-focus: #292929;
683
+ --color-sf-skeleton-bg-color: #575757;
684
+ --color-sf-tab-selected-bg-color-disabled: #115ea3;
685
+ --color-sf-tab-selected-text-color-disabled: #a3a3a3;
686
+ --color-sf-ribbon-border-color: #00000000;
687
+ --color-sf-toolbar-icon-color: #479ef5;
688
+ --color-sf-contextual-text: #fff;
689
+ --color-sf-cell-selection-bg-color: #08233b;
690
+ --color-sf-document-editor-border-color: #00000000;
619
691
  }
620
692
 
621
693
  .e-high-contrast {
@@ -632,8 +704,8 @@
632
704
  --color-sf-content-bg-color-pressed: var(--color-sf-content-bg-color-hover);
633
705
  --color-sf-content-bg-color-focus: var(--color-sf-content-bg-color-hover);
634
706
  --color-sf-content-bg-color-selected: var(--color-sf-content-bg-color-hover);
635
- --color-sf-content-bg-color-dragged: var(--color-sf-black);
636
- --color-sf-content-bg-color-disabled: #3ff23f;
707
+ --color-sf-content-bg-color-dragged: #fff;
708
+ --color-sf-content-bg-color-disabled: #000000;
637
709
  --color-sf-flyout-bg-color: var(--color-sf-black);
638
710
  --color-sf-flyout-bg-color-hover: var(--color-sf-content-bg-color-hover);
639
711
  --color-sf-flyout-bg-color-pressed: var(--color-sf-content-bg-color-hover);
@@ -651,7 +723,7 @@
651
723
  --color-sf-content-text-color-pressed: var(--color-sf-content-text-color-hover);
652
724
  --color-sf-content-text-color-focus: var(--color-sf-content-text-color-hover);
653
725
  --color-sf-content-text-color-selected: var(--color-sf-content-text-color-hover);
654
- --color-sf-content-text-color-dragged: var(--color-sf-content-text-color);
726
+ --color-sf-content-text-color-dragged: #000;
655
727
  --color-sf-content-text-color-disabled: var(--color-sf-content-bg-color-disabled);
656
728
  --color-sf-placeholder-text-color: var(--color-sf-content-text-color);
657
729
  --color-sf-flyout-text-color: var(--color-sf-content-text-color);
@@ -676,7 +748,7 @@
676
748
  --color-sf-border-focus: var(--color-sf-border-hover);
677
749
  --color-sf-border-selected: var(--color-sf-border-hover);
678
750
  --color-sf-border-dragged: var(--color-sf-border-light);
679
- --color-sf-border-disabled: #3ff23f;
751
+ --color-sf-border-disabled: #fff;
680
752
  --color-sf-border-warning: #f7630c;
681
753
  --color-sf-border-error: #c50f1f;
682
754
  --color-sf-border-success: #107c10;
@@ -922,6 +994,42 @@
922
994
  --color-sf-msg-warning-close-icon-color-alt1: var(--color-sf-msg-warning-border-color-alt11);
923
995
  --color-sf-msg-warning-close-icon-color-alt2: var(--color-sf-msg-warning-bg-color);
924
996
  --color-sf-shadow-color: #fff;
997
+ --color-sf-shadow-color1: #1aebff;
998
+ --color-sf-link-button: #fff000;
999
+ --color-sf-link-button-hover: #fff000;
1000
+ --color-sf-link-button-pressed: #fff000;
1001
+ --color-sf-link-button-focus: #fff000;
1002
+ --color-sf-link-button-border-focus: #1aebff;
1003
+ --color-sf-chip-bg-color: #000;
1004
+ --color-sf-chip-border-color: #fff;
1005
+ --color-sf-chip-bg-disabled: #000;
1006
+ --color-sf-chip-border-disabled: #3ff23f;
1007
+ --color-sf-secondary-outline-button-text-color-hover: #fff;
1008
+ --color-sf-secondary-outline-button-text-color-pressed: #fff;
1009
+ --color-sf-secondary-outline-button-text-color-selected: #fff;
1010
+ --color-sf-secondary-outline-button-text-color-focus: #fff;
1011
+ --color-sf-slider-shadow1: #000;
1012
+ --color-sf-slider-shadow2: #fff;
1013
+ --color-sf-slider-disabled: #3ff23f;
1014
+ --color-sf-slider-border-color: #fff;
1015
+ --color-sf-slider-bg-disabled: #000;
1016
+ --color-sf-toggle-switch-border-disabled: #3ff23f;
1017
+ --color-sf-calendar-icon-color: #000;
1018
+ --color-sf-calendar-header-text-color-pressed: #000;
1019
+ --color-sf-calendar-today-bg-color: #fff;
1020
+ --color-sf-dialog-border: #fff;
1021
+ --color-sf-badge-light-bg-color: #000;
1022
+ --color-sf-secondary-badge-border-color: #fff;
1023
+ --color-sf-secondary-badge-bg-color: #000;
1024
+ --color-sf-secondary-badge-bg-color-focus: #fff;
1025
+ --color-sf-skeleton-bg-color: #ffffff;
1026
+ --color-sf-tab-selected-bg-color-disabled: #000;
1027
+ --color-sf-tab-selected-text-color-disabled: #3ff23f;
1028
+ --color-sf-ribbon-border-color: #fff;
1029
+ --color-sf-toolbar-icon-color: #000;
1030
+ --color-sf-contextual-text: #000;
1031
+ --color-sf-cell-selection-bg-color: #1aecff1f;
1032
+ --color-sf-document-editor-border-color: #fff;
925
1033
  }
926
1034
 
927
1035
  /*! PdfViewer's default definitions and variables */
@@ -2256,7 +2364,7 @@ input.e-pv-input-password::-ms-reveal {
2256
2364
  .e-pv-sidebar-title-container {
2257
2365
  background: var(--color-sf-content-bg-color-alt1);
2258
2366
  border: 1px solid var(--color-sf-border-light);
2259
- border-width: 0 0 0 0;
2367
+ border-width: 0 1px 0 0;
2260
2368
  height: 40px;
2261
2369
  position: absolute;
2262
2370
  top: 0;
@@ -2674,7 +2782,7 @@ input.e-pv-input-password::-ms-reveal {
2674
2782
  bottom: 0;
2675
2783
  height: calc(100% - 38px);
2676
2784
  position: absolute;
2677
- width: 0;
2785
+ width: 1px;
2678
2786
  z-index: 104;
2679
2787
  }
2680
2788
 
@@ -2770,7 +2878,7 @@ input.e-pv-input-password::-ms-reveal {
2770
2878
  .e-pv-bookmark-view {
2771
2879
  height: 100%;
2772
2880
  overflow: auto;
2773
- padding-top: 15px;
2881
+ padding-top: 0;
2774
2882
  position: relative;
2775
2883
  }
2776
2884
 
@@ -3083,6 +3191,8 @@ div > .e-pv-bookmark-icon.e-pv-icon {
3083
3191
  border-bottom: 2px solid;
3084
3192
  margin-top: 0;
3085
3193
  padding-top: 5px;
3194
+ margin-top: -4px;
3195
+ padding-top: 0;
3086
3196
  vertical-align: initial;
3087
3197
  }
3088
3198
 
@@ -3096,6 +3206,7 @@ div > .e-pv-bookmark-icon.e-pv-icon {
3096
3206
  .e-pv-properties-color-container-style-prop .e-btn-icon.e-pv-annotation-thickness-icon.e-pv-icon {
3097
3207
  margin-top: 0;
3098
3208
  padding-top: 7px;
3209
+ padding-top: 0;
3099
3210
  vertical-align: initial;
3100
3211
  }
3101
3212
 
@@ -3107,7 +3218,6 @@ div > .e-pv-bookmark-icon.e-pv-icon {
3107
3218
  .e-pv-annotation-opacity-popup-container,
3108
3219
  .e-pv-annotation-thickness-popup-container {
3109
3220
  background-color: #fff;
3110
- box-shadow: 0 3px 8px 0 var(--color-sf-content-bg-color-hover);
3111
3221
  color: var(--color-sf-content-text-color);
3112
3222
  height: auto;
3113
3223
  min-height: 48px;
@@ -3441,6 +3551,16 @@ div > .e-pv-bookmark-icon.e-pv-icon {
3441
3551
  height: 24px;
3442
3552
  }
3443
3553
 
3554
+ .e-bigger .e-pv-scale-ratio-src-input-container,
3555
+ .e-bigger .e-pv-scale-ratio-src-unit-container,
3556
+ .e-bigger .e-pv-scale-ratio-dest-input-container,
3557
+ .e-bigger .e-pv-scale-ratio-dest-unit-container,
3558
+ .e-bigger .e-pv-depth-input-container,
3559
+ .e-bigger .e-pv-depth-unit-container {
3560
+ float: left;
3561
+ height: 40px;
3562
+ }
3563
+
3444
3564
  .e-pv-scale-ratio-src-input-container,
3445
3565
  .e-pv-scale-ratio-src-unit-container,
3446
3566
  .e-pv-scale-ratio-dest-input-container,
@@ -3457,18 +3577,24 @@ div > .e-pv-bookmark-icon.e-pv-icon {
3457
3577
  .e-pv-scale-ratio-src-unit.e-btn,
3458
3578
  .e-pv-scale-ratio-dest-unit.e-btn,
3459
3579
  .e-pv-depth-unit.e-btn {
3460
- padding: 6px 8px 4px;
3580
+ padding: 4px 8px 4px;
3581
+ height: 32px;
3461
3582
  }
3462
3583
 
3463
3584
  .e-pv-scale-unit-content {
3464
3585
  float: left;
3465
3586
  width: 33px;
3587
+ width: 8px;
3588
+ height: 20px;
3589
+ font-weight: normal;
3590
+ line-height: 20px;
3466
3591
  }
3467
3592
 
3468
3593
  .e-pv-scale-ratio-src-unit .e-caret,
3469
3594
  .e-pv-scale-ratio-dest-unit .e-caret,
3470
3595
  .e-pv-depth-unit .e-caret {
3471
3596
  margin-left: 96px;
3597
+ margin-top: 4px;
3472
3598
  }
3473
3599
 
3474
3600
  .e-pv-properties-line-opacity {
@@ -3537,6 +3663,12 @@ div > .e-pv-bookmark-icon.e-pv-icon {
3537
3663
  width: 180px;
3538
3664
  }
3539
3665
 
3666
+ .e-bigger .e-pv-scale-ratio-src-unit,
3667
+ .e-bigger .e-pv-scale-ratio-dest-unit,
3668
+ .e-bigger .e-pv-depth-unit {
3669
+ height: 40px !important; /* stylelint-disable-line declaration-no-important */
3670
+ }
3671
+
3540
3672
  .e-pv-line-styles-container {
3541
3673
  line-height: 0;
3542
3674
  padding: 17px;
@@ -3601,7 +3733,7 @@ div > .e-pv-bookmark-icon.e-pv-icon {
3601
3733
  .e-pv-annotation-shapes-container.e-btn.e-icon-btn,
3602
3734
  .e-pv-annotation-calibrate-container.e-btn.e-icon-btn,
3603
3735
  .e-pv-annotation-handwritten-container.e-btn.e-icon-btn {
3604
- padding: 0 4px 3px;
3736
+ padding: 1.5px 4px 3px;
3605
3737
  }
3606
3738
 
3607
3739
  .e-pv-stamp-template-container .e-menu-item.e-menu-caret-icon {
@@ -3687,14 +3819,6 @@ div > .e-pv-bookmark-icon.e-pv-icon {
3687
3819
  padding: 8px !important; /* stylelint-disable-line declaration-no-important */
3688
3820
  }
3689
3821
 
3690
- .e-pv-organize-toolbar-apperance .e-toolbar-items .e-toolbar-center {
3691
- margin-left: 710px !important; /* stylelint-disable-line declaration-no-important */
3692
- }
3693
-
3694
- .e-bigger .e-pv-organize-toolbar-apperance .e-toolbar-items .e-toolbar-center {
3695
- margin-left: 109px !important; /* stylelint-disable-line declaration-no-important */
3696
- }
3697
-
3698
3822
  .e-bigger .e-toolbar.e-pv-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left,
3699
3823
  .e-bigger .e-toolbar.e-pv-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-right {
3700
3824
  top: 0;
@@ -4406,7 +4530,7 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
4406
4530
  .e-pv-left-align-icon-div,
4407
4531
  .e-pv-center-align-icon-div,
4408
4532
  .e-pv-right-align-icon-div {
4409
- padding: 6px 8px;
4533
+ padding: 3px 10px;
4410
4534
  }
4411
4535
 
4412
4536
  .e-pv-bold-icon-div:hover,
@@ -4448,7 +4572,7 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
4448
4572
  .e-pv-formfield-strokethickness-icon {
4449
4573
  background: var(--color-sf-content-bg-color-alt1);
4450
4574
  border-radius: 2px;
4451
- height: 44px;
4575
+ height: 32px;
4452
4576
  margin-top: 8px;
4453
4577
  width: 54px;
4454
4578
  width: 59px;
@@ -4460,7 +4584,6 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
4460
4584
  }
4461
4585
 
4462
4586
  .e-pv-properties-font-family-container {
4463
- margin-right: 15px;
4464
4587
  width: 165px;
4465
4588
  }
4466
4589
 
@@ -4481,6 +4604,7 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
4481
4604
  .e-pv-center-align-icon-div,
4482
4605
  .e-pv-right-align-icon-div {
4483
4606
  padding-left: 6px;
4607
+ padding-left: 13px;
4484
4608
  }
4485
4609
 
4486
4610
  .e-pv-properties-font-color-container,
@@ -4508,6 +4632,7 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
4508
4632
  width: 49px;
4509
4633
  border-radius: 4px;
4510
4634
  width: 65px;
4635
+ padding: 1px 11px !important; /* stylelint-disable-line declaration-no-important */
4511
4636
  }
4512
4637
 
4513
4638
  .e-pv-properties-formfield-maxlength-text-label,
@@ -4677,21 +4802,28 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
4677
4802
 
4678
4803
  .e-pv-properties-form-field-font-style {
4679
4804
  background: var(--color-sf-content-bg-color-alt1);
4680
- border-radius: 2px;
4805
+ border-radius: 4px;
4681
4806
  display: -ms-flexbox;
4682
4807
  display: flex;
4683
- height: 36px;
4808
+ height: 32px;
4809
+ border: 1px solid var(--color-sf-border);
4684
4810
  -ms-flex-pack: space-evenly;
4685
4811
  justify-content: space-evenly;
4686
4812
  width: 154px;
4687
4813
  }
4688
4814
 
4815
+ .e-pv-properties-form-field-font-style .e-control:not(.e-pv-strikeout-icon-div),
4816
+ .e-pv-properties-form-field-font-align .e-control:not(.e-pv-right-align-icon-div) {
4817
+ border-right: 1px solid var(--color-sf-border);
4818
+ }
4819
+
4689
4820
  .e-pv-properties-form-field-font-align {
4690
4821
  background: var(--color-sf-content-bg-color-alt1);
4691
- border-radius: 2px;
4822
+ border-radius: 4px;
4692
4823
  display: -ms-flexbox;
4693
4824
  display: flex;
4694
- height: 36px;
4825
+ border: 1px solid var(--color-sf-border);
4826
+ height: 32px;
4695
4827
  -ms-flex-pack: space-evenly;
4696
4828
  justify-content: space-evenly;
4697
4829
  margin-right: 15px;