@syncfusion/ej2-angular-pdfviewer 21.2.10 → 22.1.34

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.
Files changed (62) hide show
  1. package/README.md +37 -146
  2. package/esm2020/src/pdfviewer/pdfviewer.component.mjs +3 -3
  3. package/fesm2015/syncfusion-ej2-angular-pdfviewer.mjs +2 -2
  4. package/fesm2015/syncfusion-ej2-angular-pdfviewer.mjs.map +1 -1
  5. package/fesm2020/syncfusion-ej2-angular-pdfviewer.mjs +2 -2
  6. package/fesm2020/syncfusion-ej2-angular-pdfviewer.mjs.map +1 -1
  7. package/license +10 -0
  8. package/package.json +17 -9
  9. package/schematics/utils/lib-details.ts +2 -2
  10. package/src/pdfviewer/pdfviewer.component.d.ts +1 -1
  11. package/styles/bootstrap-dark.css +54 -10
  12. package/styles/bootstrap.css +54 -10
  13. package/styles/bootstrap4.css +54 -10
  14. package/styles/bootstrap5-dark.css +66 -16
  15. package/styles/bootstrap5.css +66 -16
  16. package/styles/fabric-dark.css +54 -10
  17. package/styles/fabric.css +54 -10
  18. package/styles/fluent-dark.css +66 -10
  19. package/styles/fluent.css +66 -10
  20. package/styles/highcontrast-light.css +54 -10
  21. package/styles/highcontrast.css +54 -10
  22. package/styles/material-dark.css +54 -10
  23. package/styles/material.css +54 -10
  24. package/styles/material3-dark.css +3482 -0
  25. package/styles/material3-dark.scss +3 -0
  26. package/styles/material3.css +3538 -0
  27. package/styles/material3.scss +3 -0
  28. package/styles/pdfviewer/_material3-dark-definition.scss +1 -0
  29. package/styles/pdfviewer/_material3-definition.scss +538 -0
  30. package/styles/pdfviewer/_theme.scss +656 -86
  31. package/styles/pdfviewer/bootstrap-dark.css +54 -10
  32. package/styles/pdfviewer/bootstrap.css +54 -10
  33. package/styles/pdfviewer/bootstrap4.css +54 -10
  34. package/styles/pdfviewer/bootstrap5-dark.css +66 -16
  35. package/styles/pdfviewer/bootstrap5.css +66 -16
  36. package/styles/pdfviewer/fabric-dark.css +54 -10
  37. package/styles/pdfviewer/fabric.css +54 -10
  38. package/styles/pdfviewer/fluent-dark.css +66 -10
  39. package/styles/pdfviewer/fluent.css +66 -10
  40. package/styles/pdfviewer/highcontrast-light.css +54 -10
  41. package/styles/pdfviewer/highcontrast.css +54 -10
  42. package/styles/pdfviewer/icons/_material3-dark.scss +1 -0
  43. package/styles/pdfviewer/icons/_material3.scss +2 -2
  44. package/styles/pdfviewer/material-dark.css +54 -10
  45. package/styles/pdfviewer/material.css +54 -10
  46. package/styles/pdfviewer/material3-dark.css +3482 -0
  47. package/styles/pdfviewer/material3-dark.scss +5 -0
  48. package/styles/pdfviewer/material3.css +3538 -0
  49. package/styles/pdfviewer/material3.scss +5 -0
  50. package/styles/pdfviewer/tailwind-dark.css +57 -10
  51. package/styles/pdfviewer/tailwind.css +57 -10
  52. package/styles/tailwind-dark.css +57 -10
  53. package/styles/tailwind.css +57 -10
  54. package/schematics/collection.json +0 -10
  55. package/schematics/ng-add/index.d.ts +0 -3
  56. package/schematics/ng-add/index.js +0 -9
  57. package/schematics/ng-add/schema.d.ts +0 -13
  58. package/schematics/ng-add/schema.js +0 -2
  59. package/schematics/ng-add/schema.json +0 -34
  60. package/schematics/tsconfig.json +0 -25
  61. package/schematics/utils/lib-details.d.ts +0 -4
  62. package/schematics/utils/lib-details.js +0 -6
@@ -2,12 +2,19 @@
2
2
  /* stylelint-disable value-no-vendor-prefix */
3
3
  /* stylelint-disable property-no-vendor-prefix */
4
4
  .e-pv-viewer-container {
5
- background-color: $pv-background;
6
5
  border-color: $pv-control-border-color;
7
6
  height: $pv-viewer-container-height;
8
7
  overflow: $pv-control-overflow;
9
8
  position: $pv-control-position;
10
9
  touch-action: $pv-control-touch-action;
10
+ @if $skin-name == 'Material3' {
11
+ background: $pv-background;
12
+ border: $pv-toolbar-border;
13
+ }
14
+ @else
15
+ {
16
+ background-color: $pv-background;
17
+ }
11
18
  }
12
19
 
13
20
  .e-pdfviewer.e-pv-mobile-view .e-pv-viewer-container::-webkit-scrollbar {
@@ -19,6 +26,9 @@
19
26
  }
20
27
 
21
28
  .e-pv-page-container {
29
+ @if $skin-name == 'Material3' {
30
+ background: $pv-background;
31
+ }
22
32
  margin: $pv-page-container-margin;
23
33
  padding: $pv-page-container-padding;
24
34
  touch-action: $pv-page-container-touch-action;
@@ -89,7 +99,13 @@
89
99
  }
90
100
 
91
101
  .e-pv-mobilescroll-container {
92
- background-color: $pv-background;
102
+ @if $skin-name == 'Material3' {
103
+ background: $pv-background;
104
+ }
105
+ @else
106
+ {
107
+ background-color: $pv-background;
108
+ }
93
109
  border: $pv-thumbnail-hover-border;
94
110
  border-radius: 56px 0 0 56px;
95
111
  line-height: 27px;
@@ -218,7 +234,9 @@
218
234
  }
219
235
 
220
236
  .e-pv-password-input {
221
- margin-top: $pv-password-input-margin-top;
237
+ @if $skin-name != 'Material3' {
238
+ margin-top: $pv-password-input-margin-top;
239
+ }
222
240
  }
223
241
 
224
242
  .e-pv-password-error {
@@ -231,7 +249,12 @@
231
249
  }
232
250
 
233
251
  .e-pv-corrupted-popup-content {
234
- color: $pv-corrupted-pop-header-color;
252
+ @if $skin-name == 'Material3' {
253
+ color: $content-text-color-alt1;
254
+ }
255
+ @else {
256
+ color: $pv-corrupted-pop-header-color;
257
+ }
235
258
  font-size: $pv-corrupted-pop-content-font-size;
236
259
  line-height: $pv-corrupted-pop-content-line-height;
237
260
  margin-left: $pv-corrupted-pop-content-margin-left;
@@ -251,11 +274,18 @@
251
274
  }
252
275
 
253
276
  .e-pv-toolbar.e-toolbar:not(.e-pv-mobile-toolbar) .e-toolbar-items .e-toolbar-item:not(.e-separator) {
254
- height: auto;
277
+ @if $skin-name == 'Material3' {
278
+ height: $pv-toolbar-height;
279
+ }
280
+ @else {
281
+ height: auto;
282
+ }
255
283
  margin-left: $pv-toolbar-items-margin-left;
256
284
  margin-right: $pv-toolbar-items-margin-right;
257
- padding-bottom: $pv-toolbar-items-padding-bottom;
258
- padding-top: $pv-toolbar-items-padding-top;
285
+ @if $skin-name != 'Material3' {
286
+ padding-bottom: $pv-toolbar-items-padding-bottom;
287
+ padding-top: $pv-toolbar-items-padding-top;
288
+ }
259
289
  @if $skin-name == 'bootstrap5' {
260
290
  padding: 3px 4px;
261
291
  }
@@ -288,6 +318,22 @@
288
318
  @if $skin-name == 'FluentUI' {
289
319
  padding-bottom: 2px;
290
320
  }
321
+ @else if $skin-name == 'Material3' {
322
+ padding: 0 !important;/* stylelint-disable-line declaration-no-important */
323
+ }
324
+ @else {
325
+ padding-bottom: 0;
326
+ }
327
+ }
328
+
329
+ .e-bigger .e-pv-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon,
330
+ .e-bigger .e-pv-annotation-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
331
+ @if $skin-name == 'FluentUI' {
332
+ padding-bottom: 2px;
333
+ }
334
+ @else if $skin-name == 'Material3' {
335
+ padding: 0 !important;/* stylelint-disable-line declaration-no-important */
336
+ }
291
337
  @else {
292
338
  padding-bottom: 0;
293
339
  }
@@ -550,7 +596,12 @@
550
596
  }
551
597
 
