@syncfusion/ej2-react-pdfviewer 19.2.60 → 19.3.45
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/CHANGELOG.md +7 -56
- package/dist/ej2-react-pdfviewer.umd.min.js +1 -1
- package/package.json +8 -8
- package/styles/bootstrap-dark.css +148 -40
- package/styles/bootstrap.css +148 -40
- package/styles/bootstrap4.css +167 -46
- package/styles/bootstrap5-dark.css +3510 -0
- package/styles/bootstrap5-dark.scss +1 -0
- package/styles/bootstrap5.css +3510 -0
- package/styles/bootstrap5.scss +1 -0
- package/styles/fabric-dark.css +150 -42
- package/styles/fabric.css +150 -41
- package/styles/highcontrast-light.css +146 -38
- package/styles/highcontrast.css +152 -39
- package/styles/material-dark.css +155 -47
- package/styles/material.css +153 -40
- package/styles/pdfviewer/bootstrap-dark.css +148 -40
- package/styles/pdfviewer/bootstrap.css +148 -40
- package/styles/pdfviewer/bootstrap4.css +167 -46
- package/styles/pdfviewer/bootstrap5-dark.css +3510 -0
- package/styles/pdfviewer/bootstrap5-dark.scss +1 -0
- package/styles/pdfviewer/bootstrap5.css +3510 -0
- package/styles/pdfviewer/bootstrap5.scss +1 -0
- package/styles/pdfviewer/fabric-dark.css +150 -42
- package/styles/pdfviewer/fabric.css +150 -41
- package/styles/pdfviewer/highcontrast-light.css +146 -38
- package/styles/pdfviewer/highcontrast.css +152 -39
- package/styles/pdfviewer/material-dark.css +155 -47
- package/styles/pdfviewer/material.css +153 -40
- package/styles/pdfviewer/tailwind-dark.css +306 -170
- package/styles/pdfviewer/tailwind.css +313 -177
- package/styles/tailwind-dark.css +306 -170
- package/styles/tailwind.css +313 -177
package/styles/bootstrap.css
CHANGED
|
@@ -288,6 +288,11 @@
|
|
|
288
288
|
font-family: 'e-icons';
|
|
289
289
|
}
|
|
290
290
|
|
|
291
|
+
.e-pv-property-icon::before {
|
|
292
|
+
content: '\e199';
|
|
293
|
+
font-family: 'e-icons';
|
|
294
|
+
}
|
|
295
|
+
|
|
291
296
|
.e-pv-comment-selection-icon::before {
|
|
292
297
|
color: #333;
|
|
293
298
|
content: '\e680';
|
|
@@ -691,6 +696,14 @@
|
|
|
691
696
|
font-size: 16px;
|
|
692
697
|
}
|
|
693
698
|
|
|
699
|
+
.e-pv-annotation-ink-container .e-pv-inkannotation-icon {
|
|
700
|
+
font-size: 16px;
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
.e-pv-annotation-handwritten-container .e-pv-handwritten-icon.e-btn-icon:not(.e-caret) {
|
|
704
|
+
font-size: 16px;
|
|
705
|
+
}
|
|
706
|
+
|
|
694
707
|
.e-pv-mobilescroll-container {
|
|
695
708
|
background-color: #e6e6e6;
|
|
696
709
|
border: 1px solid #d4d4d4;
|
|
@@ -962,7 +975,9 @@
|
|
|
962
975
|
}
|
|
963
976
|
|
|
964
977
|
.e-pv-zoom-drop-down.e-input-group.e-control-wrapper.e-ddl:not(.e-error),
|
|
965
|
-
.e-pv-prop-dropdown.e-input-group.e-control-wrapper.e-ddl:not(.e-error)
|
|
978
|
+
.e-pv-prop-dropdown.e-input-group.e-control-wrapper.e-ddl:not(.e-error),
|
|
979
|
+
.e-pv-zoom-drop-down-rtl.e-input-group.e-control-wrapper.e-ddl:not(.e-error),
|
|
980
|
+
.e-pv-prop-dropdown-rtl.e-input-group.e-control-wrapper.e-ddl:not(.e-error) {
|
|
966
981
|
background-color: transparent;
|
|
967
982
|
border: 1px solid #f8f8f8;
|
|
968
983
|
height: inherit;
|
|
@@ -971,19 +986,25 @@
|
|
|
971
986
|
}
|
|
972
987
|
|
|
973
988
|
.e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
|
|
974
|
-
.e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error)
|
|
989
|
+
.e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
|
|
990
|
+
.e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
|
|
991
|
+
.e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error) {
|
|
975
992
|
background-color: transparent;
|
|
976
993
|
border: 1px solid #adadad;
|
|
977
994
|
border-radius: 2px;
|
|
978
995
|
}
|
|
979
996
|
|
|
980
997
|
.e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl.e-input-focus .e-search-icon.e-ddl-icon,
|
|
981
|
-
.e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-input-focus .e-search-icon.e-ddl-icon
|
|
998
|
+
.e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-input-focus .e-search-icon.e-ddl-icon,
|
|
999
|
+
.e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl.e-input-focus .e-search-icon.e-ddl-icon,
|
|
1000
|
+
.e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl.e-input-focus .e-search-icon.e-ddl-icon {
|
|
982
1001
|
color: inherit;
|
|
983
1002
|
}
|
|
984
1003
|
|
|
985
1004
|
.e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl .e-input.e-control.e-keyboard,
|
|
986
|
-
.e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl .e-input.e-control.e-keyboard
|
|
1005
|
+
.e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl .e-input.e-control.e-keyboard,
|
|
1006
|
+
.e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl .e-input.e-control.e-keyboard,
|
|
1007
|
+
.e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl .e-input.e-control.e-keyboard {
|
|
987
1008
|
height: inherit;
|
|
988
1009
|
margin-top: -1px;
|
|
989
1010
|
padding-bottom: 0;
|
|
@@ -991,17 +1012,23 @@
|
|
|
991
1012
|
}
|
|
992
1013
|
|
|
993
1014
|
.e-pv-toolbar:not(.e-rtl) .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl .e-input.e-control.e-keyboard,
|
|
994
|
-
.e-pv-toolbar:not(.e-rtl) .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl .e-input.e-control.e-keyboard
|
|
1015
|
+
.e-pv-toolbar:not(.e-rtl) .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl .e-input.e-control.e-keyboard,
|
|
1016
|
+
.e-pv-toolbar:not(.e-rtl) .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl .e-input.e-control.e-keyboard,
|
|
1017
|
+
.e-pv-toolbar:not(.e-rtl) .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl .e-input.e-control.e-keyboard {
|
|
995
1018
|
padding-left: 0;
|
|
996
1019
|
}
|
|
997
1020
|
|
|
998
1021
|
.e-pv-toolbar.e-rtl .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl .e-input.e-control.e-keyboard,
|
|
999
|
-
.e-pv-toolbar.e-rtl .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl .e-input.e-control.e-keyboard
|
|
1022
|
+
.e-pv-toolbar.e-rtl .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl .e-input.e-control.e-keyboard,
|
|
1023
|
+
.e-pv-toolbar.e-rtl .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl .e-input.e-control.e-keyboard,
|
|
1024
|
+
.e-pv-toolbar.e-rtl .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl .e-input.e-control.e-keyboard {
|
|
1000
1025
|
padding-right: 0;
|
|
1001
1026
|
}
|
|
1002
1027
|
|
|
1003
1028
|
.e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl .e-search-icon.e-ddl-icon,
|
|
1004
|
-
.e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl .e-search-icon.e-ddl-icon
|
|
1029
|
+
.e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl .e-search-icon.e-ddl-icon,
|
|
1030
|
+
.e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl .e-search-icon.e-ddl-icon,
|
|
1031
|
+
.e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl .e-search-icon.e-ddl-icon {
|
|
1005
1032
|
background-color: transparent;
|
|
1006
1033
|
border-left: 0;
|
|
1007
1034
|
margin-bottom: 0;
|
|
@@ -1012,7 +1039,9 @@
|
|
|
1012
1039
|
|
|
1013
1040
|
.e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl .e-input.e-control,
|
|
1014
1041
|
.e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl .e-input.e-control,
|
|
1015
|
-
.e-input-group.e-control-wrapper.e-pv-current-page-box .e-numerictextbox.e-input
|
|
1042
|
+
.e-input-group.e-control-wrapper.e-pv-current-page-box .e-numerictextbox.e-input,
|
|
1043
|
+
.e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl .e-input.e-control,
|
|
1044
|
+
.e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl .e-input.e-control {
|
|
1016
1045
|
text-align: center;
|
|
1017
1046
|
}
|
|
1018
1047
|
|
|
@@ -1021,12 +1050,18 @@
|
|
|
1021
1050
|
text-align: left;
|
|
1022
1051
|
}
|
|
1023
1052
|
|
|
1024
|
-
.e-pv-zoom-drop-down.e-
|
|
1025
|
-
.e-pv-prop-dropdown.e-
|
|
1053
|
+
.e-pv-zoom-drop-down-rtl.e-ddl.e-popup.e-popup-open,
|
|
1054
|
+
.e-pv-prop-dropdown-rtl.e-ddl.e-popup.e-popup-open {
|
|
1055
|
+
text-align: right;
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1058
|
+
.e-pv-zoom-drop-down.e-popup.e-popup-open .e-dropdownbase .e-list-item.e-active .e-pv-prop-dropdown.e-popup.e-popup-open .e-dropdownbase .e-list-item.e-active,
|
|
1059
|
+
.e-pv-zoom-drop-down-rtl.e-popup.e-popup-open .e-dropdownbase .e-list-item.e-active .e-pv-prop-dropdown-rtl.e-popup.e-popup-open .e-dropdownbase .e-list-item.e-active {
|
|
1026
1060
|
color: #fff;
|
|
1027
1061
|
}
|
|
1028
1062
|
|
|
1029
|
-
.e-pv-zoom-drop-down.e-popup.e-popup-open
|
|
1063
|
+
.e-pv-zoom-drop-down.e-popup.e-popup-open,
|
|
1064
|
+
.e-pv-zoom-drop-down-rtl.e-popup.e-popup-open {
|
|
1030
1065
|
min-height: 236px;
|
|
1031
1066
|
min-width: 122px;
|
|
1032
1067
|
}
|
|
@@ -1036,6 +1071,11 @@
|
|
|
1036
1071
|
border-radius: 2px;
|
|
1037
1072
|
}
|
|
1038
1073
|
|
|
1074
|
+
.e-pv-zoom-drop-down.e-ddl.e-valid-input.e-input-focus,
|
|
1075
|
+
.e-pv-zoom-drop-down-rtl.e-ddl.e-valid-input.e-input-focus {
|
|
1076
|
+
box-shadow: none;
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1039
1079
|
.e-pv-password-popup.e-dialog .e-dlg-header,
|
|
1040
1080
|
.e-pv-corrupted-popup.e-dialog .e-pv-corrupted-popup-header,
|
|
1041
1081
|
.e-pv-notification-popup.e-dialog .e-dlg-header {
|
|
@@ -1109,7 +1149,9 @@
|
|
|
1109
1149
|
}
|
|
1110
1150
|
|
|
1111
1151
|
.e-pv-zoom-drop-down.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before,
|
|
1112
|
-
.e-pv-prop-dropdown.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before
|
|
1152
|
+
.e-pv-prop-dropdown.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before,
|
|
1153
|
+
.e-pv-zoom-drop-down-rtl.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before,
|
|
1154
|
+
.e-pv-prop-dropdown-rtl.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before {
|
|
1113
1155
|
transform: rotate(0deg);
|
|
1114
1156
|
}
|
|
1115
1157
|
|
|
@@ -1124,7 +1166,15 @@
|
|
|
1124
1166
|
.e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl::after,
|
|
1125
1167
|
.e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl::before,
|
|
1126
1168
|
.e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-input-focus::after,
|
|
1127
|
-
.e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-input-focus::before
|
|
1169
|
+
.e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-input-focus::before,
|
|
1170
|
+
.e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl::after,
|
|
1171
|
+
.e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl::before,
|
|
1172
|
+
.e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl.e-input-focus::after,
|
|
1173
|
+
.e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl.e-input-focus::before,
|
|
1174
|
+
.e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl::after,
|
|
1175
|
+
.e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl::before,
|
|
1176
|
+
.e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl.e-input-focus::after,
|
|
1177
|
+
.e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl.e-input-focus::before {
|
|
1128
1178
|
background: none;
|
|
1129
1179
|
}
|
|
1130
1180
|
|
|
@@ -1184,6 +1234,8 @@
|
|
|
1184
1234
|
|
|
1185
1235
|
.e-pv-sidebar-title-container {
|
|
1186
1236
|
background: #f8f8f8;
|
|
1237
|
+
border: 1px solid #ccc;
|
|
1238
|
+
border-width: 0 0 0 0;
|
|
1187
1239
|
height: 50px;
|
|
1188
1240
|
position: absolute;
|
|
1189
1241
|
top: 0;
|
|
@@ -1495,9 +1547,7 @@ div > .e-pv-bookmark-icon.e-pv-icon {
|
|
|
1495
1547
|
.e-pv-shapes-toolbar .e-pv-tbar-btn,
|
|
1496
1548
|
.e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused,
|
|
1497
1549
|
.e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item .e-menu-icon,
|
|
1498
|
-
.e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item .e-caret
|
|
1499
|
-
.e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused .e-menu-icon,
|
|
1500
|
-
.e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused .e-caret {
|
|
1550
|
+
.e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item .e-caret {
|
|
1501
1551
|
color: #333;
|
|
1502
1552
|
}
|
|
1503
1553
|
|
|
@@ -1722,6 +1772,11 @@ div > .e-pv-bookmark-icon.e-pv-icon {
|
|
|
1722
1772
|
vertical-align: initial;
|
|
1723
1773
|
}
|
|
1724
1774
|
|
|
1775
|
+
.e-pv-custom-annotation-thickness-container .e-btn-icon.e-pv-annotation-thickness-icon.e-pv-icon {
|
|
1776
|
+
padding-top: 7px;
|
|
1777
|
+
vertical-align: initial;
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1725
1780
|
.e-pv-annotation-opacity-popup-container,
|
|
1726
1781
|
.e-pv-annotation-thickness-popup-container {
|
|
1727
1782
|
box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.26);
|
|
@@ -1774,6 +1829,7 @@ div > .e-pv-bookmark-icon.e-pv-icon {
|
|
|
1774
1829
|
.e-pv-annotation-color-container,
|
|
1775
1830
|
.e-pv-annotation-opacity-container,
|
|
1776
1831
|
.e-pv-annotation-stroke-container,
|
|
1832
|
+
.e-pv-custom-annotation-thickness-container,
|
|
1777
1833
|
.e-pv-annotation-thickness-container,
|
|
1778
1834
|
.e-pv-annotation-textcolor-container,
|
|
1779
1835
|
.e-pv-annotation-textalign-container,
|
|
@@ -1839,6 +1895,7 @@ div > .e-pv-bookmark-icon.e-pv-icon {
|
|
|
1839
1895
|
.e-pv-annotation-textprop-container.e-btn:hover,
|
|
1840
1896
|
.e-pv-annotation-handwritten-container.e-btn:hover,
|
|
1841
1897
|
.e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-valid-input:hover,
|
|
1898
|
+
.e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl.e-valid-input:hover,
|
|
1842
1899
|
.e-pv-stamp.e-menu-wrapper ul .e-menu-item.e-focused:hover {
|
|
1843
1900
|
background-color: #e6e6e6;
|
|
1844
1901
|
border-color: #adadad;
|
|
@@ -1871,6 +1928,7 @@ div > .e-pv-bookmark-icon.e-pv-icon {
|
|
|
1871
1928
|
.e-pv-annotation-color-container.e-dropdown-btn.e-btn,
|
|
1872
1929
|
.e-pv-annotation-opacity-container.e-dropdown-btn.e-btn,
|
|
1873
1930
|
.e-pv-annotation-stroke-container.e-dropdown-btn.e-btn,
|
|
1931
|
+
.e-pv-custom-annotation-thickness-container.e-dropdown-btn.e-btn,
|
|
1874
1932
|
.e-pv-annotation-thickness-container.e-dropdown-btn.e-btn,
|
|
1875
1933
|
.e-pv-annotation-textcolor-container.e-dropdown-btn.e-btn,
|
|
1876
1934
|
.e-pv-annotation-textalign-container.e-dropdown-btn.e-btn,
|
|
@@ -1879,6 +1937,28 @@ div > .e-pv-bookmark-icon.e-pv-icon {
|
|
|
1879
1937
|
padding: 7px 8px;
|
|
1880
1938
|
}
|
|
1881
1939
|
|
|
1940
|
+
.e-pv-annotation-color-container.e-dropdown-btn.e-button,
|
|
1941
|
+
.e-pv-annotation-opacity-container.e-dropdown-btn.e-button,
|
|
1942
|
+
.e-pv-annotation-stroke-container.e-dropdown-btn.e-button,
|
|
1943
|
+
.e-pv-custom-annotation-thickness-container.e-dropdown-btn.e-button,
|
|
1944
|
+
.e-pv-annotation-thickness-container.e-dropdown-btn.e-bbuttontn,
|
|
1945
|
+
.e-pv-annotation-textcolor-container.e-dropdown-btn.e-button,
|
|
1946
|
+
.e-pv-annotation-textalign-container.e-dropdown-btn.e-button,
|
|
1947
|
+
.e-pv-annotation-textprop-container.e-dropdown-btn.e-button {
|
|
1948
|
+
line-height: 16px;
|
|
1949
|
+
padding: 7px 8px;
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1952
|
+
.e-pv-toolbar.e-toolbar.e-toolpop .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn-text.e-pv-submitform-text {
|
|
1953
|
+
display: inline-block;
|
|
1954
|
+
padding: 0 4px;
|
|
1955
|
+
}
|
|
1956
|
+
|
|
1957
|
+
.e-pv-toolbar.e-toolbar.e-toolpop .e-toolbar-items .e-toolbar-item.e-pv-submit .e-tbar-btn .e-tbar-btn-text.e-pv-submitform-text {
|
|
1958
|
+
display: inline-block;
|
|
1959
|
+
padding: 0 4px;
|
|
1960
|
+
}
|
|
1961
|
+
|
|
1882
1962
|
.e-pv-mobile-toolbar .e-toolbar-items .e-toolbar-item .e-btn.e-tbar-btn,
|
|
1883
1963
|
.e-pv-nav-toolbar .e-toolbar-items .e-toolbar-item .e-btn.e-tbar-btn {
|
|
1884
1964
|
height: 36px;
|
|
@@ -2095,13 +2175,13 @@ div > .e-pv-bookmark-icon.e-pv-icon {
|
|
|
2095
2175
|
.e-pv-annotation-shapes-container.e-btn.e-icon-btn,
|
|
2096
2176
|
.e-pv-annotation-calibrate-container.e-btn.e-icon-btn,
|
|
2097
2177
|
.e-pv-annotation-handwritten-container.e-btn.e-icon-btn {
|
|
2098
|
-
padding
|
|
2178
|
+
padding: 1px 8px 3px;
|
|
2099
2179
|
}
|
|
2100
2180
|
|
|
2101
2181
|
.e-pv-annotation-shape-icon,
|
|
2102
2182
|
.e-pv-annotation-calibrate-icon,
|
|
2103
2183
|
.e-pv-handwritten-icon {
|
|
2104
|
-
margin-right:
|
|
2184
|
+
margin-right: 4px;
|
|
2105
2185
|
}
|
|
2106
2186
|
|
|
2107
2187
|
.e-pv-properties-opacity-indicator {
|
|
@@ -2184,7 +2264,9 @@ div > .e-pv-bookmark-icon.e-pv-icon {
|
|
|
2184
2264
|
}
|
|
2185
2265
|
|
|
2186
2266
|
.e-bigger .e-pv-toolbar.e-rtl .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl input.e-input.e-control.e-keyboard,
|
|
2187
|
-
.e-bigger .e-pv-toolbar.e-rtl .e-input-group.e-control-wrapper
|
|
2267
|
+
.e-bigger .e-pv-toolbar.e-rtl .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl input.e-input.e-control.e-keyboard,
|
|
2268
|
+
.e-bigger .e-pv-toolbar.e-rtl .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl input.e-input.e-control.e-keyboard,
|
|
2269
|
+
.e-bigger .e-pv-toolbar.e-rtl .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl input.e-input.e-control.e-keyboard {
|
|
2188
2270
|
padding-left: 0;
|
|
2189
2271
|
padding-right: 12px;
|
|
2190
2272
|
}
|
|
@@ -2481,6 +2563,7 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2481
2563
|
}
|
|
2482
2564
|
|
|
2483
2565
|
.e-menu-icon.e-pv-stamp-icon.e-pv-icon {
|
|
2566
|
+
margin-top: 0;
|
|
2484
2567
|
padding-left: 7px;
|
|
2485
2568
|
}
|
|
2486
2569
|
|
|
@@ -2528,7 +2611,7 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2528
2611
|
.e-pdfviewer .e-pv-accordion-container.e-accordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header,
|
|
2529
2612
|
.e-pdfviewer .e-pv-accordion-container.e-accordion .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header {
|
|
2530
2613
|
background: #f8f8f8;
|
|
2531
|
-
border: #adadad;
|
|
2614
|
+
border: 1px solid #adadad;
|
|
2532
2615
|
}
|
|
2533
2616
|
|
|
2534
2617
|
.e-pdfviewer .e-pv-accordion-container.e-accordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header .e-acrdn-header-icon,
|
|
@@ -2549,6 +2632,7 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2549
2632
|
|
|
2550
2633
|
.e-pdfviewer .e-pv-signature-apperance .e-checkbox-wrapper {
|
|
2551
2634
|
margin-top: 10px;
|
|
2635
|
+
padding-bottom: 1px;
|
|
2552
2636
|
}
|
|
2553
2637
|
|
|
2554
2638
|
.e-pdfviewer .e-pv-signature-window .e-footer-content .e-pv-clearbtn {
|
|
@@ -2608,32 +2692,25 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2608
2692
|
border-radius: 5px;
|
|
2609
2693
|
display: inline-block;
|
|
2610
2694
|
font-size: 13px;
|
|
2611
|
-
height:
|
|
2612
|
-
margin
|
|
2613
|
-
margin-left: 20px;
|
|
2614
|
-
margin-right: 15px;
|
|
2615
|
-
margin-top: 25px;
|
|
2695
|
+
height: 88px;
|
|
2696
|
+
margin: 15px;
|
|
2616
2697
|
padding-top: 40px;
|
|
2617
2698
|
text-align: center;
|
|
2618
|
-
width:
|
|
2699
|
+
width: 311px;
|
|
2619
2700
|
word-wrap: break-word;
|
|
2620
2701
|
}
|
|
2621
2702
|
|
|
2622
|
-
.e-pv-
|
|
2623
|
-
.e-pv-custom-annotation-stamp-container.e-menu-container ul .e-menu-item .e-menu-icon,
|
|
2624
|
-
.e-pv-custom-annotation-stamp-container.e-menu-container ul .e-menu-item .e-caret,
|
|
2625
|
-
.e-pv-custom-annotation-stamp-container.e-menu-container ul .e-menu-item.e-focused .e-menu-icon,
|
|
2626
|
-
.e-pv-custom-annotation-stamp-container.e-menu-container ul .e-menu-item.e-focused .e-caret {
|
|
2703
|
+
.e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item.e-focused {
|
|
2627
2704
|
color: #333;
|
|
2628
2705
|
}
|
|
2629
2706
|
|
|
2630
|
-
.e-pv-
|
|
2631
|
-
.e-pv-
|
|
2632
|
-
|
|
2633
|
-
|
|
2707
|
+
.e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item,
|
|
2708
|
+
.e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item .e-menu-icon,
|
|
2709
|
+
.e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item .e-caret {
|
|
2710
|
+
color: #333;
|
|
2634
2711
|
}
|
|
2635
2712
|
|
|
2636
|
-
.e-pv-
|
|
2713
|
+
.e-pv-stamp-template-container .e-menu-container .e-menu {
|
|
2637
2714
|
background-color: #f8f8f8;
|
|
2638
2715
|
border-color: transparent;
|
|
2639
2716
|
}
|
|
@@ -2752,13 +2829,19 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2752
2829
|
.e-pv-properties-font-items-container {
|
|
2753
2830
|
display: -ms-flexbox;
|
|
2754
2831
|
display: flex;
|
|
2832
|
+
-ms-flex-pack: space-evenly;
|
|
2833
|
+
justify-content: space-evenly;
|
|
2834
|
+
}
|
|
2835
|
+
|
|
2836
|
+
.e-pv-properties-form-field-name-main-div,
|
|
2837
|
+
.e-pv-properties-form-field-value-main-div {
|
|
2838
|
+
padding-right: 15px;
|
|
2755
2839
|
}
|
|
2756
2840
|
|
|
2757
2841
|
.e-pv-properties-form-field-name-main-div,
|
|
2758
2842
|
.e-pv-properties-form-field-tooltip-main-div,
|
|
2759
2843
|
.e-pv-properties-form-field-value-main-div,
|
|
2760
2844
|
.e-pv-properties-form-field-visibility-main-div {
|
|
2761
|
-
padding-right: 15px;
|
|
2762
2845
|
width: 285px;
|
|
2763
2846
|
}
|
|
2764
2847
|
|
|
@@ -2885,13 +2968,13 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2885
2968
|
.e-pv-properties-formfield-maxlength-text-label,
|
|
2886
2969
|
.e-pv-formfield-maxlength {
|
|
2887
2970
|
padding-left: 1px;
|
|
2888
|
-
width:
|
|
2971
|
+
width: 77px;
|
|
2889
2972
|
}
|
|
2890
2973
|
|
|
2891
2974
|
.e-pv-formfield-maxlength-group {
|
|
2892
2975
|
display: -ms-flexbox;
|
|
2893
2976
|
display: flex;
|
|
2894
|
-
padding-left:
|
|
2977
|
+
padding-left: 105px;
|
|
2895
2978
|
}
|
|
2896
2979
|
|
|
2897
2980
|
.e-pv-properties-form-field-list-add-div {
|
|
@@ -2959,6 +3042,7 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2959
3042
|
.e-pv-show-designer-name {
|
|
2960
3043
|
-ms-flex-align: center;
|
|
2961
3044
|
align-items: center;
|
|
3045
|
+
color: #000;
|
|
2962
3046
|
display: -ms-grid;
|
|
2963
3047
|
display: grid;
|
|
2964
3048
|
height: 100%;
|
|
@@ -2978,6 +3062,10 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2978
3062
|
background-color: #d3d3d3;
|
|
2979
3063
|
}
|
|
2980
3064
|
|
|
3065
|
+
.e-pv-formfield-li-element.e-pv-li-select {
|
|
3066
|
+
background-color: #d3d3d3;
|
|
3067
|
+
}
|
|
3068
|
+
|
|
2981
3069
|
.e-pv-formfield-li-element:hover {
|
|
2982
3070
|
background-color: #d3d3d3;
|
|
2983
3071
|
}
|
|
@@ -3064,7 +3152,7 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
3064
3152
|
line-height: 15px;
|
|
3065
3153
|
}
|
|
3066
3154
|
|
|
3067
|
-
.e-pv-formfield-maxlength.e-
|
|
3155
|
+
.e-pv-formfield-maxlength .e-input-group.e-control-wrapper .e-input-group-icon {
|
|
3068
3156
|
min-width: 18px;
|
|
3069
3157
|
}
|
|
3070
3158
|
|
|
@@ -3105,6 +3193,10 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
3105
3193
|
height: 565px;
|
|
3106
3194
|
}
|
|
3107
3195
|
|
|
3196
|
+
.e-pv-signature-dialog-blazor-height {
|
|
3197
|
+
height: 560px;
|
|
3198
|
+
}
|
|
3199
|
+
|
|
3108
3200
|
.e-pv-handwritten-signature-canvas {
|
|
3109
3201
|
height: 350px;
|
|
3110
3202
|
width: 718px;
|
|
@@ -3113,3 +3205,19 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
3113
3205
|
.e-pv-toolbar-scroll .e-toolbar-pop.e-popup-open {
|
|
3114
3206
|
overflow: auto;
|
|
3115
3207
|
}
|
|
3208
|
+
|
|
3209
|
+
.e-pv-canvas-signature {
|
|
3210
|
+
width: 718px;
|
|
3211
|
+
}
|
|
3212
|
+
|
|
3213
|
+
.e-pv-canvas-signature-blazor {
|
|
3214
|
+
width: 718px;
|
|
3215
|
+
}
|
|
3216
|
+
|
|
3217
|
+
.e-pv-font-appearance-style {
|
|
3218
|
+
padding: 15px;
|
|
3219
|
+
}
|
|
3220
|
+
|
|
3221
|
+
.e-pv-font-appearance-style-blazor {
|
|
3222
|
+
padding: 15px;
|
|
3223
|
+
}
|