@syncfusion/ej2-pdfviewer 17.3.56-4568 → 17.3.58-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/dist/ej2-pdfviewer.umd.min.js +1 -1
- package/dist/ej2-pdfviewer.umd.min.js.map +1 -1
- package/dist/es6/ej2-pdfviewer.es2015.js +5 -3
- package/dist/es6/ej2-pdfviewer.es2015.js.map +1 -1
- package/dist/es6/ej2-pdfviewer.es5.js +5 -3
- package/dist/es6/ej2-pdfviewer.es5.js.map +1 -1
- package/package.json +1 -1
- package/src/pdfviewer/magnification/magnification.js +1 -1
- package/src/pdfviewer/tagged-pdf/tagged-pdf.js +4 -2
- package/styles/bootstrap-dark.css +317 -5
- package/styles/bootstrap.css +319 -5
- package/styles/bootstrap4.css +334 -9
- package/styles/bootstrap5-dark.css +340 -10
- package/styles/bootstrap5.css +340 -10
- package/styles/fabric-dark.css +317 -5
- package/styles/fabric.css +319 -5
- package/styles/fluent-dark.css +328 -10
- package/styles/fluent.css +328 -10
- package/styles/highcontrast-light.css +317 -5
- package/styles/highcontrast.css +317 -5
- package/styles/material-dark.css +317 -5
- package/styles/material.css +317 -5
- package/styles/material3-dark.css +318 -6
- package/styles/material3.css +318 -6
- package/styles/pdfviewer/_bds-definition.scss +6 -0
- package/styles/pdfviewer/_bootstrap-dark-definition.scss +6 -0
- package/styles/pdfviewer/_bootstrap-definition.scss +6 -0
- package/styles/pdfviewer/_bootstrap4-definition.scss +6 -0
- package/styles/pdfviewer/_bootstrap5-definition.scss +8 -2
- package/styles/pdfviewer/_fabric-dark-definition.scss +6 -0
- package/styles/pdfviewer/_fabric-definition.scss +6 -0
- package/styles/pdfviewer/_fluent-definition.scss +7 -1
- package/styles/pdfviewer/_fluent2-definition.scss +549 -0
- package/styles/pdfviewer/_fusionnew-definition.scss +6 -0
- package/styles/pdfviewer/_highcontrast-definition.scss +6 -0
- package/styles/pdfviewer/_highcontrast-light-definition.scss +6 -0
- package/styles/pdfviewer/_material-dark-definition.scss +12 -6
- package/styles/pdfviewer/_material-definition.scss +11 -5
- package/styles/pdfviewer/_material3-definition.scss +7 -1
- package/styles/pdfviewer/_tailwind-definition.scss +8 -2
- package/styles/pdfviewer/_theme.scss +373 -10
- package/styles/pdfviewer/bootstrap-dark.css +317 -5
- package/styles/pdfviewer/bootstrap.css +319 -5
- package/styles/pdfviewer/bootstrap4.css +334 -9
- package/styles/pdfviewer/bootstrap5-dark.css +340 -10
- package/styles/pdfviewer/bootstrap5.css +340 -10
- package/styles/pdfviewer/fabric-dark.css +317 -5
- package/styles/pdfviewer/fabric.css +319 -5
- package/styles/pdfviewer/fluent-dark.css +328 -10
- package/styles/pdfviewer/fluent.css +328 -10
- package/styles/pdfviewer/highcontrast-light.css +317 -5
- package/styles/pdfviewer/highcontrast.css +317 -5
- package/styles/pdfviewer/icons/_bds.scss +511 -0
- package/styles/pdfviewer/icons/_bootstrap-dark.scss +22 -0
- package/styles/pdfviewer/icons/_bootstrap.scss +22 -0
- package/styles/pdfviewer/icons/_bootstrap4.scss +22 -0
- package/styles/pdfviewer/icons/_bootstrap5.scss +23 -1
- package/styles/pdfviewer/icons/_fabric-dark.scss +22 -0
- package/styles/pdfviewer/icons/_fabric.scss +22 -0
- package/styles/pdfviewer/icons/_fluent.scss +23 -1
- package/styles/pdfviewer/icons/_fusionnew.scss +23 -1
- package/styles/pdfviewer/icons/_highcontrast-light.scss +22 -0
- package/styles/pdfviewer/icons/_highcontrast.scss +22 -0
- package/styles/pdfviewer/icons/_material-dark.scss +22 -0
- package/styles/pdfviewer/icons/_material.scss +22 -0
- package/styles/pdfviewer/icons/_material3.scss +23 -1
- package/styles/pdfviewer/icons/_tailwind-dark.scss +22 -0
- package/styles/pdfviewer/icons/_tailwind.scss +22 -0
- package/styles/pdfviewer/material-dark.css +317 -5
- package/styles/pdfviewer/material.css +317 -5
- package/styles/pdfviewer/material3-dark.css +318 -6
- package/styles/pdfviewer/material3.css +318 -6
- package/styles/pdfviewer/tailwind-dark.css +319 -7
- package/styles/pdfviewer/tailwind.css +319 -7
- package/styles/tailwind-dark.css +319 -7
- package/styles/tailwind.css +319 -7
|
@@ -1,4 +1,46 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'sass:math';
|
|
2
|
+
$sm-mobile: 575.98;
|
|
3
|
+
$mobile: 767.98;
|
|
4
|
+
$tablet: 991.98;
|
|
5
|
+
$desktop: 1199.98;
|
|
6
|
+
$lg-desktop: 1399.98;
|
|
7
|
+
|
|
8
|
+
// Small mobiles (landscape phones, less than 576px)
|
|
9
|
+
@mixin sm-mobile() {
|
|
10
|
+
@media only screen and (max-width: ($sm-mobile * 1px)) {
|
|
11
|
+
@content;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
// Small devices (landscape phones, less than 768px)
|
|
16
|
+
@mixin mobile {
|
|
17
|
+
@media only screen and (max-width: ($mobile * 1px)) {
|
|
18
|
+
@content;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
// Medium devices (tablets, less than 992px)
|
|
23
|
+
@mixin tablet {
|
|
24
|
+
@media only screen and (max-width: ($tablet * 1px)) {
|
|
25
|
+
@content;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
// Large devices (desktops, less than 1200px)
|
|
30
|
+
@mixin desktop {
|
|
31
|
+
@media only screen and (max-width: ($desktop * 1px)) {
|
|
32
|
+
@content;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
// X-Large devices (large desktops, less than 1400px)
|
|
37
|
+
@mixin lg-desktop {
|
|
38
|
+
@media only screen and (max-width: ($lg-desktop * 1px)) {
|
|
39
|
+
@content;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
@include export-module('pdfviewer-theme') {
|
|
2
44
|
/* stylelint-disable value-no-vendor-prefix */
|
|
3
45
|
/* stylelint-disable property-no-vendor-prefix */
|
|
4
46
|
.e-pv-viewer-container {
|
|
@@ -249,6 +291,15 @@
|
|
|
249
291
|
}
|
|
250
292
|
}
|
|
251
293
|
|
|
294
|
+
.e-pv-image-container {
|
|
295
|
+
width: 100%;
|
|
296
|
+
height: 100%;
|
|
297
|
+
display: flex;
|
|
298
|
+
justify-content: center;
|
|
299
|
+
align-items: center;
|
|
300
|
+
padding: 3px;
|
|
301
|
+
}
|
|
302
|
+
|
|
252
303
|
.e-pv-gotopage-apply-btn.e-btn.e-flat.e-primary:disabled {
|
|
253
304
|
@if $skin-name != 'bootstrap4' {
|
|
254
305
|
background-color: transparent;
|
|
@@ -731,6 +782,10 @@
|
|
|
731
782
|
}
|
|
732
783
|
}
|
|
733
784
|
|
|
785
|
+
.e-dialog .e-dlg-header {
|
|
786
|
+
width: auto;
|
|
787
|
+
}
|
|
788
|
+
|
|
734
789
|
.e-pv-current-page-box.e-input-group.e-control-wrapper input.e-input {
|
|
735
790
|
max-height: $pv-current-page-height;
|
|
736
791
|
padding-bottom: $pv-current-page-padding-bottom;
|
|
@@ -1016,7 +1071,8 @@
|
|
|
1016
1071
|
}
|
|
1017
1072
|
}
|
|
1018
1073
|
|
|
1019
|
-
.e-pv-thumbnail-view-button.e-btn
|
|
1074
|
+
.e-pv-thumbnail-view-button.e-btn,
|
|
1075
|
+
.e-pv-organize-view-button.e-btn {
|
|
1020
1076
|
background: $pv-thumbnail-view-button-background;
|
|
1021
1077
|
border: $pv-thumbnail-view-button-border;
|
|
1022
1078
|
border-radius: $pv-thumbnail-border-radius;
|
|
@@ -1040,7 +1096,241 @@
|
|
|
1040
1096
|
}
|
|
1041
1097
|
}
|
|
1042
1098
|
|
|
1043
|
-
.e-
|
|
1099
|
+
.e-pv-organize-tile.e-pv-thumbnail-column {
|
|
1100
|
+
width: 100%;
|
|
1101
|
+
height: 100%;
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
.e-pv-organize-content-apperance{
|
|
1105
|
+
overflow: hidden;
|
|
1106
|
+
}
|
|
1107
|
+
.e-pv-organize-tile-view.e-pv-thumbnail-row {
|
|
1108
|
+
display: flex;
|
|
1109
|
+
justify-content: center;
|
|
1110
|
+
flex-wrap: wrap;
|
|
1111
|
+
overflow: auto;
|
|
1112
|
+
overflow-x: hidden;
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
.e-pv-organize-anchor-node {
|
|
1116
|
+
border: $pv-organize-anchor-node-border;
|
|
1117
|
+
margin: 24px;
|
|
1118
|
+
width: 140px;
|
|
1119
|
+
height: 140px;
|
|
1120
|
+
|
|
1121
|
+
@include lg-desktop {
|
|
1122
|
+
width: 140px;
|
|
1123
|
+
height: 140px;
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
@include desktop {
|
|
1127
|
+
width: 140px;
|
|
1128
|
+
height: 140px;
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
@include tablet {
|
|
1132
|
+
width: 140px;
|
|
1133
|
+
height: 140px;
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
@include mobile {
|
|
1137
|
+
width: 140px;
|
|
1138
|
+
height: 140px;
|
|
1139
|
+
min-width: 140px;
|
|
1140
|
+
min-height: 140px;
|
|
1141
|
+
}
|
|
1142
|
+
|
|
1143
|
+
@include sm-mobile {
|
|
1144
|
+
width: 140px;
|
|
1145
|
+
height: 140px;
|
|
1146
|
+
min-width: 140px;
|
|
1147
|
+
min-height: 140px;
|
|
1148
|
+
margin: 24px 20px;
|
|
1149
|
+
}
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
.e-pdfviewer .e-pv-organize-tile.e-pv-thumbnail-column .e-checkbox-wrapper {
|
|
1153
|
+
width: 100%;
|
|
1154
|
+
height: 100%;
|
|
1155
|
+
position: relative;
|
|
1156
|
+
top: -100%;
|
|
1157
|
+
padding: 4px;
|
|
1158
|
+
}
|
|
1159
|
+
|
|
1160
|
+
@media screen and (max-width: 480px) {
|
|
1161
|
+
.e-pdfviewer .e-pv-organize-tile.e-pv-thumbnail-column .e-checkbox-wrapper {
|
|
1162
|
+
width: 100%;
|
|
1163
|
+
height: 100%;
|
|
1164
|
+
position: relative;
|
|
1165
|
+
top: -100%;
|
|
1166
|
+
padding: 4px;
|
|
1167
|
+
}
|
|
1168
|
+
}
|
|
1169
|
+
|
|
1170
|
+
.e-pv-organize-buttondiv {
|
|
1171
|
+
justify-content: center;
|
|
1172
|
+
flex-wrap: nowrap;
|
|
1173
|
+
position: relative;
|
|
1174
|
+
text-align: center;
|
|
1175
|
+
top: calc(-100% - 12px + ($pv-organize-anchor-node-border-width / 2));
|
|
1176
|
+
}
|
|
1177
|
+
|
|
1178
|
+
.e-pv-organize-anchor-node.e-pv-organize-node-selection-ring {
|
|
1179
|
+
border: $pv-organize-page-select-border;
|
|
1180
|
+
border-radius: 2px;
|
|
1181
|
+
}
|
|
1182
|
+
|
|
1183
|
+
@media screen and (max-width: 480px) {
|
|
1184
|
+
.e-pv-organize-anchor-node.e-pv-organize-node-selection-ring {
|
|
1185
|
+
border: $pv-organize-page-select-border;
|
|
1186
|
+
border-radius: 2px;
|
|
1187
|
+
}
|
|
1188
|
+
}
|
|
1189
|
+
|
|
1190
|
+
.e-pv-organize-window {
|
|
1191
|
+
border: $pv-organize-image-border;
|
|
1192
|
+
border-radius: 0;
|
|
1193
|
+
}
|
|
1194
|
+
|
|
1195
|
+
.e-pdfviewer .e-pv-organize-window .e-footer-content {
|
|
1196
|
+
border-top: $pv-organize-image-border;
|
|
1197
|
+
padding: 15px;
|
|
1198
|
+
}
|
|
1199
|
+
|
|
1200
|
+
.e-pdfviewer .e-pv-organize-window .e-dlg-header-content {
|
|
1201
|
+
padding: 15px;
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
.e-pv-tile-number {
|
|
1205
|
+
text-align: center;
|
|
1206
|
+
margin-top: calc(($pv-default-tile-icon-size / 2) + $pv-organize-anchor-node-border-width + 2px);
|
|
1207
|
+
}
|
|
1208
|
+
|
|
1209
|
+
.e-pv-delete-button.e-btn,
|
|
1210
|
+
.e-pv-rotate-left-button.e-btn,
|
|
1211
|
+
.e-pv-rotate-right-button.e-btn {
|
|
1212
|
+
width: $pv-default-tile-icon-size;
|
|
1213
|
+
height: $pv-default-tile-icon-size;
|
|
1214
|
+
justify-content: center;
|
|
1215
|
+
align-items: center;
|
|
1216
|
+
margin: 0 5px;
|
|
1217
|
+
padding: 0;
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1220
|
+
.e-pv-insert-left-button.e-btn {
|
|
1221
|
+
width: $pv-default-tile-icon-size;
|
|
1222
|
+
height: $pv-default-tile-icon-size;
|
|
1223
|
+
justify-content: center;
|
|
1224
|
+
align-items: center;
|
|
1225
|
+
position: absolute;
|
|
1226
|
+
left: calc(-1 * (#{$pv-default-tile-icon-size} / 2 + #{$pv-organize-anchor-node-border-width} / 2));
|
|
1227
|
+
top: calc(-140px / 2);
|
|
1228
|
+
padding: 0;
|
|
1229
|
+
|
|
1230
|
+
@include lg-desktop {
|
|
1231
|
+
top: calc(-140px / 2);
|
|
1232
|
+
}
|
|
1233
|
+
|
|
1234
|
+
@include desktop {
|
|
1235
|
+
top: calc(-140px / 2);
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1238
|
+
@include tablet {
|
|
1239
|
+
top: calc(-140px / 2);
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
@include mobile {
|
|
1243
|
+
top: calc(-140px / 2);
|
|
1244
|
+
}
|
|
1245
|
+
|
|
1246
|
+
@include sm-mobile {
|
|
1247
|
+
top: calc(-140px / 2);
|
|
1248
|
+
}
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
.e-pv-insert-right-button.e-btn {
|
|
1252
|
+
width: $pv-default-tile-icon-size;
|
|
1253
|
+
height: $pv-default-tile-icon-size;
|
|
1254
|
+
justify-content: center;
|
|
1255
|
+
align-items: center;
|
|
1256
|
+
position: absolute;
|
|
1257
|
+
right: calc(-1 * (#{$pv-default-tile-icon-size} / 2 + #{$pv-organize-anchor-node-border-width} / 2));
|
|
1258
|
+
top: calc(-140px / 2);
|
|
1259
|
+
padding: 0;
|
|
1260
|
+
|
|
1261
|
+
@include lg-desktop {
|
|
1262
|
+
top: calc(-140px / 2);
|
|
1263
|
+
}
|
|
1264
|
+
|
|
1265
|
+
@include desktop {
|
|
1266
|
+
top: calc(-140px / 2);
|
|
1267
|
+
}
|
|
1268
|
+
|
|
1269
|
+
@include tablet {
|
|
1270
|
+
top: calc(-140px / 2);
|
|
1271
|
+
}
|
|
1272
|
+
|
|
1273
|
+
@include mobile {
|
|
1274
|
+
top: calc(-140px / 2);
|
|
1275
|
+
}
|
|
1276
|
+
|
|
1277
|
+
@include sm-mobile {
|
|
1278
|
+
top: calc(-140px / 2);
|
|
1279
|
+
}
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1282
|
+
.e-pv-toolbar-rotate-left-button {
|
|
1283
|
+
height: 32px;
|
|
1284
|
+
width: 32px;
|
|
1285
|
+
padding: 0;
|
|
1286
|
+
top: 7px;
|
|
1287
|
+
position: relative;
|
|
1288
|
+
left: 436px;
|
|
1289
|
+
box-shadow: none;
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1292
|
+
.e-pv-toolbar-rotate-right-button {
|
|
1293
|
+
height: 32px;
|
|
1294
|
+
width: 32px;
|
|
1295
|
+
padding: 0;
|
|
1296
|
+
top: 7px;
|
|
1297
|
+
position: relative;
|
|
1298
|
+
left: 445px;
|
|
1299
|
+
box-shadow: none;
|
|
1300
|
+
}
|
|
1301
|
+
|
|
1302
|
+
.e-pdfviewer .e-pv-organize-window .e-dlg-content {
|
|
1303
|
+
padding: 0;
|
|
1304
|
+
overflow: hidden;
|
|
1305
|
+
border-radius: 0;
|
|
1306
|
+
}
|
|
1307
|
+
|
|
1308
|
+
.e-pv-organize-toolbar-apperance.e-toolbar {
|
|
1309
|
+
width: 1172px;
|
|
1310
|
+
border: $pv-organize-image-border;
|
|
1311
|
+
border-width: 1px 0;
|
|
1312
|
+
background: transparent !important;/* stylelint-disable-line declaration-no-important */
|
|
1313
|
+
|
|
1314
|
+
.e-toolbar-items.e-tbar-pos {
|
|
1315
|
+
background: transparent !important;/* stylelint-disable-line declaration-no-important */
|
|
1316
|
+
}
|
|
1317
|
+
}
|
|
1318
|
+
|
|
1319
|
+
.e-pdfviewer .e-pv-organize-toolbar-apperance .e-checkbox-wrapper {
|
|
1320
|
+
margin-left: 22px;
|
|
1321
|
+
margin-right: 8px;
|
|
1322
|
+
text-wrap: nowrap;
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1325
|
+
@media screen and (max-width: 480px) {
|
|
1326
|
+
.e-pdfviewer .e-pv-organize-toolbar-apperance .e-checkbox-wrapper {
|
|
1327
|
+
width: 35px;
|
|
1328
|
+
margin-left: 22px;
|
|
1329
|
+
}
|
|
1330
|
+
}
|
|
1331
|
+
|
|
1332
|
+
.e-bigger .e-pv-thumbnail-view-button.e-btn,
|
|
1333
|
+
.e-bigger .e-pv-organize-view-button.e-btn {
|
|
1044
1334
|
@if $skin-name == 'bootstrap4' {
|
|
1045
1335
|
height: $pv-thumbnail-view-button-height-big;
|
|
1046
1336
|
margin: $pv-thumbnail-view-button-margin-big;
|
|
@@ -1072,6 +1362,9 @@
|
|
|
1072
1362
|
@if $skin-name == 'bootstrap4' {
|
|
1073
1363
|
color: $pv-thumbnail-border-selection-font-color;
|
|
1074
1364
|
}
|
|
1365
|
+
@if $skin-name == 'bootstrap5' {
|
|
1366
|
+
color: $white;
|
|
1367
|
+
}
|
|
1075
1368
|
line-height: $pv-thumbnail-view-button-selection-line-height;
|
|
1076
1369
|
padding: $pv-thumbnail-view-button-selection-padding;
|
|
1077
1370
|
}
|
|
@@ -1084,6 +1377,9 @@
|
|
|
1084
1377
|
@if $skin-name == 'bootstrap4' {
|
|
1085
1378
|
color: $pv-thumbnail-border-selection-font-color;
|
|
1086
1379
|
}
|
|
1380
|
+
@if $skin-name == 'bootstrap5' {
|
|
1381
|
+
color: $white;
|
|
1382
|
+
}
|
|
1087
1383
|
line-height: $pv-thumbnail-view-button-selection-line-height;
|
|
1088
1384
|
padding: $pv-thumbnail-view-button-selection-padding;
|
|
1089
1385
|
}
|
|
@@ -1230,9 +1526,8 @@
|
|
|
1230
1526
|
.e-pv-thumbnail-number {
|
|
1231
1527
|
color: $pv-sidebar-title-color;
|
|
1232
1528
|
font-family: $pv-thumbnail-number-font-family;
|
|
1233
|
-
padding-left: $pv-thumbnail-number-padding-left;
|
|
1234
|
-
padding-right: $pv-thumbnail-number-padding-left;
|
|
1235
1529
|
padding-top: $pv-thumbnail-number-padding-top;
|
|
1530
|
+
text-align: center;
|
|
1236
1531
|
@if $skin-name == 'Material3' {
|
|
1237
1532
|
font-weight: 500;
|
|
1238
1533
|
}
|
|
@@ -1467,6 +1762,8 @@
|
|
|
1467
1762
|
|
|
1468
1763
|
.e-pv-toolbar .e-pv-tbar-btn.e-pv-tbar-btn:hover,
|
|
1469
1764
|
.e-pv-annotation-toolbar .e-pv-tbar-btn.e-pv-tbar-btn:hover,
|
|
1765
|
+
.e-pv-toolbar .e-pv-tbar-btn.e-pv-tbar-btn:hover:focus,
|
|
1766
|
+
.e-pv-annotation-toolbar .e-pv-tbar-btn.e-pv-tbar-btn:hover:focus,
|
|
1470
1767
|
.e-pv-annotation-toolbar .e-dropdown-btn.e-btn:hover,
|
|
1471
1768
|
.e-pv-annotation-toolbar .e-dropdown-btn.e-btn:hover .e-caret,
|
|
1472
1769
|
.e-pv-formdesigner-toolbar .e-pv-tbar-btn.e-pv-tbar-btn:hover,
|
|
@@ -1476,10 +1773,7 @@
|
|
|
1476
1773
|
.e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused:hover,
|
|
1477
1774
|
.e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused .e-menu-icon:hover,
|
|
1478
1775
|
.e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused .e-caret:hover,
|
|
1479
|
-
.e-pv-toolbar .e-pv-tbar-btn.e-pv-tbar-btn:focus,
|
|
1480
|
-
.e-pv-annotation-toolbar .e-pv-tbar-btn.e-pv-tbar-btn:focus,
|
|
1481
1776
|
.e-pv-annotation-toolbar .e-dropdown-btn.e-btn.e-active,
|
|
1482
|
-
.e-pv-formdesigner-toolbar .e-pv-tbar-btn.e-pv-tbar-btn:focus,
|
|
1483
1777
|
.e-pv-formdesigner-toolbar .e-dropdown-btn.e-btn:focus,
|
|
1484
1778
|
.e-pv-formdesigner-toolbar .e-dropdown-btn.e-btn:focus .e-caret,
|
|
1485
1779
|
.e-pv-shapes-toolbar .e-pv-tbar-btn:focus,
|
|
@@ -1499,6 +1793,20 @@
|
|
|
1499
1793
|
}
|
|
1500
1794
|
}
|
|
1501
1795
|
|
|
1796
|
+
.e-pv-toolbar .e-pv-tbar-btn.e-pv-tbar-btn:focus,
|
|
1797
|
+
.e-pv-annotation-toolbar .e-pv-tbar-btn.e-pv-tbar-btn:focus,
|
|
1798
|
+
.e-pv-formdesigner-toolbar .e-pv-tbar-btn.e-pv-tbar-btn:focus {
|
|
1799
|
+
@if $skin-name == 'bootstrap4' {
|
|
1800
|
+
color: $pv-icon-color-hover;
|
|
1801
|
+
}
|
|
1802
|
+
@if $skin-name == 'bootstrap5' {
|
|
1803
|
+
color: $pv-icon-color;
|
|
1804
|
+
}
|
|
1805
|
+
@if $skin-name == 'FluentUI' {
|
|
1806
|
+
color: $pv-item-selection-color;
|
|
1807
|
+
}
|
|
1808
|
+
}
|
|
1809
|
+
|
|
1502
1810
|
.e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item:hover .e-menu-icon,
|
|
1503
1811
|
.e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused:hover .e-menu-icon,
|
|
1504
1812
|
.e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused:hover .e-caret {
|
|
@@ -1720,6 +2028,10 @@
|
|
|
1720
2028
|
background-color: $pv-item-selection-background-color;
|
|
1721
2029
|
color: $pv-item-selection-color;
|
|
1722
2030
|
}
|
|
2031
|
+
@if $skin-name == 'bootstrap5' {
|
|
2032
|
+
background-color: $pv-item-selection-background-color;
|
|
2033
|
+
color: $pv-item-selection-color;
|
|
2034
|
+
}
|
|
1723
2035
|
}
|
|
1724
2036
|
|
|
1725
2037
|
.e-pv-search-btn.e-btn:disabled {
|
|
@@ -1982,6 +2294,20 @@
|
|
|
1982
2294
|
}
|
|
1983
2295
|
}
|
|
1984
2296
|
|
|
2297
|
+
.e-pv-organize-total-page-button {
|
|
2298
|
+
float: left;
|
|
2299
|
+
font-size: 12;
|
|
2300
|
+
font-weight: normal;
|
|
2301
|
+
color: $pv-toolbar-total-page-number-color;
|
|
2302
|
+
}
|
|
2303
|
+
|
|
2304
|
+
.e-pdfviewer .e-pv-organize-window .e-footer-content .e-btn.e-flat:disabled{
|
|
2305
|
+
background-color: transparent;
|
|
2306
|
+
background: transparent;
|
|
2307
|
+
color: $pv-toolbar-total-page-number-color;
|
|
2308
|
+
cursor: default;
|
|
2309
|
+
}
|
|
2310
|
+
|
|
1985
2311
|
.e-pv-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn,
|
|
1986
2312
|
.e-pv-annotation-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn {
|
|
1987
2313
|
@if $skin-name == 'FluentUI' {
|
|
@@ -1993,6 +2319,12 @@
|
|
|
1993
2319
|
margin-top: -6px;
|
|
1994
2320
|
}
|
|
1995
2321
|
|
|
2322
|
+
.e-pv-organize-image {
|
|
2323
|
+
width: calc(100% - (2 * $pv-organize-anchor-node-border-width));
|
|
2324
|
+
height: calc(100% - (2 * $pv-organize-anchor-node-border-width));
|
|
2325
|
+
border: $pv-organize-image-border;
|
|
2326
|
+
}
|
|
2327
|
+
|
|
1996
2328
|
.e-pv-annotation-opacity-icon {
|
|
1997
2329
|
padding-top: $pv-annotation-opacity-icon-padding-top;
|
|
1998
2330
|
}
|
|
@@ -2954,6 +3286,7 @@
|
|
|
2954
3286
|
.e-pdfviewer .e-checkbox-wrapper .e-frame + .e-label,
|
|
2955
3287
|
.e-pdfviewer .e-css.e-checkbox-wrapper .e-frame + .e-label {
|
|
2956
3288
|
margin-right: $pv-textsearch-textbox-margin-right;
|
|
3289
|
+
font-size: 14px;
|
|
2957
3290
|
}
|
|
2958
3291
|
|
|
2959
3292
|
div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
@@ -3368,6 +3701,15 @@
|
|
|
3368
3701
|
font-size: 12px;
|
|
3369
3702
|
font-weight: $pv-comment-tile-font-weight;
|
|
3370
3703
|
}
|
|
3704
|
+
@if $skin-name == 'fabric' {
|
|
3705
|
+
color: $pv-comments-div-focus-border;
|
|
3706
|
+
}
|
|
3707
|
+
@if $skin-name == 'bootstrap4' {
|
|
3708
|
+
font-size: $pv-input-active-color;
|
|
3709
|
+
}
|
|
3710
|
+
@if $skin-name == 'bootstrap' {
|
|
3711
|
+
color: $pv-sidebar-title-color;
|
|
3712
|
+
}
|
|
3371
3713
|
@if $skin-name == 'FluentUI' {
|
|
3372
3714
|
font-weight: $pv-comment-tile-font-weight;
|
|
3373
3715
|
}
|
|
@@ -3378,8 +3720,9 @@
|
|
|
3378
3720
|
padding-bottom: 30px;
|
|
3379
3721
|
height: 18px;
|
|
3380
3722
|
}
|
|
3381
|
-
max-width: 237px;
|
|
3382
3723
|
position: absolute;
|
|
3724
|
+
overflow: hidden;
|
|
3725
|
+
text-overflow: ellipsis;
|
|
3383
3726
|
}
|
|
3384
3727
|
|
|
3385
3728
|
.e-pv-reply-title {
|
|
@@ -3392,16 +3735,26 @@
|
|
|
3392
3735
|
font-size: 12px;
|
|
3393
3736
|
font-weight: $pv-comment-tile-font-weight;
|
|
3394
3737
|
}
|
|
3738
|
+
@if $skin-name == 'fabric' {
|
|
3739
|
+
color: $pv-comments-div-focus-border;
|
|
3740
|
+
}
|
|
3741
|
+
@if $skin-name == 'bootstrap4' {
|
|
3742
|
+
font-size: $pv-input-active-color;
|
|
3743
|
+
}
|
|
3744
|
+
@if $skin-name == 'bootstrap' {
|
|
3745
|
+
color: $pv-sidebar-title-color;
|
|
3746
|
+
}
|
|
3395
3747
|
@if $skin-name == 'FluentUI' {
|
|
3396
3748
|
font-weight: $pv-comment-tile-font-weight;
|
|
3397
3749
|
}
|
|
3398
3750
|
@if $skin-name == 'Material3' {
|
|
3399
3751
|
font-size: $text-xs;
|
|
3400
3752
|
}
|
|
3401
|
-
max-width: 212px;
|
|
3402
3753
|
padding-left: 8px;
|
|
3403
3754
|
padding-top: $pv-comment-title-padding-top;
|
|
3404
3755
|
position: absolute;
|
|
3756
|
+
overflow: hidden;
|
|
3757
|
+
text-overflow: ellipsis;
|
|
3405
3758
|
}
|
|
3406
3759
|
|
|
3407
3760
|
.e-pv-comments-hover {
|
|
@@ -4804,6 +5157,16 @@
|
|
|
4804
5157
|
}
|
|
4805
5158
|
}
|
|
4806
5159
|
|
|
5160
|
+
.e-pv-annotation-toolbar .e-dropdown-btn.e-btn:focus,
|
|
5161
|
+
.e-pv-annotation-toolbar .e-dropdown-btn.e-btn:focus .e-caret {
|
|
5162
|
+
@if ($skin-name == 'bootstrap4') {
|
|
5163
|
+
color: $pv-prop-win-drop-down-color-hover;
|
|
5164
|
+
}
|
|
5165
|
+
@if ($skin-name == 'bootstrap5') {
|
|
5166
|
+
color: $white;
|
|
5167
|
+
}
|
|
5168
|
+
}
|
|
5169
|
+
|
|
4807
5170
|
.e-dialog.e-pv-signature-dialog-height {
|
|
4808
5171
|
height: $pv-signature-dialog-height;
|
|
4809
5172
|
@if ($skin-name == 'FluentUI' or $skin-name == 'Material3') {
|