552
598
  .e-input-group.e-control-wrapper.e-pv-current-page-box:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left) {
553
- border: $pv-current-page-border;
599
+ @if $skin-name == 'Material3' {
600
+ border-bottom: $pv-current-page-border;
601
+ }
602
+ @else {
603
+ border: $pv-current-page-border;
604
+ }
554
605
  border-radius: $pv-current-page-border-radius;
555
606
  @if $skin-name == 'bootstrap5' {
556
607
  box-shadow: none;
@@ -584,19 +635,23 @@
584
635
  .e-pv-password-popup.e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn,
585
636
  .e-pv-corrupted-popup.e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn,
586
637
  .e-pv-notification-popup.e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
587
- @if $skin-name != 'bootstrap4' {
638
+ @if ($skin-name != 'bootstrap4') {
588
639
  padding-top: $pv-dialog-pop-close-icon-padding-top;
589
640
  }
590
641
  }
591
642
 
592
643
  .e-pv-password-popup.e-dialog {
593
- height: $pv-password-dialog-height;
644
+ @if $skin-name != 'Material3' {
645
+ height: $pv-password-dialog-height;
646
+ }
594
647
  margin: 0 10px;
595
648
  max-width: $pv-password-dialog-width;
596
649
  }
597
650
 
598
651
  .e-pv-corrupted-popup.e-dialog {
599
- height: $pv-corrupted-dialog-height;
652
+ @if $skin-name != 'Material3' {
653
+ height: $pv-corrupted-dialog-height;
654
+ }
600
655
  margin: 0 10px;
601
656
  max-width: $pv-corrupted-dialog-width;
602
657
  }
@@ -612,8 +667,10 @@
612
667
  }
613
668
 
614
669
  .e-pv-corrupted-popup.e-dialog .e-dlg-content {
615
- padding-bottom: $pv-corrupted-dialog-pop-content-padding-bottom;
616
- padding-top: $pv-corrupted-dialog-pop-content-padding-top;
670
+ @if $skin-name != 'Material3' {
671
+ padding-bottom: $pv-corrupted-dialog-pop-content-padding-bottom;
672
+ padding-top: $pv-corrupted-dialog-pop-content-padding-top;
673
+ }
617
674
  }
618
675
 
619
676
  .e-pv-password-popup.e-dialog span[id *= '_prompt'] {
@@ -630,8 +687,10 @@
630
687
  }
631
688
 
632
689
  .e-pv-password-popup.e-dialog .e-dlg-content {
633
- padding-bottom: $pv-password-dialog-pop-content-padding-bottom;
634
- padding-top: $pv-password-pop-content-padding-top;
690
+ @if $skin-name != 'Material3' {
691
+ padding-bottom: $pv-password-dialog-pop-content-padding-bottom;
692
+ padding-top: $pv-password-pop-content-padding-top;
693
+ }
635
694
  }
636
695
 
637
696
  .e-pv-current-page-box.e-input-group.e-control-wrapper input.e-input {
@@ -704,7 +763,13 @@
704
763
  }
705
764
 
706
765
  .e-pv-viewer-main-container {
707
- background-color: $pv-background;
766
+ @if $skin-name == 'Material3' {
767
+ background: $pv-background;
768
+ }
769
+ @else
770
+ {
771
+ background-color: $pv-background;
772
+ }
708
773
  bottom: $pv-viewer-main-container-bottom;
709
774
  left: $pv-viewer-main-container-left;
710
775
  position: $pv-viewer-main-container-position;
@@ -786,7 +851,7 @@
786
851
  .e-pv-sidebar-title {
787
852
  color: $pv-sidebar-title-color;
788
853
  font-size: $pv-sidebar-title-font-size;
789
- @if ($skin-name == 'bootstrap5' or $skin-name == 'tailwind') {
854
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'tailwind' or $skin-name == 'Material3') {
790
855
  font-weight: 500;
791
856
  }
792
857
  height: $pv-sidebar-title-height;
@@ -896,6 +961,9 @@
896
961
  -webkit-box-shadow: $pv-sidebar-content-scrollbar-track-box-shadow;
897
962
  background: $pv-sidebar-content-scrollbar-track-background;
898
963
  border: $pv-sidebar-content-scrollbar-track-border;
964
+ @if $skin-name == 'Material3' {
965
+ border-width: 0 1px 0 0;
966
+ }
899
967
  }
900
968
 
901
969
  .e-pv-sidebar-content::-webkit-scrollbar-thumb {
@@ -904,6 +972,10 @@
904
972
  background-clip: $pv-sidebar-content-scrollbar-thumb-background-clip;
905
973
  border: $pv-sidebar-content-scrollbar-thumb-border;
906
974
  border-radius: $pv-sidebar-content-scrollbar-thumb-border-radius;
975
+ @if $skin-name == 'Material3' {
976
+ width: 6px;
977
+ height: 329px;
978
+ }
907
979
  }
908
980
 
909
981
  .e-pv-thumbnail-view-button.e-btn {
@@ -1099,6 +1171,9 @@
1099
1171
  padding-left: $pv-thumbnail-number-padding-left;
1100
1172
  padding-right: $pv-thumbnail-number-padding-left;
1101
1173
  padding-top: $pv-thumbnail-number-padding-top;
1174
+ @if $skin-name == 'Material3' {
1175
+ font-weight: 500;
1176
+ }
1102
1177
  }
1103
1178
 
1104
1179
  .e-pv-thumbnail-selection-ring {
@@ -1174,16 +1249,32 @@
1174
1249
  font-size: $pv-bookmark-icon-font-size;
1175
1250
  padding-left: $pv-bookmark-icon-padding-left;
1176
1251
  padding-right: $pv-bookmark-icon-padding-right;
1252
+ @if $skin-name == 'Material3' {
1253
+ font-size: $text-base;
1254
+ padding-left: 12px;
1255
+ padding-right: 12px;
1256
+ }
1177
1257
  }
1178
1258
 
1179
1259
  .e-pv-bookmark-title {
1180
1260
  padding-left: $pv-bookmark-title-padding-left;
1261
+ @if $skin-name == 'Material3' {
1262
+ font-size: $text-sm;
1263
+ font-weight: $font-weight-normal;
1264
+ line-height: 20px;
1265
+ letter-spacing: .24px;
1266
+ }
1181
1267
  }
1182
1268
 
1183
1269
  .e-bigger div > .e-pv-bookmark-icon.e-pv-icon {
1184
1270
  @if $skin-name == 'bootstrap4' {
1185
1271
  font-size: $pv-icon-font-size-big;
1186
1272
  }
1273
+ @if $skin-name == 'Material3' {
1274
+ font-size: $text-base;
1275
+ padding-left: 12px;
1276
+ padding-right: 12px;
1277
+ }
1187
1278
  }
1188
1279
 
1189
1280
  .e-pv-sidebar-bookmark-title {
@@ -1201,6 +1292,9 @@
1201
1292
  -webkit-box-shadow: $pv-sidebar-content-scrollbar-track-box-shadow;
1202
1293
  background: $pv-sidebar-content-scrollbar-track-background;
1203
1294
  border: $pv-sidebar-content-scrollbar-track-border;
1295
+ @if $skin-name == 'Material3' {
1296
+ border-width: 0 1px 0 0;
1297
+ }
1204
1298
  }
1205
1299
 
1206
1300
  .e-pv-bookmark-view::-webkit-scrollbar-thumb {
@@ -1209,6 +1303,10 @@
1209
1303
  background-clip: $pv-sidebar-content-scrollbar-thumb-background-clip;
1210
1304
  border: $pv-sidebar-content-scrollbar-thumb-border;
1211
1305
  border-radius: $pv-sidebar-content-scrollbar-thumb-border-radius;
1306
+ @if $skin-name == 'Material3' {
1307
+ width: 6px;
1308
+ height: 329px;
1309
+ }
1212
1310
  }
1213
1311
 
1214
1312
  .e-pv-bookmark-view > .e-ul {
@@ -1226,6 +1324,9 @@
1226
1324
  height: $pv-bookmark-view-icon-collapsible-height;
1227
1325
  padding: $pv-bookmark-view-icon-collapsible-padding;
1228
1326
  width: $pv-bookmark-view-icon-collapsible-width;
1327
+ @if $skin-name == 'Material3' {
1328
+ margin-top: 5px;
1329
+ }
1229
1330
  }
1230
1331
 
1231
1332
  .e-pv-bookmark-view .e-list-item .e-ul {
@@ -1353,7 +1454,9 @@
1353
1454
  }
1354
1455
 
1355
1456
  .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item {
1356
- height: inherit;
1457
+ @if $skin-name != 'Material3' {
1458
+ height: inherit;
1459
+ }
1357
1460
  }
1358
1461
 
1359
1462
  .e-pv-stamp.e-menu-wrapper ul .e-menu-item {
@@ -1461,7 +1564,12 @@
1461
1564
  }
1462
1565
 
1463
1566
  .e-pv-search-bar {
1464
- background-color: $pv-search-box-background-color;
1567
+ @if ($skin-name == 'Material3'){
1568
+ background: $pv-search-box-background-color;
1569
+ }
1570
+ @else{
1571
+ background-color: $pv-search-box-background-color;
1572
+ }
1465
1573
  border: $pv-search-box-border;
1466
1574
  border-radius: $pv-search-box-border-radius;
1467
1575
  box-shadow: $pv-search-box-box-shadow;
@@ -1698,7 +1806,9 @@
1698
1806
 
1699
1807
  .e-pv-annotation-opacity-popup-container,
1700
1808
  .e-pv-annotation-thickness-popup-container {
1701
- background-color: $pv-annotation-opacity-popup-background-color;
1809
+ @if $skin-name != 'Material3' {
1810
+ background-color: $pv-annotation-opacity-popup-background-color;
1811
+ }
1702
1812
  box-shadow: $pv-annotation-opacity-popup-box-shadow;
1703
1813
  color: $pv-annotation-opacity-popup-color;
1704
1814
  height: auto;
@@ -1745,6 +1855,12 @@
1745
1855
  font-size: $pv-annotation-drop-down-caret-font-size;
1746
1856
  }
1747
1857
 
1858
+ .e-bigger .e-.e-pv-annotation-color-container.e-dropdown-btn.e-btn .e-caret .e-pv-annotation-opacity-container.e-dropdown-btn.e-btn .e-caret .e-pv-annotation-textcolor-container.e-dropdown-btn.e-btn .e-caret,
1859
+ .e-bigger .e-pv-annotation-textalign-container.e-dropdown-btn.e-btn .e-caret,
1860
+ .e-bigger .e-pv-annotation-textprop-container.e-dropdown-btn.e-btn .e-caret {
1861
+ font-size: 18px;
1862
+ }
1863
+
1748
1864
  .e-pv-annotation-color-container,
1749
1865
  .e-pv-annotation-opacity-container,
1750
1866
  .e-pv-annotation-stroke-container,
@@ -1765,6 +1881,9 @@
1765
1881
  }
1766
1882
 
1767
1883
  .e-pv-shapes-toolbar {
1884
+ @if $skin-name == 'Material3' {
1885
+ border-radius: 4px;
1886
+ }
1768
1887
  box-shadow: $pv-drop-down-toolbar-box-shadow;
1769
1888
  }
1770
1889
 
@@ -1776,6 +1895,9 @@
1776
1895
  margin-bottom: 0;
1777
1896
  margin-left: 4px;
1778
1897
  margin-right: 4px;
1898
+ @if $skin-name == 'Material3' {
1899
+ margin-top: 4px;
1900
+ }
1779
1901
  }
1780
1902
 
1781
1903
  .e-pv-shapes-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn {
@@ -1818,8 +1940,14 @@
1818
1940
  .e-pv-annotation-textprop-container.e-btn,
1819
1941
  .e-pv-annotation-handwritten-container.e-btn,
1820
1942
  .e-pv-stamp.e-menu-wrapper ul .e-menu-item.e-focused:not(.e-selected) {
1821
- background-color: $pv-annotation-dropdown-background-color;
1822
- border-color: $pv-annotation-dropdown-border-color;
1943
+ @if $skin-name == 'Material3' {
1944
+ background: $pv-annotation-dropdown-background-color;
1945
+ border: $pv-annotation-dropdown-border-color;
1946
+ }
1947
+ @else {
1948
+ background-color: $pv-annotation-dropdown-background-color;
1949
+ border-color: $pv-annotation-dropdown-border-color;
1950
+ }
1823
1951
  }
1824
1952
 
1825
1953
  .e-pv-annotation-color-container.e-btn:hover,
@@ -1835,8 +1963,14 @@
1835
1963
  .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-valid-input:hover,
1836
1964
  .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl.e-valid-input:hover,
1837
1965
  .e-pv-stamp.e-menu-wrapper ul .e-menu-item.e-focused:hover {
1838
- background-color: $pv-annotation-dropdown-background-color-hover;
1839
- border-color: $pv-annotation-dropdown-border-color-hover;
1966
+ @if $skin-name == 'Material3' {
1967
+ background: $pv-annotation-dropdown-background-color-hover;
1968
+ border: $pv-annotation-dropdown-border-color-hover;
1969
+ }
1970
+ @else {
1971
+ background-color: $pv-annotation-dropdown-background-color-hover;
1972
+ border-color: $pv-annotation-dropdown-border-color-hover;
1973
+ }
1840
1974
  }
1841
1975
 
1842
1976
  .e-pv-annotation-color-container.e-btn:active,
@@ -1849,8 +1983,14 @@
1849
1983
  .e-pv-annotation-textalign-container.e-btn:active,
1850
1984
  .e-pv-annotation-textprop-container.e-btn:active,
1851
1985
  .e-pv-annotation-handwritten-container.e-btn:active {
1852
- background-color: $pv-annotation-dropdown-background-color-active;
1853
- border-color: $pv-annotation-dropdown-border-color-active;
1986
+ @if $skin-name == 'Material3' {
1987
+ background: $pv-annotation-dropdown-background-color-active;
1988
+ border: $pv-annotation-dropdown-border-color-active;
1989
+ }
1990
+ @else {
1991
+ background-color: $pv-annotation-dropdown-background-color-active;
1992
+ border-color: $pv-annotation-dropdown-border-color-active;
1993
+ }
1854
1994
  box-shadow: none;
1855
1995
  color: $pv-item-selection-color;
1856
1996
  }
@@ -1859,7 +1999,12 @@
1859
1999
  .e-pv-annotation-calibrate-container.e-btn.e-dropdown-btn.e-active:not(:hover),
1860
2000
  .e-pv-annotation-handwritten-container.e-dropdown-btn.e-btn.e-active:not(:hover),
1861
2001
  .e-pv-annotation-toolbar .e-dropdown-btn.e-btn.e-active:not(:hover) .e-caret {
1862
- background-color: $pv-annotation-dd-background-color-active;
2002
+ @if $skin-name == 'Material3' {
2003
+ background: $pv-annotation-dd-background-color-active;
2004
+ }
2005
+ @else {
2006
+ background-color: $pv-annotation-dd-background-color-active;
2007
+ }
1863
2008
  color: $pv-icon-color;
1864
2009
  @if ($skin-name == 'bootstrap5') {
1865
2010
  color: $secondary-text-color-pressed;
@@ -1877,7 +2022,7 @@
1877
2022
  .e-pv-annotation-textprop-container.e-dropdown-btn.e-btn {
1878
2023
  line-height: $pv-annotation-drop-down-btn-line-height;
1879
2024
  padding: $pv-annotation-drop-down-btn-padding;
1880
- @if ($skin-name == 'bootstrap5') {
2025
+ @if ($skin-name == 'bootstrap5' or $skin-name =='Material3') {
1881
2026
  align-items: center;
1882
2027
  display: flex;
1883
2028
  }
@@ -2018,6 +2163,9 @@
2018
2163
  box-sizing: border-box;
2019
2164
  color: $content-text-color;
2020
2165
  }
2166
+ @if ($skin-name == 'Material3') {
2167
+ padding: 7px;
2168
+ }
2021
2169
  }
2022
2170
 
2023
2171
  .e-bigger .e-pv-properties-line-fill-color-container .e-dropdown-btn.e-btn,
@@ -2052,6 +2200,11 @@
2052
2200
  float: left;
2053
2201
  height: auto;
2054
2202
  width: $pv-properties-window-container-max-width;
2203
+ @if $skin-name == 'Material3'
2204
+ {
2205
+ width: 204px;
2206
+ max-width: 204px;
2207
+ }
2055
2208
  }
2056
2209
 
2057
2210
  .e-pv-scale-ratio-src-input-container,
@@ -2127,11 +2280,17 @@
2127
2280
  .e-pv-properties-line-stroke-color-label,
2128
2281
  .e-pv-properties-line-opacity-label,
2129
2282
  .e-pv-properties-line-leader-length-label {
2130
- font-size: 14px;
2131
2283
  margin-bottom: 8px;
2132
2284
  @if ($skin-name == 'FluentUI') {
2133
2285
  font-weight: 600;
2134
2286
  }
2287
+ @if ($skin-name == 'Material3'){
2288
+ font-size: $text-xxs;
2289
+ margin-bottom: 0;
2290
+ }
2291
+ @else {
2292
+ font-size: 14px;
2293
+ }
2135
2294
  }
2136
2295
 
2137
2296
  .e-pv-properties-line-end-container,
@@ -2139,6 +2298,9 @@
2139
2298
  @if ($skin-name == 'bootstrap5') {
2140
2299
  margin-left: 37px;
2141
2300
  }
2301
+ @if ($skin-name == 'Material3'){
2302
+ margin-left: 12px;
2303
+ }
2142
2304
  @else {
2143
2305
  margin-left: 24px;
2144
2306
  }
@@ -2205,6 +2367,14 @@
2205
2367
  width: $pv-properties-window-container-width;
2206
2368
  }
2207
2369
 
2370
+ .e-pv-properties-line-style {
2371
+ @if ($skin-name == 'Material3'){
2372
+ font-size: $text-xxs;
2373
+ max-width: 214px;
2374
+ border-radius: 0;
2375
+ }
2376
+ }
2377
+
2208
2378
  .e-bigger .e-pv-properties-line-start,
2209
2379
  .e-bigger .e-pv-properties-line-end,
2210
2380
  .e-bigger .e-pv-properties-line-style {
@@ -2253,6 +2423,9 @@
2253
2423
  @if $skin-name == 'FluentUI' {
2254
2424
  line-height: 20px;
2255
2425
  }
2426
+ @if ($skin-name == 'Material3'){
2427
+ font-size: $text-sm;
2428
+ }
2256
2429
  }
2257
2430
 
2258
2431
  .e-pv-properties-line-start.e-btn,
@@ -2266,6 +2439,13 @@
2266
2439
  @if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark') {
2267
2440
  height: 30px;
2268
2441
  }
2442
+ @if ($skin-name == 'Material3'){
2443
+ border-bottom: 1px solid rgba($border);
2444
+ border-radius: 0;
2445
+ width: 214px;
2446
+ height: 32px;
2447
+ }
2448
+
2269
2449
  @else {
2270
2450
  height: 32px;
2271
2451
  }
@@ -2293,6 +2473,10 @@
2293
2473
  @if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark') {
2294
2474
  height: 30px;
2295
2475
  }
2476
+ @if ($skin-name =='Material3'){
2477
+ border-bottom: 1px solid rgba($border);
2478
+ border-radius: 0;
2479
+ }
2296
2480
  @else {
2297
2481
  height: 32px;
2298
2482
  }
@@ -2328,6 +2512,10 @@
2328
2512
  @if $skin-name == 'FluentUI' {
2329
2513
  width: 120px;
2330
2514
  }
2515
+ @if ($skin-name == 'Material3'){
2516
+ width: 155px;
2517
+ padding-top: 6px;
2518
+ }
2331
2519
  @else {
2332
2520
  width: 138px;
2333
2521
  }
@@ -2344,8 +2532,13 @@
2344
2532
  .e-pv-annotation-calibrate-container.e-btn.e-icon-btn,
2345
2533
  .e-pv-annotation-handwritten-container.e-btn.e-icon-btn,
2346
2534
  .e-menu-wrapper.e-custom-scroll.e-lib.e-keyboard.e-pv-stamp ul {
2347
- height: $pv-annot-toolbar-dropdown-btn-height;
2348
- width: $pv-annot-toolbar-dropdown-btn-width;
2535
+ @if $skin-name != 'Material3' {
2536
+ height: $pv-annot-toolbar-dropdown-btn-height;
2537
+ width: $pv-annot-toolbar-dropdown-btn-width;
2538
+ }
2539
+ @else {
2540
+ width: max-content;
2541
+ }
2349
2542
  }
2350
2543
 
2351
2544
  .e-pv-annotation-shapes-container.e-btn.e-icon-button,
@@ -2405,6 +2598,9 @@
2405
2598
  @if $skin-name == 'FluentUI' {
2406
2599
  margin-left: 141px;
2407
2600
  }
2601
+ @if $skin-name == 'Material3' {
2602
+ margin-left: 190px;
2603
+ }
2408
2604
  @else {
2409
2605
  margin-left: 153px;
2410
2606
  }
@@ -2420,7 +2616,9 @@
2420
2616
  .e-pv-annotation-stamp-container .e-menu-parent.e-menu .e-menu-item,
2421
2617
  .e-pv-annotation-stamp-container .e-menu-parent.e-menu .e-menu-item .e-pv-stamp-icon,
2422
2618
  .e-pv-annotation-stamp-container .e-menu-parent.e-menu .e-menu-item .e-caret {
2423
- line-height: $pv-annot-toolbar-dropdown-btn-line-height;
2619
+ @if $skin-name != 'Material3' {
2620
+ line-height: $pv-annot-toolbar-dropdown-btn-line-height;
2621
+ }
2424
2622
  }
2425
2623
 
2426
2624
  .e-pv-annotation-stamp-container .e-menu-parent.e-menu .e-menu-item.e-selected {
@@ -2434,7 +2632,9 @@
2434
2632
  height: $pv-toolbar-btn-height-big;
2435
2633
  line-height: $pv-toolbar-btn-line-height;
2436
2634
  margin: $pv-toolbar-btn-margin;
2437
- padding: $pv-toolbar-btn-padding;
2635
+ @if $skin-name != 'Material3' {
2636
+ padding: $pv-toolbar-btn-padding;
2637
+ }
2438
2638
  width: $pv-toolbar-btn-width-big;
2439
2639
  }
2440
2640
 
@@ -2471,7 +2671,9 @@
2471
2671
 
2472
2672
  .e-bigger .e-pv-password-popup.e-dialog,
2473
2673
  .e-pv-mobile-view .e-pv-password-popup.e-dialog {
2474
- height: $pv-password-dialog-height-mobile;
2674
+ @if ($skin-name != 'Material3') {
2675
+ height: $pv-password-dialog-height-mobile;
2676
+ }
2475
2677
  }
2476
2678
  .e-bigger .e-pv-password-popup.e-dialog,
2477
2679
  .e-pv-mobile-view .e-pv-password-popup.e-dialog {
@@ -2482,12 +2684,16 @@
2482
2684
 
2483
2685
  .e-bigger .e-pv-notification-popup.e-dialog,
2484
2686
  .e-pv-mobile-view .e-pv-notification-popup.e-dialog {
2485
- height: $pv-notification-dialog-height-mobile;
2687
+ @if $skin-name != 'Material3' {
2688
+ height: $pv-notification-dialog-height-mobile;
2689
+ }
2486
2690
  }
2487
2691
 
2488
2692
  .e-bigger .e-pv-notification-popup.e-pv-notification-large-content.e-dialog,
2489
2693
  .e-pv-mobile-view .e-pv-notification-popup.e-pv-notification-large-content.e-dialog {
2490
- height: $pv-notification-dialog-height-large-mobile;
2694
+ @if $skin-name != 'Material3' {
2695
+ height: $pv-notification-dialog-height-large-mobile;
2696
+ }
2491
2697
  }
2492
2698
 
2493
2699
  .e-bigger .e-pv-notification-popup.e-pv-notification-large-content.e-dialog,
@@ -2498,7 +2704,9 @@
2498
2704
  }
2499
2705
  .e-bigger .e-pv-corrupted-popup.e-dialog,
2500
2706
  .e-pv-mobile-view .e-pv-corrupted-popup.e-dialog {
2501
- height: $pv-corrupted-dialog-height-mobile;
2707
+ @if $skin-name != 'Material3' {
2708
+ height: $pv-corrupted-dialog-height-mobile;
2709
+ }
2502
2710
  }
2503
2711
 
2504
2712
  .e-bigger .e-pv-password-popup.e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn,
@@ -2651,12 +2859,22 @@
2651
2859
  padding-left: $pv-bookmark-icon-rtl-padding;
2652
2860
  padding-right: $pv-bookmark-icon-rtl-padding;
2653
2861
  position: $pv-bookmark-icon-rtl-position;
2862
+ @if $skin-name == 'Material3' {
2863
+ font-size: $text-base;
2864
+ padding-left: 12px;
2865
+ padding-right: 12px;
2866
+ }
2654
2867
  }
2655
2868
 
2656
2869
  .e-bigger div > .e-pv-bookmark-icon.e-pv-icon.e-right {
2657
2870
  @if $skin-name == 'bootstrap4' {
2658
2871
  font-size: $pv-icon-font-size-big;
2659
2872
  }
2873
+ @if $skin-name == 'Material3' {
2874
+ font-size: $text-base;
2875
+ padding-left: 12px;
2876
+ padding-right: 12px;
2877
+ }
2660
2878
  }
2661
2879
 
2662
2880
  .e-bigger .e-pv-properties-window {
@@ -2716,6 +2934,9 @@
2716
2934
 
2717
2935
  .e-pdfviewer .e-editable-value-wrapper {
2718
2936
  color: $pv-comment-font-color;
2937
+ line-height: normal;
2938
+ min-height: 22px;
2939
+ padding: 2px 8px 3px;
2719
2940
  @if $skin-name == 'bootstrap5' {
2720
2941
  color: $content-text-color-alt2;
2721
2942
  }
@@ -2723,9 +2944,10 @@
2723
2944
  @if $skin-name == 'bootstrap5' {
2724
2945
  font-size: 12px;
2725
2946
  }
2726
- line-height: normal;
2727
- min-height: 22px;
2728
- padding: 2px 8px 3px;
2947
+ @if $skin-name == 'Material3' {
2948
+ font-size: $text-xs;
2949
+ line-height: 18px;
2950
+ }
2729
2951
  }
2730
2952
 
2731
2953
  .e-pdfviewer .e-pv-comment-textbox .e-editable-value-wrapper {
@@ -2737,6 +2959,9 @@
2737
2959
  @if $skin-name == 'bootstrap5' {
2738
2960
  font-size: 12px;
2739
2961
  }
2962
+ @if $skin-name == 'Material3' {
2963
+ font-size: $text-xs;
2964
+ }
2740
2965
  line-height: normal;
2741
2966
  min-height: 24px;
2742
2967
  padding: 2px 8px 3px 32px;
@@ -2806,7 +3031,7 @@
2806
3031
 
2807
3032
  .e-pdfviewer .e-editable-inline .e-btn.e-outline.e-primary,
2808
3033
  .e-pdfviewer .e-editable-inline .e-btn.e-outline {
2809
- @if $skin-name != 'bootstrap5' {
3034
+ @if ($skin-name != 'bootstrap5' and $skin-name != 'Material3') {
2810
3035
  border-color: transparent;
2811
3036
  }
2812
3037
  }
@@ -2823,6 +3048,9 @@
2823
3048
  font-size: 14px;
2824
3049
  padding-left: 5px;
2825
3050
  padding-right: 5px;
3051
+ @if $skin-name == 'Material3' {
3052
+ font-size: $text-xs;
3053
+ }
2826
3054
  }
2827
3055
 
2828
3056
  .e-pdfviewer .e-btn-save {
@@ -2830,10 +3058,13 @@
2830
3058
  margin-right: 12px;
2831
3059
  padding-left: 7px;
2832
3060
  padding-right: 7px;
3061
+ @if $skin-name == 'Material3' {
3062
+ font-size: $text-xs;
3063
+ }
2833
3064
  }
2834
3065
 
2835
3066
  .e-pdfviewer .e-btn-save.e-outline.e-primary:disabled {
2836
- @if $skin-name != 'bootstrap5' {
3067
+ @if ($skin-name != 'bootstrap5' and $skin-name != 'Material3') {
2837
3068
  background-color: $pv-save-button-bg-color;
2838
3069
  border-radius: 2px;
2839
3070
  color: $pv-save-button-color;
@@ -2848,6 +3079,11 @@
2848
3079
  .e-pdfviewer .e-accordion .e-acrdn-item .e-acrdn-header {
2849
3080
  line-height: 32px;
2850
3081
  min-height: 32px;
3082
+ @if $skin-name == 'Material3' {
3083
+ box-shadow: none;
3084
+ border: 1px solid rgba($border-light);
3085
+ border-width: 1px 0;
3086
+ }
2851
3087
  }
2852
3088
 
2853
3089
  .e-contextmenu-wrapper .e-pv-context-menu .e-menu-item {
@@ -2855,6 +3091,9 @@
2855
3091
  }
2856
3092
 
2857
3093
  .e-pv-comment-panel {
3094
+ @if $skin-name == 'Material3' {
3095
+ background: $content-bg-color-alt2;
3096
+ }
2858
3097
  background-color: $pv-comment-panel-bg;
2859
3098
  border: $pv-sidebar-toolbar-border;
2860
3099
  border-width: 1px 1px 0;
@@ -2867,17 +3106,33 @@
2867
3106
  }
2868
3107
 
2869
3108
  .e-pv-comment-panel-title-container {
2870
- background-color: $pv-comment-panel-bg;
2871
- border-color: $pv-comment-panel-border-color;
2872
- border-style: double;
2873
- border-width: 0 1px 1px 0;
3109
+ @if $skin-name == 'Material3' {
3110
+ background: $content-bg-color-alt2;
3111
+ border-style: solid;
3112
+ border-width: 0 0 1px 1px;
3113
+ }
3114
+ @else {
3115
+ background-color: $pv-comment-panel-bg;
3116
+ border-style: double;
3117
+ border-width: 0 1px 1px 0;
3118
+ }
2874
3119
  height: 45px;
2875
3120
  position: relative;
3121
+ border-color: $pv-comment-panel-border-color;
2876
3122
  }
2877
3123
 
2878
3124
  .e-pv-comment-panel-title {
2879
3125
  color: $pv-comment-font-color;
2880
3126
  font-size: 14px;
3127
+ @if $skin-name == 'Material3' {
3128
+ background: $content-bg-color-alt2;
3129
+ border: $border-light;
3130
+ border-width: 0 0 1px 1px;
3131
+ font-size: $text-base;
3132
+ font-weight: $pv-comment-tile-font-weight;
3133
+ line-height: 24px;
3134
+ padding: 8px 215px 8px 12px;
3135
+ }
2881
3136
  @if $skin-name == 'bootstrap5' {
2882
3137
  font-size: 16px;
2883
3138
  font-weight: 500;
@@ -2885,10 +3140,12 @@
2885
3140
  @if $skin-name == 'FluentUI' {
2886
3141
  font-weight: $pv-comment-tile-font-weight;
2887
3142
  }
2888
- left: 15px;
3143
+ @if $skin-name != 'Material3' {
3144
+ left: 15px;
3145
+ top: 14px;
3146
+ }
2889
3147
  position: absolute;
2890
3148
  text-align: left;
2891
- top: 14px;
2892
3149
  }
2893
3150
 
2894
3151
  .e-pv-comment-panel-title-close-div.e-btn {
@@ -2900,12 +3157,23 @@
2900
3157
  }
2901
3158
  height: $pv-title-close-height;
2902
3159
  position: $pv-title-close-position;
2903
- right: 11px;
2904
- top: 5px;
3160
+ @if $skin-name != 'Material3' {
3161
+ right: 11px;
3162
+ top: 5px;
3163
+ }
2905
3164
  width: $pv-title-close-width;
2906
3165
  @if $skin-name == 'FluentUI' {
2907
3166
  padding: 4px;
2908
3167
  }
3168
+ @if $skin-name == 'Material3' {
3169
+ padding: 12px 12px 12px 270px;
3170
+ }
3171
+ }
3172
+
3173
+ @if $skin-name == 'Material3' {
3174
+ .e-pv-comment-panel-title-container .e-pv-more-icon .e-pv-icon {
3175
+ font-size: $text-base;
3176
+ }
2909
3177
  }
2910
3178
 
2911
3179
  .e-pv-title-close-icon {
@@ -2929,6 +3197,9 @@
2929
3197
  border-width: 0 1px 1px 0;
2930
3198
  height: calc(100% - 45px);
2931
3199
  overflow: auto;
3200
+ @if $skin-name == 'Material3' {
3201
+ background: $content-bg-color-alt2;
3202
+ }
2932
3203
  }
2933
3204
 
2934
3205
  .e-pv-comments-container {
@@ -2953,10 +3224,16 @@
2953
3224
  border: 1px solid $border-light;
2954
3225
  border-radius: 2px;
2955
3226
  }
3227
+ @if $skin-name == 'Material3' {
3228
+ border: 1px solid rgba($border-light);
3229
+ border-radius: 4px;
3230
+ }
2956
3231
  }
2957
3232
 
2958
3233
  .e-pv-comment-title {
2959
3234
  color: $pv-comment-text-color;
3235
+ padding-left: 32px;
3236
+ padding-top: $pv-comment-title-padding-top;
2960
3237
  @if ($skin-name == 'bootstrap5' or $skin-name == 'tailwind' or $skin-name == 'FluentUI') {
2961
3238
  color: $pv-comment-tile-text-color;
2962
3239
  }
@@ -2968,9 +3245,14 @@
2968
3245
  @if $skin-name == 'FluentUI' {
2969
3246
  font-weight: $pv-comment-tile-font-weight;
2970
3247
  }
3248
+ @if $skin-name == 'Material3' {
3249
+ font-size: $text-xs;
3250
+ padding-left: 40px;
3251
+ padding-top: $pv-comment-title-padding-top;
3252
+ padding-bottom: 30px;
3253
+ height: 18px;
3254
+ }
2971
3255
  max-width: 237px;
2972
- padding-left: 32px;
2973
- padding-top: $pv-comment-title-padding-top;
2974
3256
  position: absolute;
2975
3257
  }
2976
3258
 
@@ -2987,6 +3269,9 @@
2987
3269
  @if $skin-name == 'FluentUI' {
2988
3270
  font-weight: $pv-comment-tile-font-weight;
2989
3271
  }
3272
+ @if $skin-name == 'Material3' {
3273
+ font-size: $text-xs;
3274
+ }
2990
3275
  max-width: 212px;
2991
3276
  padding-left: 8px;
2992
3277
  padding-top: $pv-comment-title-padding-top;
@@ -3015,8 +3300,15 @@
3015
3300
  }
3016
3301
 
3017
3302
  .e-pdfviewer .e-accordion {
3018
- background-color: $pv-comments-content-container-bg;
3019
- border: transparent;
3303
+ @if $skin-name == 'Material3' {
3304
+ background: $pv-comments-content-container-bg;
3305
+ border-radius: 0;
3306
+ border-width: 0;
3307
+ }
3308
+ @else {
3309
+ background-color: $pv-comments-content-container-bg;
3310
+ border: transparent;
3311
+ }
3020
3312
  }
3021
3313
 
3022
3314
  .e-menu-wrapper.e-custom-scroll.e-lib.e-keyboard.e-pv-stamp {
@@ -3024,11 +3316,13 @@
3024
3316
  @if $skin-name == 'bootstrap5' {
3025
3317
  background-color: $transparent;
3026
3318
  }
3027
- display: block;
3319
+ @if $skin-name != 'Material3' {
3320
+ display: block;
3321
+ }
3028
3322
  }
3029
3323
 
3030
3324
  .e-dropdown-popup.e-lib.e-popup.e-control.e-pv-handwritten-popup.e-popup-open ul {
3031
- @if $skin-name == 'FluentUI' {
3325
+ @if ($skin-name == 'FluentUI' or $skin-name == 'Material3') {
3032
3326
  padding-bottom: 6px;
3033
3327
  padding-top: 6px;
3034
3328
  }
@@ -3076,6 +3370,12 @@
3076
3370
  word-break: break-word;
3077
3371
  }
3078
3372
 
3373
+ .e-pdfviewer .e-inplaceeditor .e-editable-value-container .e-editable-value {
3374
+ @if $skin-name == 'Material3' {
3375
+ font-size: $text-xs;
3376
+ }
3377
+ }
3378
+
3079
3379
  .e-pdfviewer .e-inplaceeditor .e-editable-value-wrapper {
3080
3380
  display: block;
3081
3381
  }
@@ -3117,6 +3417,9 @@
3117
3417
  @if $skin-name != 'FluentUI' {
3118
3418
  border: 1px solid $pv-comment-panel-border-color;
3119
3419
  }
3420
+ @if $skin-name == 'Material3' {
3421
+ border-width: 1px 0;
3422
+ }
3120
3423
  }
3121
3424
 
3122
3425
  .e-pdfviewer .e-accordion .e-acrdn-item.e-selected.e-select.e-expand-state > .e-acrdn-header:focus,
@@ -3134,6 +3437,12 @@
3134
3437
  @if $skin-name == 'FluentUI' {
3135
3438
  font-weight: $pv-comment-tile-font-weight;
3136
3439
  }
3440
+ @if $skin-name == 'Material3' {
3441
+ font-weight: $font-weight-normal;
3442
+ letter-spacing: .24px;
3443
+ line-height: 20px;
3444
+ padding: 0 249px 9px 0;
3445
+ }
3137
3446
  }
3138
3447
 
3139
3448
  .e-content-placeholder.e-pdfviewer.e-placeholder-pdfviewer {
@@ -3147,6 +3456,9 @@
3147
3456
  .e-pdfviewer .e-pv-signature-apperance .e-checkbox-wrapper {
3148
3457
  margin-top: 10px;
3149
3458
  padding-bottom: $pv-signature-appearance-checkbox;
3459
+ @if $skin-name == 'Material3' {
3460
+ margin-top: 12px;
3461
+ }
3150
3462
  }
3151
3463
 
3152
3464
  .e-pdfviewer .e-pv-signature-window .e-footer-content {
@@ -3155,29 +3467,42 @@
3155
3467
  .e-pv-signature-dialog-height .e-pv-clearbtn
3156
3468
  {
3157
3469
  float: left;
3158
- height: 30px;
3159
- min-height: 30px;
3470
+ @if $skin-name != 'Material3' {
3471
+ height: 30px;
3472
+ min-height: 30px;
3473
+ }
3160
3474
  }
3161
3475
  .e-pv-signature-dialog-height .e-pv-cancelbtn{
3162
- height: 30px;
3163
- min-height: 30px;
3476
+ @if $skin-name != 'Material3' {
3477
+ height: 32px;
3478
+ min-height: 32px;
3479
+ }
3164
3480
  }
3481
+
3165
3482
  .e-pv-signature-dialog-height .e-pv-createbtn{
3166
- height: 30px;
3167
- min-height: 30px;
3483
+ @if $skin-name != 'Material3' {
3484
+ height: 30px;
3485
+ min-height: 30px;
3486
+ }
3168
3487
  }
3169
3488
  .e-bigger .e-pv-signature-dialog-height .e-pv-clearbtn{
3170
- float: left;
3171
- height: 49px;
3172
- min-height: 49px;
3489
+ @if $skin-name != 'Material3' {
3490
+ float: left;
3491
+ height: 49px;
3492
+ min-height: 49px;
3493
+ }
3173
3494
  }
3174
3495
  .e-bigger .e-pv-signature-dialog-height .e-pv-cancelbtn{
3175
- height: 49px;
3176
- min-height: 49px;
3496
+ @if $skin-name != 'Material3' {
3497
+ height: 49px;
3498
+ min-height: 49px;
3499
+ }
3177
3500
  }
3178
3501
  .e-bigger .e-pv-signature-dialog-height .e-pv-createbtn{
3179
- height: 49px;
3180
- min-height: 49px;
3502
+ @if $skin-name != 'Material3' {
3503
+ height: 49px;
3504
+ min-height: 49px;
3505
+ }
3181
3506
  }
3182
3507
 
3183
3508
  .e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-bold.e-pv-tbar-btn.e-tooltip.textprop-option-active,
@@ -3263,6 +3588,14 @@
3263
3588
  max-width: 300px;
3264
3589
  padding-top: 36px;
3265
3590
  }
3591
+ @if $skin-name == 'Material3' {
3592
+ border: 1px dashed rgba($primary);
3593
+ border-radius: 4px;
3594
+ background: $content-bg-color;
3595
+ font-size: $text-2xl;
3596
+ color: $content-text-color;
3597
+ font-weight: $font-weight-normal;
3598
+ }
3266
3599
  }
3267
3600
 
3268
3601
  .e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item.e-focused {
@@ -3368,8 +3701,14 @@
3368
3701
 
3369
3702
  .e-pv-custom-annotation-thickness-container,
3370
3703
  .e-pv-custom-annotation-opacity-container {
3371
- background-color: $pv-annotation-dropdown-background-color;
3372
- border-color: $pv-annotation-dropdown-border-color;
3704
+ @if $skin-name == 'Material3'{
3705
+ background: $pv-annotation-dropdown-background-color;
3706
+ border: $pv-annotation-dropdown-border-color;
3707
+ }
3708
+ @else {
3709
+ background-color: $pv-annotation-dropdown-background-color;
3710
+ border-color: $pv-annotation-dropdown-border-color;
3711
+ }
3373
3712
  }
3374
3713
 
3375
3714
  .e-pdfviewer-signatureformfields.e-pv-signature-focus,
@@ -3525,6 +3864,9 @@
3525
3864
  padding-bottom: 12px;
3526
3865
  padding-top: 12px;
3527
3866
  }
3867
+ @if $skin-name == 'Material3' {
3868
+ padding-top: 16px;
3869
+ }
3528
3870
  @else {
3529
3871
  padding-bottom: 10px;
3530
3872
  padding-top: 20px;
@@ -3555,13 +3897,19 @@
3555
3897
  .e-pv-left-align-icon-div:hover,
3556
3898
  .e-pv-center-align-icon-div:hover,
3557
3899
  .e-pv-right-align-icon-div:hover {
3558
- background-color: $pv-annotation-dropdown-background-color-hover;
3559
- border-color: $pv-annotation-dropdown-border-color-hover;
3900
+ @if ($skin-name != 'Material3' and $skin-name != 'bootstrap5') {
3901
+ background-color: $pv-annotation-dropdown-background-color-hover;
3902
+ border-color: $pv-annotation-dropdown-border-color-hover;
3903
+ }
3560
3904
  @if ($skin-name == 'bootstrap5') {
3561
3905
  background-color: $secondary-bg-color-pressed;
3562
3906
  border-color: $secondary-bg-color-pressed;
3563
3907
  color: $white;
3564
3908
  }
3909
+ @if ($skin-name == 'Material3') {
3910
+ background: $pv-annotation-dropdown-background-color-hover;
3911
+ border: $pv-annotation-dropdown-border-color-hover;
3912
+ }
3565
3913
  }
3566
3914
 
3567
3915
  .e-pv-bold-icon-div:active,
@@ -3571,19 +3919,41 @@
3571
3919
  .e-pv-left-align-icon-div:active,
3572
3920
  .e-pv-center-align-icon-div:active,
3573
3921
  .e-pv-right-align-icon-div:active {
3574
- background-color: $pv-signature-footer-color;
3575
- border-color: $pv-signature-footer-color;
3922
+ @if ($skin-name != 'Material3' and $skin-name != 'bootstrap5') {
3923
+ background-color: $pv-signature-footer-color;
3924
+ border-color: $pv-signature-footer-color;
3925
+ }
3576
3926
  @if ($skin-name == 'bootstrap5') {
3577
3927
  background-color: $secondary-bg-color-pressed;
3578
3928
  border-color: $secondary-bg-color-pressed;
3579
3929
  color: $white;
3580
3930
  }
3931
+ @if ($skin-name == 'Material3') {
3932
+ background: $pv-signature-footer-color;
3933
+ border: $pv-signature-footer-color;
3934
+ }
3581
3935
  }
3582
3936
 
3583
3937
  .e-pv-properties-fill-color-style-prop,
3584
3938
  .e-pv-properties-stroke-color-style-prop,
3585
3939
  .e-pv-properties-stroke-thickness-style-prop {
3586
- padding: 12px 20px 12px 1px;
3940
+ @if $skin-name == 'Material3' {
3941
+ padding: 0 20px 12px 1px;
3942
+ }
3943
+ @else {
3944
+ padding: 12px 20px 12px 1px;
3945
+ }
3946
+ }
3947
+
3948
+ .e-bigger .e-pv-properties-fill-color-style-prop,
3949
+ .e-bigger .e-pv-properties-stroke-color-style-prop,
3950
+ .e-bigger .e-pv-properties-stroke-thickness-style-prop {
3951
+ @if $skin-name == 'Material3' {
3952
+ padding: 0 20px 12px 1px;
3953
+ }
3954
+ @else{
3955
+ padding: 12px 20px 12px 1px;
3956
+ }
3587
3957
  }
3588
3958
 
3589
3959
  .e-pv-formfield-fontcolor-icon,
@@ -3623,12 +3993,29 @@
3623
3993
  padding: 0 11px;
3624
3994
  width: inherit;
3625
3995
  }
3996
+ @if ($skin-name == 'Material3') {
3997
+ align-content: center;
3998
+ align-items: center;
3999
+ box-shadow: none;
4000
+ display: flex;
4001
+ flex-direction: row;
4002
+ flex-wrap: wrap;
4003
+ width: 72px;
4004
+ height: 32px;
4005
+ border-bottom: 1px solid rgba($border);
4006
+ box-sizing: border-box;
4007
+ padding-right: 16px;
4008
+ margin-top: 0;
4009
+ }
3626
4010
  }
3627
4011
 
3628
4012
  .e-pv-properties-format-text-style-prop {
3629
4013
  @if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark') {
3630
4014
  padding: 15px 15px 4px 1px;
3631
4015
  }
4016
+ @if ($skin-name == 'Material3') {
4017
+ padding: 20px 15px 6px 0;
4018
+ }
3632
4019
  @else {
3633
4020
  padding: 15px 15px 15px 1px;
3634
4021
  }
@@ -3639,17 +4026,30 @@
3639
4026
  @if $skin-name == 'FluentUI' {
3640
4027
  width: 122px;
3641
4028
  }
4029
+ @if $skin-name == 'Material3' {
4030
+ width: 214px;
4031
+ height: 32px;
4032
+ margin-right: 12px;
4033
+ }
3642
4034
  @else {
3643
4035
  width: 165px;
3644
4036
  }
3645
4037
  }
3646
4038
 
3647
4039
  .e-pv-properties-font-size-container {
3648
- border-right-color: $pv-comment-panel-bottom-color;
3649
- border-right-style: solid;
3650
- border-right-width: 1px;
3651
- margin-right: 15px;
3652
- padding-right: 15px;
4040
+ @if $skin-name == 'Material3' {
4041
+ border-right-color: $transparent;
4042
+ height: 32px;
4043
+ border-bottom: 1px solid $transparent;
4044
+ box-sizing: border-box;
4045
+ }
4046
+ @else {
4047
+ border-right-color: $pv-comment-panel-bottom-color;
4048
+ border-right-style: solid;
4049
+ border-right-width: 1px;
4050
+ margin-right: 15px;
4051
+ padding-right: 15px;
4052
+ }
3653
4053
  width: $pv-font-size-field-width;
3654
4054
  }
3655
4055
 
@@ -3724,6 +4124,12 @@
3724
4124
  display: flex;
3725
4125
  height: 32px;
3726
4126
  }
4127
+ @if ($skin-name == 'Material3') {
4128
+ display: flex;
4129
+ width: 76px;
4130
+ border-bottom: 1px solid rgba($border);
4131
+ box-shadow: none;
4132
+ }
3727
4133
  @if ($skin-name == 'FluentUI') {
3728
4134
  height: auto;
3729
4135
  }
@@ -3733,6 +4139,9 @@
3733
4139
  .e-pv-formfield-maxlength {
3734
4140
  padding-left: 1px;
3735
4141
  width: $pv-formfield-maxlength-width;
4142
+ @if ($skin-name == 'Material3') {
4143
+ height: 32px;
4144
+ }
3736
4145
  }
3737
4146
 
3738
4147
  .e-pv-formfield-maxlength-group {
@@ -3765,6 +4174,12 @@
3765
4174
  max-width: $pv-properties-form-field-win-max-width;
3766
4175
  }
3767
4176
 
4177
+ .e-bigger .e-pv-properties-form-field-window {
4178
+ @if $skin-name == 'Material3' {
4179
+ max-width: 490px;
4180
+ }
4181
+ }
4182
+
3768
4183
  .e-pv-properties-formfield-textarea {
3769
4184
  @if $skin-name == 'FluentUI' {
3770
4185
  min-width: 318px;
@@ -3869,11 +4284,30 @@
3869
4284
  }
3870
4285
  }
3871
4286
 
3872
- .e-pv-formfield-li-element:hover {
3873
- background-color: $pv-form-field-li-background-color;
4287
+ .e-pv-formfield-li-element:hover:not(.e-pv-li-select) {
4288
+ @if ($skin-name != 'Material3') {
4289
+ background-color: $pv-form-field-li-background-color;
4290
+ }
3874
4291
  @if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
3875
4292
  color: $white;
3876
4293
  }
4294
+ @if ($skin-name == 'Material3') {
4295
+ background-color: $content-bg-color-hover;
4296
+ }
4297
+ }
4298
+
4299
+ .e-pv-formfield-li-element:focus {
4300
+ @if ($skin-name == 'Material3') {
4301
+ background-color: $content-bg-color-focus;
4302
+ }
4303
+ }
4304
+
4305
+ .e-pv-formfield-li-element:disabled {
4306
+ @if ($skin-name == 'Material3') {
4307
+ background-color: $transparent;
4308
+ font-size: $text-sm;
4309
+ color: rgba(28, 31, 30, .38);
4310
+ }
3877
4311
  }
3878
4312
 
3879
4313
  .e-pv-form-designer-ul-list-items {
@@ -3913,6 +4347,10 @@
3913
4347
  vertical-align: top;
3914
4348
  white-space: nowrap;
3915
4349
  width: $pv-form-field-property-header-width;
4350
+ @if $skin-name == 'Material3' {
4351
+ height: 20px;
4352
+ font-family: $font-family;
4353
+ }
3916
4354
  }
3917
4355
 
3918
4356
  .e-pv-form-field-property-header-general {
@@ -3920,6 +4358,9 @@
3920
4358
  font-family: 'Segoe UI';
3921
4359
  height: 24px;
3922
4360
  }
4361
+ @if $skin-name == 'Material3' {
4362
+ font-family: $font-family;
4363
+ }
3923
4364
  @else {
3924
4365
  font-family: 'Roboto';
3925
4366
  }
@@ -3975,9 +4416,47 @@
3975
4416
  height: 32px;
3976
4417
  width: 163px;
3977
4418
  }
4419
+ @if ($skin-name == 'Material3') {
4420
+ align-items: center;
4421
+ border-bottom: 1px solid $transparent;
4422
+ height: 32px;
4423
+ width: 128px;
4424
+ padding-left: 8px;
4425
+ padding-top: 10px;
4426
+ }
3978
4427
  }
3979
4428
 
3980
4429
  .e-pv-properties-form-field-font-align {
4430
+ background: $pv-form-field-property-font-style-color;
4431
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'Material3') {
4432
+ border-radius: 4px;
4433
+ }
4434
+ @else {
4435
+ border-radius: 2px;
4436
+ }
4437
+ display: flex;
4438
+ height: 36px;
4439
+ justify-content: space-evenly;
4440
+ margin-right: 15px;
4441
+ width: 120px;
4442
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
4443
+ align-items: center;
4444
+ border: 1px solid $border-light;
4445
+ height: 32px;
4446
+ }
4447
+ @if ($skin-name == 'FluentUI') {
4448
+ border: 1px solid $border;
4449
+ }
4450
+ @if ($skin-name == 'Material3') {
4451
+ align-items: center;
4452
+ height: 32px;
4453
+ width: 96px;
4454
+ padding-top: 8px;
4455
+ border: 1px solid $transparent;
4456
+ }
4457
+ }
4458
+
4459
+ .e-bigger .e-pv-properties-form-field-font-style {
3981
4460
  background: $pv-form-field-property-font-style-color;
3982
4461
  @if ($skin-name == 'bootstrap5') {
3983
4462
  border-radius: 4px;
@@ -3988,6 +4467,40 @@
3988
4467
  display: flex;
3989
4468
  height: 36px;
3990
4469
  justify-content: space-evenly;
4470
+ width: 154px;
4471
+ @if ($skin-name == 'bootstrap5') {
4472
+ align-items: center;
4473
+ border: 1px solid $border-light;
4474
+ height: 32px;
4475
+ width: 163px;
4476
+ }
4477
+ @if ($skin-name == 'FluentUI') {
4478
+ align-items: center;
4479
+ border: 1px solid $border;
4480
+ height: 32px;
4481
+ width: 163px;
4482
+ }
4483
+ @if ($skin-name == 'Material3') {
4484
+ align-items: center;
4485
+ border-bottom: 1px solid $transparent;
4486
+ height: 32px;
4487
+ width: 128px;
4488
+ padding-left: 8px;
4489
+ padding-top: 20px;
4490
+ }
4491
+ }
4492
+
4493
+ .e-bigger .e-pv-properties-form-field-font-align {
4494
+ background: $pv-form-field-property-font-style-color;
4495
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'Material3') {
4496
+ border-radius: 4px;
4497
+ }
4498
+ @else {
4499
+ border-radius: 2px;
4500
+ }
4501
+ display: flex;
4502
+ height: 36px;
4503
+ justify-content: space-evenly;
3991
4504
  margin-right: 15px;
3992
4505
  width: 120px;
3993
4506
  @if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
@@ -3998,6 +4511,13 @@
3998
4511
  @if ($skin-name == 'FluentUI') {
3999
4512
  border: 1px solid $border;
4000
4513
  }
4514
+ @if ($skin-name == 'Material3') {
4515
+ align-items: center;
4516
+ height: 32px;
4517
+ width: 96px;
4518
+ border: 1px solid $transparent;
4519
+ padding-top: 20px;
4520
+ }
4001
4521
  }
4002
4522
 
4003
4523
  .e-pv-properties-formfield-label {
@@ -4019,6 +4539,13 @@
4019
4539
  }
4020
4540
  height: $pv-form-field-property-general-header-line-height;
4021
4541
  line-height: $pv-form-field-property-general-header-line-height;
4542
+ @if ($skin-name == 'Material3') {
4543
+ font-size: $text-xxs;
4544
+ font-weight: $font-weight-normal;
4545
+ line-height: 12px;
4546
+ height: 12px;
4547
+ font-family: $font-family;
4548
+ }
4022
4549
  }
4023
4550
 
4024
4551
  .e-pv-formfield-maxlength .e-input-group.e-control-wrapper .e-input-group-icon {
@@ -4030,6 +4557,9 @@
4030
4557
  }
4031
4558
 
4032
4559
  .e-bigger .e-pv-properties-form-field-window {
4560
+ @if $skin-name == 'Material3' {
4561
+ height: 565px;
4562
+ }
4033
4563
  @if ($skin-name == 'FluentUI') {
4034
4564
  height: 585px;
4035
4565
  }
@@ -4045,6 +4575,18 @@
4045
4575
  width: $pv-properties-header-spliter-width;
4046
4576
  }
4047
4577
 
4578
+ .e-bigger .e-pv-properties-header-spliter {
4579
+ @if $skin-name == 'Material3'{
4580
+ border-bottom-color: $pv-properties-header-spliter-border-bottom-color;
4581
+ border-bottom-style: $pv-properties-header-spliter-border-bottom-style;
4582
+ border-bottom-width: $pv-properties-header-spliter-border-bottom-width;
4583
+ left: $pv-properties-header-spliter-left;
4584
+ padding-top: 48px;
4585
+ position: $pv-properties-header-spliter-position;
4586
+ width: $pv-properties-header-spliter-width;
4587
+ }
4588
+ }
4589
+
4048
4590
  .e-pv-properties-bottom-spliter {
4049
4591
  border-bottom-color: $pv-properties-header-spliter-border-bottom-color;
4050
4592
  border-bottom-style: $pv-properties-header-spliter-border-bottom-style;
@@ -4053,6 +4595,11 @@
4053
4595
  margin-bottom: $pv-properties-header-spliter-margin-bottom;
4054
4596
  padding-top: $pv-properties-header-spliter-margin-bottom;
4055
4597
  width: $pv-properties-header-spliter-width;
4598
+ @if ($skin-name == 'Material3'){
4599
+ margin-bottom: 0;
4600
+ padding-top: 0;
4601
+ border-width: 0;
4602
+ }
4056
4603
  }
4057
4604
 
4058
4605
  .e-pv-formfield-textcolor-icon .e-btn-icon.e-icons,
@@ -4104,20 +4651,20 @@
4104
4651
 
4105
4652
  .e-dialog.e-pv-signature-dialog-height {
4106
4653
  height: $pv-signature-dialog-height;
4107
- @if ($skin-name == 'FluentUI') {
4654
+ @if ($skin-name == 'FluentUI' or $skin-name == 'Material3') {
4108
4655
  min-height: $pv-signature-dialog-height;
4109
4656
  }
4110
4657
  }
4111
4658
 
4112
4659
  .e-bigger .e-dialog.e-pv-signature-dialog-height {
4113
- @if ($skin-name == 'FluentUI') {
4660
+ @if ($skin-name == 'FluentUI' or $skin-name == 'Material3') {
4114
4661
  height: 627px;
4115
4662
  min-height: 591px;
4116
4663
  }
4117
4664
  }
4118
4665
 
4119
4666
  .e-bigger .e-pv-signature-dialog-height {
4120
- @if ($skin-name == 'FluentUI') {
4667
+ @if ($skin-name == 'FluentUI' $skin-name == 'Material3') {
4121
4668
  min-height: 592px;
4122
4669
  }
4123
4670
  }
@@ -4127,6 +4674,15 @@
4127
4674
  @if ($skin-name == 'FluentUI') {
4128
4675
  min-height: $pv-signature-dialog-height;
4129
4676
  }
4677
+ @if ($skin-name == 'Material3') {
4678
+ min-height: $pv-signature-dialog-blazor-height;
4679
+ }
4680
+ }
4681
+
4682
+ .e-bigger .e-dialog.e-pv-signature-dialog-blazor-height {
4683
+ @if ($skin-name == 'Material3') {
4684
+ min-height: 590px;
4685
+ }
4130
4686
  }
4131
4687
 
4132
4688
  .e-pv-handwritten-signature-canvas {
@@ -4143,6 +4699,10 @@
4143
4699
  @if $skin-name == 'FluentUI' {
4144
4700
  max-width: $pv-canvas-sign-width;
4145
4701
  }
4702
+ @if $skin-name == 'Material3' {
4703
+ width: 100%;
4704
+ max-width: $pv-canvas-sign-width;
4705
+ }
4146
4706
  }
4147
4707
 
4148
4708
  .e-pv-canvas-signature-blazor {
@@ -4151,6 +4711,9 @@
4151
4711
 
4152
4712
  .e-pv-font-appearance-style {
4153
4713
  padding: $pv-font-div-padding;
4714
+ @if $skin-name == 'Material3' {
4715
+ max-width: $pv-canvas-sign-width;
4716
+ }
4154
4717
  }
4155
4718
 
4156
4719
  .e-pv-font-appearance-style-blazor {
@@ -4166,4 +4729,11 @@
4166
4729
  .e-pv-toolbar-tooltip {
4167
4730
  pointer-events: none;
4168
4731
  }
4732
+
4733
+ .e-pdfviewer .e-dropdown-btn,
4734
+ .e-pdfviewer .e-dropdown-btn.e-btn {
4735
+ @if ($skin-name == 'Material3') {
4736
+ box-shadow: none;
4737
+ }
4738
+ }
4169
4739
  }