@syncfusion/ej2-angular-pdfviewer 20.2.38-ngcc → 20.2.38

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 (100) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/index.mjs +5 -0
  3. package/esm2020/src/pdfviewer/pdfviewer-all.module.mjs +62 -0
  4. package/esm2020/src/pdfviewer/pdfviewer.component.mjs +143 -0
  5. package/esm2020/src/pdfviewer/pdfviewer.module.mjs +25 -0
  6. package/esm2020/syncfusion-ej2-angular-pdfviewer.mjs +5 -0
  7. package/fesm2015/syncfusion-ej2-angular-pdfviewer.mjs +231 -0
  8. package/fesm2015/syncfusion-ej2-angular-pdfviewer.mjs.map +1 -0
  9. package/fesm2020/syncfusion-ej2-angular-pdfviewer.mjs +231 -0
  10. package/fesm2020/syncfusion-ej2-angular-pdfviewer.mjs.map +1 -0
  11. package/package.json +27 -13
  12. package/schematics/utils/lib-details.ts +2 -2
  13. package/src/pdfviewer/pdfviewer-all.module.d.ts +6 -0
  14. package/src/pdfviewer/pdfviewer.component.d.ts +3 -0
  15. package/src/pdfviewer/pdfviewer.module.d.ts +6 -0
  16. package/styles/_all.scss +0 -0
  17. package/styles/bootstrap5-dark.css +1 -1
  18. package/styles/bootstrap5.css +1 -1
  19. package/styles/fluent-dark.css +1 -1
  20. package/styles/pdfviewer/_all.scss +2 -0
  21. package/styles/pdfviewer/_bootstrap-dark-definition.scss +536 -0
  22. package/styles/pdfviewer/_bootstrap-definition.scss +536 -0
  23. package/styles/pdfviewer/_bootstrap4-definition.scss +582 -0
  24. package/styles/pdfviewer/_bootstrap5-dark-definition.scss +1 -0
  25. package/styles/pdfviewer/_bootstrap5-definition.scss +531 -0
  26. package/styles/pdfviewer/_fabric-dark-definition.scss +533 -0
  27. package/styles/pdfviewer/_fabric-definition.scss +535 -0
  28. package/styles/pdfviewer/_fluent-dark-definition.scss +1 -0
  29. package/styles/pdfviewer/_fluent-definition.scss +537 -0
  30. package/styles/pdfviewer/_fusionnew-definition.scss +531 -0
  31. package/styles/pdfviewer/_highcontrast-definition.scss +535 -0
  32. package/styles/pdfviewer/_highcontrast-light-definition.scss +531 -0
  33. package/styles/pdfviewer/_layout.scss +195 -0
  34. package/styles/pdfviewer/_material-dark-definition.scss +534 -0
  35. package/styles/pdfviewer/_material-definition.scss +532 -0
  36. package/styles/pdfviewer/_material3-definition.scss +531 -0
  37. package/styles/pdfviewer/_tailwind-dark-definition.scss +1 -0
  38. package/styles/pdfviewer/_tailwind-definition.scss +537 -0
  39. package/styles/pdfviewer/_theme.scss +4112 -0
  40. package/styles/pdfviewer/bootstrap-dark.scss +4 -1
  41. package/styles/pdfviewer/bootstrap.scss +4 -1
  42. package/styles/pdfviewer/bootstrap4.scss +4 -1
  43. package/styles/pdfviewer/bootstrap5-dark.css +1 -1
  44. package/styles/pdfviewer/bootstrap5-dark.scss +4 -1
  45. package/styles/pdfviewer/bootstrap5.css +1 -1
  46. package/styles/pdfviewer/bootstrap5.scss +4 -1
  47. package/styles/pdfviewer/fabric-dark.scss +4 -1
  48. package/styles/pdfviewer/fabric.scss +4 -1
  49. package/styles/pdfviewer/fluent-dark.css +1 -1
  50. package/styles/pdfviewer/fluent-dark.scss +4 -1
  51. package/styles/pdfviewer/fluent.scss +4 -1
  52. package/styles/pdfviewer/highcontrast-light.scss +4 -1
  53. package/styles/pdfviewer/highcontrast.scss +4 -1
  54. package/styles/pdfviewer/icons/_bootstrap-dark.scss +475 -0
  55. package/styles/pdfviewer/icons/_bootstrap.scss +480 -0
  56. package/styles/pdfviewer/icons/_bootstrap4.scss +482 -0
  57. package/styles/pdfviewer/icons/_bootstrap5-dark.scss +1 -0
  58. package/styles/pdfviewer/icons/_bootstrap5.scss +489 -0
  59. package/styles/pdfviewer/icons/_fabric-dark.scss +489 -0
  60. package/styles/pdfviewer/icons/_fabric.scss +492 -0
  61. package/styles/pdfviewer/icons/_fluent-dark.scss +1 -0
  62. package/styles/pdfviewer/icons/_fluent.scss +488 -0
  63. package/styles/pdfviewer/icons/_fusionnew.scss +489 -0
  64. package/styles/pdfviewer/icons/_highcontrast-light.scss +476 -0
  65. package/styles/pdfviewer/icons/_highcontrast.scss +475 -0
  66. package/styles/pdfviewer/icons/_material-dark.scss +477 -0
  67. package/styles/pdfviewer/icons/_material.scss +480 -0
  68. package/styles/pdfviewer/icons/_material3.scss +489 -0
  69. package/styles/pdfviewer/icons/_tailwind-dark.scss +489 -0
  70. package/styles/pdfviewer/icons/_tailwind.scss +489 -0
  71. package/styles/pdfviewer/material-dark.scss +4 -1
  72. package/styles/pdfviewer/material.scss +4 -1
  73. package/styles/pdfviewer/tailwind-dark.css +1 -1
  74. package/styles/pdfviewer/tailwind-dark.scss +4 -1
  75. package/styles/pdfviewer/tailwind.css +1 -1
  76. package/styles/pdfviewer/tailwind.scss +4 -1
  77. package/styles/tailwind-dark.css +1 -1
  78. package/styles/tailwind.css +1 -1
  79. package/syncfusion-ej2-angular-pdfviewer.d.ts +5 -0
  80. package/@syncfusion/ej2-angular-pdfviewer.es5.js +0 -270
  81. package/@syncfusion/ej2-angular-pdfviewer.es5.js.map +0 -1
  82. package/@syncfusion/ej2-angular-pdfviewer.js +0 -251
  83. package/@syncfusion/ej2-angular-pdfviewer.js.map +0 -1
  84. package/CHANGELOG.md +0 -1308
  85. package/dist/ej2-angular-pdfviewer.umd.js +0 -454
  86. package/dist/ej2-angular-pdfviewer.umd.js.map +0 -1
  87. package/dist/ej2-angular-pdfviewer.umd.min.js +0 -11
  88. package/dist/ej2-angular-pdfviewer.umd.min.js.map +0 -1
  89. package/ej2-angular-pdfviewer.d.ts +0 -5
  90. package/ej2-angular-pdfviewer.metadata.json +0 -1
  91. package/postinstall/tagchange.js +0 -18
  92. package/schematics/collection.json +0 -10
  93. package/schematics/ng-add/index.d.ts +0 -3
  94. package/schematics/ng-add/index.js +0 -9
  95. package/schematics/ng-add/schema.d.ts +0 -13
  96. package/schematics/ng-add/schema.js +0 -2
  97. package/schematics/ng-add/schema.json +0 -34
  98. package/schematics/tsconfig.json +0 -25
  99. package/schematics/utils/lib-details.d.ts +0 -4
  100. package/schematics/utils/lib-details.js +0 -6
@@ -0,0 +1,4112 @@
1
+ @include export-module('pdfviewer-theme') {
2
+ // sass-lint:disable no-vendor-prefixes
3
+ .e-pv-viewer-container {
4
+ background-color: $pv-background;
5
+ border-color: $pv-control-border-color;
6
+ height: $pv-viewer-container-height;
7
+ overflow: $pv-control-overflow;
8
+ position: $pv-control-position;
9
+ touch-action: $pv-control-touch-action;
10
+ }
11
+
12
+ .e-pdfviewer.e-pv-mobile-view .e-pv-viewer-container::-webkit-scrollbar {
13
+ display: none;
14
+ }
15
+
16
+ input.e-pv-input-password::-ms-reveal {
17
+ display: none;
18
+ }
19
+
20
+ .e-pv-page-container {
21
+ margin: $pv-page-container-margin;
22
+ padding: $pv-page-container-padding;
23
+ touch-action: $pv-page-container-touch-action;
24
+ }
25
+
26
+ .e-pv-signaturehover {
27
+ background-color: $pv-prop-line-styles-hover-bg;
28
+ }
29
+
30
+ .e-pv-mobilespanscroll-container {
31
+ color: $pv-toolbar-total-page-number-color;
32
+ font-family: $pv-sidebar-bookmark-title-font-family;
33
+ font-size: $pv-sidebar-bookmark-title-font-size;
34
+ }
35
+
36
+ .e-pv-annotation-color-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
37
+ .e-pv-annotation-opacity-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
38
+ .e-pv-annotation-stroke-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
39
+ .e-pv-annotation-thickness-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
40
+ .e-pv-annotation-shapes-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
41
+ .e-pv-annotation-calibrate-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
42
+ .e-pv-annotation-textcolor-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
43
+ .e-pv-annotation-textalign-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
44
+ .e-pv-annotation-textprop-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
45
+ .e-pv-annotation-handwritten-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
46
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item .e-menu-icon,
47
+ .e-bigger .e-pv-icon-search,
48
+ .e-pv-icon {
49
+ font-size: $pv-icon-font-size;
50
+ }
51
+
52
+ .e-bigger .e-pv-icon {
53
+ @if $skin-name == 'FluentUI' {
54
+ font-size: 16px;
55
+ }
56
+ }
57
+
58
+ .e-pv-annotation-stamp-container .e-menu-wrapper {
59
+ @if $skin-name == 'FluentUI' {
60
+ background-color: transparent;
61
+ }
62
+ }
63
+
64
+ .e-pv-annotation-ink-container .e-pv-inkannotation-icon {
65
+ font-size: $pv-icon-font-size;
66
+ }
67
+
68
+ .e-pv-annotation-handwritten-container .e-pv-handwritten-icon.e-btn-icon:not(.e-caret) {
69
+ font-size: $pv-icon-font-size;
70
+ }
71
+
72
+ .e-bigger .e-pv-annotation-color-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
73
+ .e-bigger .e-pv-annotation-opacity-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
74
+ .e-bigger .e-pv-annotation-stroke-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
75
+ .e-bigger .e-pv-annotation-thickness-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
76
+ .e-bigger .e-pv-annotation-shapes-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
77
+ .e-bigger .e-pv-annotation-calibrate-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
78
+ .e-bigger .e-pv-annotation-textcolor-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
79
+ .e-bigger .e-pv-annotation-textalign-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
80
+ .e-bigger .e-pv-annotation-textprop-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
81
+ .e-bigger .e-pv-annotation-handwritten-container.e-dropdown-btn.e-btn .e-btn-icon:not(.e-caret),
82
+ .e-bigger .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item .e-menu-icon,
83
+ .e-bigger .e-pv-icon-search,
84
+ .e-bigger .e-pv-icon {
85
+ @if $skin-name == 'bootstrap4' {
86
+ font-size: $pv-icon-font-size-big;
87
+ }
88
+ }
89
+
90
+ .e-pv-mobilescroll-container {
91
+ background-color: $pv-background;
92
+ border: $pv-thumbnail-hover-border;
93
+ border-radius: 56px 0 0 56px;
94
+ line-height: 27px;
95
+ position: absolute;
96
+ text-align: center;
97
+ }
98
+
99
+ .e-pv-viewer-container .e-pv-page-div {
100
+ border-color: $pv-page-div-border-color;
101
+ border-style: $pv-page-div-border-style;
102
+ border-width: $pv-page-div-border;
103
+ box-shadow: $pv-page-div-box-shadow;
104
+ box-sizing: $pv-page-div-border-boxing;
105
+ position: $pv-page-div-position;
106
+ }
107
+
108
+ .e-pv-toolbar,
109
+ .e-pv-nav-toolbar,
110
+ .e-pv-annotation-toolbar,
111
+ .e-pv-formdesigner-toolbar {
112
+ border: $pv-toolbar-border;
113
+ border-radius: $pv-toolbar-border-radius;
114
+ border-width: $pv-toolbar-border-width;
115
+ }
116
+
117
+ .e-pv-toolbar,
118
+ .e-pv-annotation-toolbar,
119
+ .e-pv-mobile-annotation-toolbar,
120
+ .e-pv-formdesigner-toolbar {
121
+ height: $pv-toolbar-height;
122
+ }
123
+
124
+ .e-pv-toolbar.e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
125
+ @if $skin-name == 'bootstrap5' {
126
+ left: 0;
127
+ line-height: 0;
128
+ }
129
+ }
130
+
131
+ .e-pv-nav-toolbar,
132
+ .e-bigger .e-pv-toolbar,
133
+ .e-pv-toolbar.e-pv-mobile-toolbar,
134
+ .e-bigger .e-pv-annotation-toolbar,
135
+ .e-pv-mobile-view .e-pv-annotation-toolbar {
136
+ height: $pv-toolbar-height-big;
137
+ }
138
+
139
+ .e-toolbar.e-pv-toolbar .e-pv-zoom-drop-down-container {
140
+ height: $pv-zoom-dropdown-height;
141
+ width: $pv-zoom-dropdown-width;
142
+ }
143
+
144
+ .e-toolbar.e-pv-toolbar .e-toolbar-pop .e-pv-zoom-drop-down-container {
145
+ display: none;
146
+ }
147
+
148
+ .e-pv-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text,
149
+ .e-pv-toolbar.e-toolbar.e-toolpop .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn-text {
150
+ display: none;
151
+ }
152
+
153
+ .e-pv-current-page-box.e-input-group.e-control-wrapper {
154
+ height: $pv-current-page-height;
155
+ @if $skin-name == 'bootstrap5' {
156
+ height: 32px;
157
+ }
158
+ margin-top: $pv-toolbar-current-page-box-margin-top;
159
+ width: $pv-current-page-width;
160
+ }
161
+
162
+ .e-pv-mobilepagenoscroll-container {
163
+ background: $pv-sidebar-resizer-background;
164
+ border: $pv-thumbnail-hover-border;
165
+ border-radius: 10px;
166
+ padding: 6px;
167
+ text-align: center;
168
+ vertical-align: middle;
169
+ }
170
+
171
+ .e-pv-mobilecurrentpage-container {
172
+ color: $pv-toolbar-total-page-number-color;
173
+ display: block;
174
+ font-family: $pv-sidebar-bookmark-title-font-family;
175
+ font-size: 24px;
176
+ }
177
+
178
+ .e-pv-mobiledashedline-container {
179
+ color: $pv-toolbar-total-page-number-color;
180
+ display: block;
181
+ padding: 10px;
182
+ }
183
+
184
+ .e-pv-number-ofpages {
185
+ width: 10%;
186
+ }
187
+
188
+ .e-pv-gotopage-popup {
189
+ max-width: 500px;
190
+ @if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark') {
191
+ padding-left: 0;
192
+ padding-top: 0;
193
+ }
194
+ @else {
195
+ padding-left: 16px;
196
+ padding-top: 16px;
197
+ }
198
+ }
199
+
200
+ .e-pv-gotopage-apply-btn.e-btn.e-flat.e-primary:disabled {
201
+ @if $skin-name != 'bootstrap4' {
202
+ background-color: transparent;
203
+ }
204
+ @if $skin-name == 'bootstrap' {
205
+ color: $pv-save-button-color;
206
+ }
207
+ }
208
+
209
+ .e-pv-mobiletotalpage-container {
210
+ color: $pv-toolbar-total-page-number-color;
211
+ display: block;
212
+ font-family: $pv-sidebar-bookmark-title-font-family;
213
+ font-size: $pv-sidebar-title-font-size;
214
+ }
215
+
216
+ .e-pv-password-input {
217
+ margin-top: $pv-password-input-margin-top;
218
+ }
219
+
220
+ .e-pv-password-error {
221
+ color: $pv-password-error-color;
222
+ }
223
+
224
+ .e-pv-corrupted-popup-header {
225
+ color: $pv-corrupted-pop-header-color;
226
+ opacity: $pv-corrupted-pop-header-opacity;
227
+ }
228
+
229
+ .e-pv-corrupted-popup-content {
230
+ color: $pv-corrupted-pop-header-color;
231
+ font-size: $pv-corrupted-pop-content-font-size;
232
+ line-height: $pv-corrupted-pop-content-line-height;
233
+ margin-left: $pv-corrupted-pop-content-margin-left;
234
+ opacity: $pv-corrupted-pop-header-opacity;
235
+ padding-top: $pv-corrupted-pop-content-padding-top;
236
+ text-align: $pv-corrupted-pop-header-text-align;
237
+ }
238
+
239
+ .e-pv-corrupted-popup-content-rtl {
240
+ color: $pv-corrupted-pop-header-color;
241
+ font-size: $pv-corrupted-pop-content-font-size;
242
+ line-height: $pv-corrupted-pop-content-line-height;
243
+ margin-right: $pv-corrupted-pop-content-margin-right;
244
+ opacity: $pv-corrupted-pop-header-opacity;
245
+ padding-top: $pv-corrupted-pop-content-padding-top;
246
+ text-align: $pv-corrupted-pop-header-rtl-text-align;
247
+ }
248
+
249
+ .e-pv-toolbar.e-toolbar:not(.e-pv-mobile-toolbar) .e-toolbar-items .e-toolbar-item:not(.e-separator) {
250
+ height: auto;
251
+ margin-left: $pv-toolbar-items-margin-left;
252
+ margin-right: $pv-toolbar-items-margin-right;
253
+ padding-bottom: $pv-toolbar-items-padding-bottom;
254
+ padding-top: $pv-toolbar-items-padding-top;
255
+ @if $skin-name == 'bootstrap5' {
256
+ padding: 3px 4px;
257
+ }
258
+ }
259
+
260
+ .e-bigger .e-pv-toolbar.e-toolbar:not(.e-pv-mobile-toolbar) .e-toolbar-items .e-toolbar-item:not(.e-separator) {
261
+ @if $skin-name == 'bootstrap4' {
262
+ padding-bottom: $pv-toolbar-items-padding-bottom-big;
263
+ padding-top: $pv-toolbar-items-padding-top-big;
264
+ }
265
+ }
266
+
267
+ .e-pv-annotation-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
268
+ .e-pv-formdesigner-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
269
+ @if $skin-name != 'tailwind' and $skin-name != 'tailwind-dark' {
270
+ height: auto;
271
+ }
272
+ @if $skin-name == 'bootstrap5' {
273
+ height: 32px;
274
+ }
275
+ margin-left: $pv-toolbar-items-margin-left;
276
+ margin-right: $pv-toolbar-items-margin-right;
277
+ @if $skin-name == 'bootstrap5' {
278
+ padding: 0 4px;
279
+ }
280
+ }
281
+
282
+ .e-pv-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon,
283
+ .e-pv-annotation-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
284
+ @if $skin-name == 'FluentUI' {
285
+ padding-bottom: 2px;
286
+ }
287
+ @else {
288
+ padding-bottom: 0;
289
+ }
290
+ }
291
+
292
+ .e-pv-toolbar.e-toolbar.e-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon,
293
+ .e-pv-annotation-toolbar.e-toolbar.e-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
294
+ @if $skin-name == 'FluentUI' {
295
+ line-height: 22px;
296
+ min-height: 22px;
297
+ }
298
+ @else {
299
+ line-height: 26px;
300
+ min-height: 26px;
301
+ }
302
+ }
303
+
304
+ .e-pv-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
305
+ .e-pv-annotation-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
306
+ .e-pv-formdesigner-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-separator {
307
+ border-right-width: $pv-toolbar-separator-border-right-width;
308
+ height: $pv-toolbar-separator-height;
309
+ margin-left: $pv-toolbar-separator-margin-left;
310
+ margin-right: $pv-toolbar-separator-margin-right;
311
+ }
312
+
313
+ .e-pdfviewer .e-pv-toolbar.e-toolbar:not(.e-rtl) .e-toolbar-items .e-toolbar-item:first-child,
314
+ .e-pdfviewer .e-pv-annotation-toolbar.e-toolbar:not(.e-rtl) .e-toolbar-items .e-toolbar-item:first-child,
315
+ .e-pdfviewer .e-pv-formdesigner-toolbar.e-toolbar:not(.e-rtl) .e-toolbar-items .e-toolbar-item:first-child {
316
+ margin-left: $pv-toolbar-items-first-child-margin-left;
317
+ }
318
+
319
+ .e-pdfviewer .e-pv-toolbar.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-item:first-child,
320
+ .e-pdfviewer .e-pv-annotation-toolbar.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-item:first-child,
321
+ .e-pdfviewer .e-pv-formdesigner-toolbar.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-item:first-child {
322
+ margin-right: $pv-toolbar-items-first-child-margin-left;
323
+ }
324
+
325
+ .e-pdfviewer .e-pv-toolbar.e-toolbar:not(.e-rtl) .e-toolbar-items .e-toolbar-item:last-child,
326
+ .e-pdfviewer .e-pv-annotation-toolbar.e-toolbar:not(.e-rtl) .e-toolbar-items .e-toolbar-item:last-child,
327
+ .e-pdfviewer .e-pv-formdesigner-toolbar.e-toolbar:not(.e-rtl) .e-toolbar-items .e-toolbar-item:last-child {
328
+ margin-right: $pv-toolbar-items-last-child-margin-right;
329
+ }
330
+
331
+ .e-pdfviewer .e-pv-toolbar.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-item:last-child,
332
+ .e-pdfviewer .e-pv-annotation-toolbar.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-item:last-child,
333
+ .e-pdfviewer .e-pv-formdesigner-toolbar.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-item:last-child {
334
+ margin-left: $pv-toolbar-items-last-child-margin-right;
335
+ }
336
+
337
+ .e-pv-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-pv-tbar-btn.e-btn,
338
+ .e-pv-annotation-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-pv-tbar-btn.e-btn,
339
+ .e-pv-mobile-annotation-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-pv-tbar-btn.e-btn,
340
+ .e-pv-formdesigner-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-pv-tbar-btn.e-btn {
341
+ height: $pv-toolbar-btn-height;
342
+ min-width: $pv-toolbar-btn-width;
343
+ width: $pv-toolbar-btn-width;
344
+ @if $skin-name == 'FluentUI' {
345
+ line-height: $pv-toolbar-btn-height;
346
+ min-width: 40px;
347
+ }
348
+ }
349
+
350
+ .e-pv-open-document-icon {
351
+ font-size: $pv-toolbar-open-icon-font-size;
352
+ height: $pv-toolbar-open-icon-height;
353
+ line-height: $pv-toolbar-open-icon-line-height;
354
+ width: $pv-toolbar-open-icon-width;
355
+ }
356
+
357
+ .e-toolbar-items:not(.e-toolbar-pop) .e-pv-download-document-icon {
358
+ line-height: $pv-toolbar-download-icon-line-height;
359
+ }
360
+
361
+ .e-toolbar-items:not(.e-toolbar-pop) .e-pv-print-document-icon {
362
+ line-height: $pv-toolbar-print-icon-line-height;
363
+ }
364
+
365
+ .e-pv-first-page-navigation-icon {
366
+ line-height: $pv-toolbar-first-page-icon-line-height;
367
+ }
368
+
369
+ .e-pv-previous-page-navigation-icon {
370
+ line-height: $pv-toolbar-previous-page-icon-line-height;
371
+ }
372
+
373
+ .e-pv-next-page-navigation-icon {
374
+ line-height: $pv-toolbar-next-page-icon-line-height;
375
+ }
376
+
377
+ .e-pv-last-page-navigation-icon {
378
+ line-height: $pv-toolbar-last-page-icon-line-height;
379
+ }
380
+
381
+ .e-toolbar-items:not(.e-toolbar-pop) .e-pv-zoom-out-icon,
382
+ .e-toolbar-items:not(.e-toolbar-pop) .e-pv-zoom-in-icon {
383
+ line-height: $pv-toolbar-zoom-out-icon-line-height;
384
+ }
385
+
386
+ .e-pv-eye-slash-icon,
387
+ .e-pv-eye-icon {
388
+ margin-top: $pv-eye-icon-margin-top;
389
+ }
390
+
391
+ .e-pv-toolbar.e-toolbar.e-rtl .e-toolbar-items .e-pv-current-page-container {
392
+ padding-left: 8px;
393
+ }
394
+
395
+ .e-pv-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-btn.e-pv-pan-tool .e-pv-icon {
396
+ margin-right: 2px;
397
+ }
398
+
399
+ .e-pv-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-pv-zoom-drop-down-container {
400
+ margin: $pv-toolbar-zoom-drop-margin;
401
+ @if $skin-name != 'bootstrap4' {
402
+ padding: $pv-toolbar-zoom-drop-padding;
403
+ }
404
+ }
405
+
406
+ .e-pv-toolbar.e-toolbar .e-toolbar-items .e-pv-total-page-container.e-toolbar-item:not(.e-separator) {
407
+ color: $pv-toolbar-total-page-number-color;
408
+ cursor: default;
409
+ font-size: $pv-toolbar-total-page-number-font-size;
410
+ margin-left: $pv-toolbar-total-page-div-margin-left;
411
+ margin-right: $pv-toolbar-total-page-div-margin-right;
412
+ min-width: unset;
413
+ @if $skin-name != 'bootstrap4' and $skin-name != 'FluentUI' {
414
+ padding-bottom: $pv-toolbar-total-page-padding-bottom;
415
+ }
416
+ padding-left: $pv-toolbar-total-page-div-padding-left;
417
+ @if $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' {
418
+ padding-top: 0;
419
+ }
420
+ position: relative;
421
+ }
422
+
423
+ .e-pv-total-page {
424
+ color: $pv-toolbar-total-page-font-color;
425
+ font-size: inherit;
426
+ }
427
+
428
+ .e-pv-total-page-ms {
429
+ -ms-transform: translateY(-50%);
430
+ margin: 0;
431
+ position: absolute;
432
+ top: 50%;
433
+ transform: translateY(-50%);
434
+ }
435
+
436
+ .e-pv-zoom-drop-down.e-input-group.e-control-wrapper.e-ddl:not(.e-error),
437
+ .e-pv-prop-dropdown.e-input-group.e-control-wrapper.e-ddl:not(.e-error),
438
+ .e-pv-zoom-drop-down-rtl.e-input-group.e-control-wrapper.e-ddl:not(.e-error),
439
+ .e-pv-prop-dropdown-rtl.e-input-group.e-control-wrapper.e-ddl:not(.e-error) {
440
+ background-color: transparent;
441
+ border: $pv-toolbar-zoom-drop-down-border;
442
+ @if $skin-name == 'bootstrap5' {
443
+ box-shadow: none;
444
+ }
445
+ height: inherit;
446
+ margin-top: $pv-toolbar-zoom-drop-down-margin-top;
447
+ padding: $pv-toolbar-zoom-drop-down-padding;
448
+ }
449
+
450
+ .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),
451
+ .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),
452
+ .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),
453
+ .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) {
454
+ background-color: $pv-toolbar-zoom-drop-down-background-color;
455
+ border: $pv-toolbar-zoom-drop-down-border-focus;
456
+ border-radius: $pv-toolbar-zoom-drop-down-border-radius;
457
+ }
458
+
459
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl.e-input-focus .e-search-icon.e-ddl-icon,
460
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-input-focus .e-search-icon.e-ddl-icon,
461
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl.e-input-focus .e-search-icon.e-ddl-icon,
462
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl.e-input-focus .e-search-icon.e-ddl-icon {
463
+ color: $pv-zoom-dropdown-input-focus-color;
464
+ }
465
+
466
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl .e-input.e-control.e-keyboard,
467
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl .e-input.e-control.e-keyboard,
468
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl .e-input.e-control.e-keyboard,
469
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl .e-input.e-control.e-keyboard {
470
+ height: $pv-zoom-drop-down-input-height;
471
+ margin-top: $pv-zoom-drop-down-input-margin-top;
472
+ padding-bottom: $pv-zoom-drop-down-padding-bottom;
473
+ padding-top: $pv-zoom-drop-down-padding-top;
474
+ }
475
+
476
+ .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,
477
+ .e-pv-toolbar:not(.e-rtl) .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl .e-input.e-control.e-keyboard,
478
+ .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,
479
+ .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 {
480
+ @if $skin-name == 'bootstrap5' {
481
+ padding-left: 0;
482
+ }
483
+ @else {
484
+ padding-left: $pv-zoom-drop-down-padding-left;
485
+ }
486
+ }
487
+
488
+ .e-pv-toolbar.e-rtl .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl .e-input.e-control.e-keyboard,
489
+ .e-pv-toolbar.e-rtl .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl .e-input.e-control.e-keyboard,
490
+ .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,
491
+ .e-pv-toolbar.e-rtl .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl .e-input.e-control.e-keyboard {
492
+ padding-right: $pv-zoom-drop-down-padding-left;
493
+ }
494
+
495
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl .e-search-icon.e-ddl-icon,
496
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl .e-search-icon.e-ddl-icon,
497
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl .e-search-icon.e-ddl-icon,
498
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl .e-search-icon.e-ddl-icon {
499
+ background-color: transparent;
500
+ border-left: 0;
501
+ margin-bottom: $pv-zoom-drop-down-margin-bottom;
502
+ margin-left: $pv-zoom-drop-down-margin-left;
503
+ margin-top: $pv-zoom-drop-down-margin-top;
504
+ padding-right: $pv-zoom-drop-down-padding-right;
505
+ }
506
+
507
+ .e-pv-zoom-drop-down-container .e-input-group.e-control-wrapper .e-input-group-icon,
508
+ .e-pv-annotation-fontsize-container .e-input-group.e-control-wrapper.e-pv-prop-dropdown .e-input-group-icon,
509
+ .e-pv-annotation-fontname-container .e-input-group.e-control-wrapper.e-pv-prop-dropdown .e-input-group-icon {
510
+ @if $skin-name == 'bootstrap5' {
511
+ border-left: 0;
512
+ margin-bottom: $pv-zoom-drop-down-margin-bottom;
513
+ margin-left: $pv-zoom-drop-down-margin-left;
514
+ margin-top: $pv-zoom-drop-down-margin-top;
515
+ padding-right: $pv-zoom-drop-down-padding-right;
516
+ }
517
+ }
518
+
519
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl .e-input.e-control,
520
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl .e-input.e-control,
521
+ .e-input-group.e-control-wrapper.e-pv-current-page-box .e-numerictextbox.e-input,
522
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl .e-input.e-control,
523
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl .e-input.e-control {
524
+ text-align: $pv-text-align;
525
+ }
526
+
527
+ .e-pv-zoom-drop-down.e-ddl.e-popup.e-popup-open,
528
+ .e-pv-prop-dropdown.e-ddl.e-popup.e-popup-open {
529
+ text-align: $pv-zoom-drop-down-popup-text-align;
530
+ }
531
+
532
+ .e-pv-zoom-drop-down-rtl.e-ddl.e-popup.e-popup-open,
533
+ .e-pv-prop-dropdown-rtl.e-ddl.e-popup.e-popup-open {
534
+ text-align: right;
535
+ }
536
+
537
+ .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,
538
+ .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 {
539
+ color: $pv-zoom-drop-down-active-color;
540
+ }
541
+
542
+ .e-pv-zoom-drop-down.e-popup.e-popup-open,
543
+ .e-pv-zoom-drop-down-rtl.e-popup.e-popup-open {
544
+ min-height: $pv-zoom-drop-down-popup-height;
545
+ min-width: $pv-zoom-drop-down-popup-width;
546
+ }
547
+
548
+ .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) {
549
+ border: $pv-current-page-border;
550
+ border-radius: $pv-current-page-border-radius;
551
+ @if $skin-name == 'bootstrap5' {
552
+ box-shadow: none;
553
+ }
554
+ }
555
+
556
+ .e-pv-annotation-toolbar,
557
+ .e-pv-mobile-annotation-toolbar,
558
+ .e-pv-formdesigner-toolbar {
559
+ @if $skin-name == 'bootstrap5' {
560
+ border: solid $border-light;
561
+ border-width: 1px;
562
+ }
563
+ }
564
+
565
+ .e-pv-zoom-drop-down.e-ddl.e-valid-input.e-input-focus,
566
+ .e-pv-zoom-drop-down-rtl.e-ddl.e-valid-input.e-input-focus {
567
+ @if $skin-name != 'bootstrap5' {
568
+ box-shadow: none;
569
+ }
570
+ }
571
+
572
+ .e-pv-password-popup.e-dialog .e-dlg-header,
573
+ .e-pv-corrupted-popup.e-dialog .e-pv-corrupted-popup-header,
574
+ .e-pv-notification-popup.e-dialog .e-dlg-header {
575
+ font-size: $pv-corrupted-pop-header-font-size;
576
+ font-weight: $pv-dialog-pop-header-font-weight;
577
+ letter-spacing: $pv-corrupted-pop-header-letter-spacing;
578
+ }
579
+
580
+ .e-pv-password-popup.e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn,
581
+ .e-pv-corrupted-popup.e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn,
582
+ .e-pv-notification-popup.e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
583
+ @if $skin-name != 'bootstrap4' {
584
+ padding-top: $pv-dialog-pop-close-icon-padding-top;
585
+ }
586
+ }
587
+
588
+ .e-pv-password-popup.e-dialog {
589
+ height: $pv-password-dialog-height;
590
+ margin: 0 10px;
591
+ max-width: $pv-password-dialog-width;
592
+ }
593
+
594
+ .e-pv-corrupted-popup.e-dialog {
595
+ height: $pv-corrupted-dialog-height;
596
+ margin: 0 10px;
597
+ max-width: $pv-corrupted-dialog-width;
598
+ }
599
+
600
+ .e-pv-corrupted-popup.e-dialog .e-dlg-header-content,
601
+ .e-pv-notification-popup.e-dialog .e-dlg-header-content {
602
+ border-bottom: $pv-corrupted-dialog-header-border-bottom;
603
+ }
604
+
605
+ .e-pv-corrupted-popup.e-dialog .e-footer-content,
606
+ .e-pv-notification-popup.e-dialog .e-footer-content {
607
+ border-top: $pv-corrupted-dialog-footer-border-top;
608
+ }
609
+
610
+ .e-pv-corrupted-popup.e-dialog .e-dlg-content {
611
+ padding-bottom: $pv-corrupted-dialog-pop-content-padding-bottom;
612
+ padding-top: $pv-corrupted-dialog-pop-content-padding-top;
613
+ }
614
+
615
+ .e-pv-password-popup.e-dialog span[id*='_prompt'] {
616
+ font-size: $pv-password-pop-content-font-size;
617
+ letter-spacing: $pv-password-pop-content-letter-spacing;
618
+ }
619
+
620
+ .e-pv-password-popup.e-dialog .e-dlg-header-content {
621
+ border-bottom: $pv-password-dialog-header-border-bottom;
622
+ }
623
+
624
+ .e-pv-password-popup.e-dialog .e-footer-content {
625
+ border-top: $pv-password-dialog-footer-border-top;
626
+ }
627
+
628
+ .e-pv-password-popup.e-dialog .e-dlg-content {
629
+ padding-bottom: $pv-password-dialog-pop-content-padding-bottom;
630
+ padding-top: $pv-password-pop-content-padding-top;
631
+ }
632
+
633
+ .e-pv-current-page-box.e-input-group.e-control-wrapper input.e-input {
634
+ max-height: $pv-current-page-height;
635
+ padding-bottom: $pv-current-page-padding-bottom;
636
+ @if $skin-name == 'bootstrap5' {
637
+ max-height: 30px;
638
+ padding-bottom: 1px;
639
+ }
640
+ }
641
+
642
+ .e-pv-toolbar:not(.e-rtl) .e-pv-current-page-box.e-input-group.e-control-wrapper input.e-input {
643
+ padding-left: $pv-current-page-padding-left;
644
+ }
645
+
646
+ .e-pv-toolbar.e-rtl .e-pv-current-page-box.e-input-group.e-control-wrapper input.e-input {
647
+ padding-right: $pv-current-page-padding-left;
648
+ }
649
+
650
+ .e-pv-zoom-drop-down.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before,
651
+ .e-pv-prop-dropdown.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before,
652
+ .e-pv-zoom-drop-down-rtl.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before,
653
+ .e-pv-prop-dropdown-rtl.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before {
654
+ transform: $pv-zoom-drop-down-transform;
655
+ }
656
+
657
+ .e-input-group.e-control-wrapper.e-pv-current-page-box:not(.e-float-icon-left):not(.e-float-input)::after,
658
+ .e-input-group.e-control-wrapper.e-pv-current-page-box:not(.e-float-icon-left):not(.e-float-input)::before,
659
+ .e-input-group.e-control-wrapper.e-pv-current-page-box.e-input-focus:not(.e-float-icon-left):not(.e-float-input)::after,
660
+ .e-input-group.e-control-wrapper.e-pv-current-page-box.e-input-focus:not(.e-float-icon-left):not(.e-float-input)::before,
661
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl::after,
662
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl::before,
663
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl.e-input-focus::after,
664
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl.e-input-focus::before,
665
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl::after,
666
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl::before,
667
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-input-focus::after,
668
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-input-focus::before,
669
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl::after,
670
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl::before,
671
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl.e-input-focus::after,
672
+ .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl.e-input-focus::before,
673
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl::after,
674
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl::before,
675
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl.e-input-focus::after,
676
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl.e-input-focus::before {
677
+ background: $pv-material-line-background;
678
+ }
679
+
680
+ .e-pv-sidebar-container {
681
+ background: $pv-sidebar-container-background;
682
+ border-top: $pv-sidebar-container-border-top;
683
+ bottom: $pv-sidebar-container-bottom;
684
+ position: $pv-sidebar-container-position;
685
+ top: $pv-sidebar-container-top;
686
+ transition: transform .3s ease;
687
+ transition: transform .3s ease, -webkit-transform .3s ease;
688
+ transition: -webkit-transform .3s ease;
689
+ transition-duration: 200ms;
690
+ transition-timing-function: ease;
691
+ width: $pv-sidebar-container-width;
692
+ z-index: $pv-sidebar-container-z-index;
693
+ }
694
+
695
+ .e-pv-main-container {
696
+ height: $pv-main-container-height;
697
+ overflow: $pv-main-container-overflow;
698
+ position: $pv-main-container-position;
699
+ width: $pv-main-container-width;
700
+ }
701
+
702
+ .e-pv-viewer-main-container {
703
+ background-color: $pv-background;
704
+ bottom: $pv-viewer-main-container-bottom;
705
+ left: $pv-viewer-main-container-left;
706
+ position: $pv-viewer-main-container-position;
707
+ right: $pv-viewer-main-container-right;
708
+ top: $pv-viewer-main-container-top;
709
+ }
710
+
711
+ .e-pdfviewer:not(.e-pv-mobile-view) .e-pv-viewer-main-container {
712
+ min-width: $pv-viewer-main-container-min-width;
713
+ }
714
+
715
+ .e-pdfviewer:not(.e-pv-mobile-view) .e-pv-main-container {
716
+ min-height: 500px;
717
+ }
718
+
719
+ .e-pv-sidebar-content-container {
720
+ border-top: $pv-sidebar-content-container-border-top;
721
+ display: $pv-sidebar-content-container-display;
722
+ float: $pv-sidebar-content-container-float;
723
+ height: $pv-sidebar-content-container-height;
724
+ position: $pv-sidebar-content-container-position;
725
+ transition-duration: 200ms;
726
+ transition-timing-function: ease;
727
+ width: $pv-sidebar-content-container-width;
728
+ }
729
+
730
+ .e-pv-sidebar-content-container.e-thumbnail {
731
+ height: 100%;
732
+ left: 1px;
733
+ position: unset;
734
+ }
735
+
736
+ .e-pv-sidebar-title-container {
737
+ background: $pv-sidebar-title-container-background;
738
+ border: $pv-sidebar-toolbar-border;
739
+ border-width: $pv-sidebar-title-container-border-width;
740
+ height: $pv-sidebar-title-container-height;
741
+ position: $pv-sidebar-title-container-position;
742
+ top: $pv-sidebar-title-container-top;
743
+ width: $pv-sidebar-title-container-width;
744
+ }
745
+
746
+ .e-bigger .e-pv-sidebar-title-container {
747
+ @if $skin-name == 'bootstrap4' {
748
+ height: $pv-sidebar-title-container-height-big;
749
+ }
750
+ }
751
+
752
+ .e-pv-sidebar-content-container:not(.e-right) .e-pv-sidebar-title-container {
753
+ @if $skin-name == 'bootstrap4' {
754
+ border-right: $pv-sidebar-content-scrollbar-track-border;
755
+ }
756
+ }
757
+
758
+ .e-pv-sidebar-content-container.e-right .e-pv-sidebar-title-container {
759
+ @if $skin-name == 'bootstrap4' {
760
+ border-left: $pv-sidebar-content-scrollbar-track-border;
761
+ }
762
+ }
763
+
764
+ .e-bigger .e-pv-sidebar-title-container {
765
+ @if $skin-name == 'bootstrap4' {
766
+ height: $pv-sidebar-title-container-height-big;
767
+ }
768
+ }
769
+
770
+ .e-pv-sidebar-content-container:not(.e-right) .e-pv-sidebar-title-container {
771
+ @if $skin-name == 'bootstrap4' {
772
+ border-right: $pv-sidebar-content-scrollbar-track-border;
773
+ }
774
+ }
775
+
776
+ .e-pv-sidebar-content-container.e-right .e-pv-sidebar-title-container {
777
+ @if $skin-name == 'bootstrap4' {
778
+ border-left: $pv-sidebar-content-scrollbar-track-border;
779
+ }
780
+ }
781
+
782
+ .e-pv-sidebar-title {
783
+ color: $pv-sidebar-title-color;
784
+ font-size: $pv-sidebar-title-font-size;
785
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'tailwind') {
786
+ font-weight: 500;
787
+ }
788
+ height: $pv-sidebar-title-height;
789
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'tailwind') {
790
+ line-height: $pv-sidebar-title-line-height;
791
+ }
792
+ margin: $pv-sidebar-title-margin;
793
+ position: $pv-sidebar-title-position;
794
+ text-align: $pv-sidebar-title-text-align;
795
+ top: $pv-sidebar-title-top;
796
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'tailwind') {
797
+ vertical-align: $pv-sidebar-title-vertical-align;
798
+ }
799
+ @if $skin-name == 'FluentUI' {
800
+ padding: 8px;
801
+ }
802
+ }
803
+
804
+ .e-bigger .e-pv-sidebar-title {
805
+ @if $skin-name == 'bootstrap4' {
806
+ top: $pv-sidebar-title-top-big;
807
+ }
808
+ }
809
+
810
+ .e-bigger .e-pv-sidebar-title,
811
+ .e-bigger .e-pv-total-page {
812
+ @if $skin-name == 'bootstrap4' {
813
+ font-size: $pv-label-font-size-big;
814
+ }
815
+ }
816
+
817
+ .e-pv-sidebar-title.e-left {
818
+ left: $pv-sidebar-title-left;
819
+ @if $skin-name == 'bootstrap4' {
820
+ margin-left: 12px;
821
+ }
822
+ width: $pv-sidebar-title-width;
823
+ }
824
+
825
+ .e-pv-sidebar-title.e-right {
826
+ @if $skin-name == 'bootstrap4' {
827
+ margin-right: 12px;
828
+ }
829
+ right: $pv-sidebar-title-left;
830
+ }
831
+
832
+ .e-pv-sidebar-toolbar {
833
+ background: $pv-sidebar-toolbar-background;
834
+ border: $pv-sidebar-toolbar-border;
835
+ border-width: $pv-sidebar-toolbar-border-width;
836
+ bottom: $pv-sidebar-toolbar-bottom;
837
+ height: $pv-sidebar-toolbar-height;
838
+ position: $pv-sidebar-toolbar-position;
839
+ width: $pv-sidebar-toolbar-width;
840
+ z-index: $pv-sidebar-toolbar-z-index;
841
+ }
842
+
843
+ .e-bigger .e-pv-sidebar-toolbar {
844
+ @if $skin-name == 'bootstrap4' or $skin-name == 'FluentUI' {
845
+ width: $pv-sidebar-toolbar-width-big;
846
+ }
847
+ }
848
+
849
+ .e-pv-sidebar-content {
850
+ -webkit-overflow-scrolling: touch;
851
+ background: $pv-sidebar-content-background;
852
+ bottom: $pv-sidebar-content-bottom;
853
+ overflow: $pv-sidebar-content-overflow;
854
+ overflow-x: $pv-sidebar-content-overflow-x;
855
+ position: $pv-sidebar-content-position;
856
+ top: $pv-sidebar-content-top;
857
+ width: $pv-sidebar-content-width;
858
+ z-index: $pv-sidebar-content-z-index;
859
+ }
860
+
861
+ .e-pv-thumbnail-anchor-node:hover {
862
+ text-decoration: auto;
863
+ }
864
+
865
+ .e-pv-sidebar-content.e-thumbnail {
866
+ top: 1px;
867
+ }
868
+
869
+ .e-bigger .e-pv-sidebar-content {
870
+ @if $skin-name == 'bootstrap4' {
871
+ top: $pv-sidebar-content-top-big;
872
+ }
873
+ }
874
+
875
+ .e-pv-sidebar-resizer {
876
+ background: $pv-sidebar-resizer-background;
877
+ border: $pv-sidebar-resizer-border;
878
+ border-width: $pv-sidebar-resizer-border-width;
879
+ color: $pv-sidebar-resizer-color;
880
+ cursor: $pv-sidebar-resizer-cursor;
881
+ height: $pv-sidebar-resizer-height;
882
+ position: $pv-sidebar-resizer-position;
883
+ width: $pv-sidebar-resizer-width;
884
+ z-index: $pv-sidebar-resizer-z-index;
885
+ }
886
+
887
+ .e-pv-sidebar-content::-webkit-scrollbar {
888
+ width: $pv-sidebar-content-scrollbar-width;
889
+ }
890
+
891
+ .e-pv-sidebar-content::-webkit-scrollbar-track {
892
+ -webkit-box-shadow: $pv-sidebar-content-scrollbar-track-box-shadow;
893
+ background: $pv-sidebar-content-scrollbar-track-background;
894
+ border: $pv-sidebar-content-scrollbar-track-border;
895
+ }
896
+
897
+ .e-pv-sidebar-content::-webkit-scrollbar-thumb {
898
+ -webkit-box-shadow: $pv-sidebar-content-scrollbar-thumb-box-shadow;
899
+ background: $pv-sidebar-content-scrollbar-thumb-background;
900
+ background-clip: $pv-sidebar-content-scrollbar-thumb-background-clip;
901
+ border: $pv-sidebar-content-scrollbar-thumb-border;
902
+ border-radius: $pv-sidebar-content-scrollbar-thumb-border-radius;
903
+ }
904
+
905
+ .e-pv-thumbnail-view-button.e-btn {
906
+ background: $pv-thumbnail-view-button-background;
907
+ border: $pv-thumbnail-view-button-border;
908
+ border-radius: $pv-thumbnail-border-radius;
909
+ box-shadow: $pv-thumbnail-view-button-box-shadow;
910
+ font-weight: $pv-thumbnail-view-button-font-weight;
911
+ height: $pv-thumbnail-view-button-height;
912
+ line-height: $pv-thumbnail-view-button-selection-line-height;
913
+ margin: $pv-thumbnail-view-button-margin;
914
+ outline: $pv-thumbnail-outline;
915
+ padding: $pv-thumbnail-view-button-padding;
916
+ width: $pv-thumbnail-view-button-width;
917
+ @if $skin-name == 'bootstrap5' {
918
+ align-items: center;
919
+ display: flex;
920
+ justify-content: center;
921
+ }
922
+ @if $skin-name == 'tailwind' or $skin-name == 'FluentUI' {
923
+ align-items: center;
924
+ display: flex;
925
+ justify-content: center;
926
+ }
927
+ }
928
+
929
+ .e-bigger .e-pv-thumbnail-view-button.e-btn {
930
+ @if $skin-name == 'bootstrap4' {
931
+ height: $pv-thumbnail-view-button-height-big;
932
+ margin: $pv-thumbnail-view-button-margin-big;
933
+ padding: $pv-thumbnail-view-button-padding-big;
934
+ width: $pv-thumbnail-view-button-width-big;
935
+ }
936
+ @if $skin-name == 'FluentUI' {
937
+ margin: 12px 6px;
938
+ }
939
+ }
940
+
941
+ .e-pv-thumbnail-view-button-selection.e-pv-thumbnail-view-button.e-btn,
942
+ .e-pv-bookmark-button-selection.e-pv-bookmark-button.e-btn {
943
+ background: $pv-thumbnail-view-button-selection-background;
944
+ border: $pv-thumbnail-view-button-selection-border;
945
+ border-radius: $pv-thumbnail-border-selection-radius;
946
+ @if $skin-name == 'bootstrap4' {
947
+ color: $pv-thumbnail-border-selection-font-color;
948
+ }
949
+ line-height: $pv-thumbnail-view-button-selection-line-height;
950
+ padding: $pv-thumbnail-view-button-selection-padding;
951
+ }
952
+
953
+ .e-bigger .e-pv-thumbnail-view-button-selection.e-pv-thumbnail-view-button.e-btn,
954
+ .e-bigger .e-pv-bookmark-button-selection.e-pv-bookmark-button.e-btn {
955
+ @if $skin-name == 'bootstrap4' {
956
+ padding: $pv-thumbnail-view-button-selection-padding-big;
957
+ }
958
+ }
959
+
960
+ .e-pv-thumbnail-view-button-selection.e-pv-thumbnail-view-button.e-btn {
961
+ @if $skin-name == 'bootstrap4' {
962
+ margin: $pv-thumbnail-view-button-margin-selection;
963
+ }
964
+ }
965
+
966
+ .e-pv-bookmark-button-selection.e-pv-bookmark-button.e-btn {
967
+ @if $skin-name == 'bootstrap4' {
968
+ line-height: $pv-thumbnail-button-selection-line-height;
969
+ margin: $pv-bookmark-button-margin-selection;
970
+ }
971
+ }
972
+
973
+ .e-bigger .e-pv-thumbnail-view-button-selection.e-pv-thumbnail-view-button.e-btn {
974
+ @if $skin-name == 'bootstrap4' {
975
+ margin: $pv-thumbnail-view-button-margin-big;
976
+ }
977
+ }
978
+
979
+ .e-bigger .e-pv-bookmark-button-selection.e-pv-bookmark-button.e-btn {
980
+ @if $skin-name == 'bootstrap4' {
981
+ line-height: $pv-thumbnail-view-button-selection-line-height;
982
+ margin: $pv-bookmark-button-margin-big;
983
+ }
984
+ }
985
+
986
+ .e-bigger .e-pv-bookmark-button.e-btn {
987
+ @if $skin-name == 'bootstrap4' {
988
+ line-height: $pv-thumbnail-button-selection-line-height;
989
+ }
990
+ @if $skin-name == 'FluentUI' {
991
+ margin: 12px 6px;
992
+ }
993
+ }
994
+
995
+ .e-pv-bookmark-button.e-btn {
996
+ background: $pv-bookmark-button-background;
997
+ border: $pv-bookmark-button-border;
998
+ box-shadow: $pv-bookmark-button-box-shadow;
999
+ font-weight: $pv-thumbnail-view-button-font-weight;
1000
+ height: $pv-bookmark-button-height;
1001
+ margin: $pv-bookmark-button-margin;
1002
+ outline: $pv-thumbnail-outline;
1003
+ padding: $pv-bookmark-button-padding;
1004
+ width: $pv-bookmark-button-width;
1005
+ @if $skin-name == 'bootstrap5' {
1006
+ align-items: center;
1007
+ display: flex;
1008
+ justify-content: center;
1009
+ }
1010
+ @if $skin-name == 'tailwind' or $skin-name == 'FluentUI' {
1011
+ align-items: center;
1012
+ display: flex;
1013
+ justify-content: center;
1014
+ }
1015
+ }
1016
+
1017
+ .e-bigger .e-pv-bookmark-button.e-btn {
1018
+ @if $skin-name == 'bootstrap4' {
1019
+ height: $pv-bookmark-button-height-big;
1020
+ margin: $pv-bookmark-button-margin-big;
1021
+ padding: $pv-bookmark-button-padding-big;
1022
+ width: $pv-bookmark-button-width-big;
1023
+ }
1024
+ }
1025
+
1026
+ .e-pv-title-close-div.e-btn {
1027
+ background: $pv-title-close-background;
1028
+ border: $pv-title-close-border;
1029
+ box-shadow: $pv-title-close-box-shadow;
1030
+ @if $skin-name == 'bootstrap4' {
1031
+ color: $pv-title-close-color;
1032
+ }
1033
+ height: $pv-title-close-height;
1034
+ left: $pv-title-close-left;
1035
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'tailwind') {
1036
+ line-height: $pv-sidebar-title-line-height;
1037
+ }
1038
+ padding: $pv-title-close-padding;
1039
+ position: $pv-title-close-position;
1040
+ right: $pv-title-close-right;
1041
+ top: $pv-title-close-top;
1042
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'tailwind') {
1043
+ vertical-align: $pv-sidebar-title-vertical-align;
1044
+ }
1045
+ width: $pv-title-close-width;
1046
+ }
1047
+
1048
+ .e-bigger .e-pv-title-close-div.e-btn {
1049
+ @if $skin-name == 'bootstrap4' {
1050
+ top: $pv-title-close-top-big;
1051
+ }
1052
+ }
1053
+
1054
+ .e-pv-sidebar-toolbar-splitter {
1055
+ background: $pv-sidebar-toolbar-splitter-background;
1056
+ bottom: $pv-sidebar-toolbar-splitter-bottom;
1057
+ height: $pv-sidebar-toolbar-splitter-height;
1058
+ position: $pv-sidebar-toolbar-splitter-position;
1059
+ width: $pv-sidebar-toolbar-splitter-width;
1060
+ z-index: $pv-sidebar-toolbar-splitter-z-index;
1061
+ }
1062
+
1063
+ .e-pv-sidebar-content-splitter {
1064
+ background: $pv-sidebar-content-splitter-background;
1065
+ height: $pv-sidebar-content-splitter-height;
1066
+ position: $pv-sidebar-content-splitter-position;
1067
+ top: $pv-sidebar-content-splitter-top;
1068
+ width: $pv-sidebar-content-splitter-width;
1069
+ z-index: $pv-sidebar-content-splitter-z-index;
1070
+ }
1071
+
1072
+ .e-bigger .e-pv-sidebar-content-splitter {
1073
+ @if $skin-name == 'bootstrap4' {
1074
+ top: $pv-sidebar-content-splitter-top-big;
1075
+ }
1076
+ }
1077
+
1078
+ .e-pv-thumbnail-view {
1079
+ bottom: $pv-thumbnail-view-bottom;
1080
+ height: $pv-thumbnail-view-height;
1081
+ padding: $pv-thumbnail-view-padding;
1082
+ position: $pv-thumbnail-view-position;
1083
+ top: $pv-thumbnail-view-top;
1084
+ }
1085
+
1086
+ .e-pv-thumbnail {
1087
+ height: $pv-thumbnail-height;
1088
+ margin: $pv-thumbnail-margin;
1089
+ width: $pv-thumbnail-width;
1090
+ }
1091
+
1092
+ .e-pv-thumbnail-number {
1093
+ color: $pv-sidebar-title-color;
1094
+ font-family: $pv-thumbnail-number-font-family;
1095
+ padding-left: $pv-thumbnail-number-padding-left;
1096
+ padding-right: $pv-thumbnail-number-padding-left;
1097
+ padding-top: $pv-thumbnail-number-padding-top;
1098
+ }
1099
+
1100
+ .e-pv-thumbnail-selection-ring {
1101
+ @if $skin-name == 'bootstrap5' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' {
1102
+ border: $pv-thumbnail-selection-ring-border;
1103
+ }
1104
+ border-radius: $pv-thumbnail-selection-ring-border-radius;
1105
+ box-shadow: $pv-thumbnail-selection-ring-box-shadow;
1106
+ padding: $pv-thumbnail-selection-ring-padding;
1107
+ }
1108
+
1109
+ .e-pv-thumbnail-image {
1110
+ background-clip: $pv-thumbnail-image-background-clip;
1111
+ background-color: $pv-thumbnail-image-background-color;
1112
+ height: $pv-thumbnail-image-height;
1113
+ width: $pv-thumbnail-image-width;
1114
+ }
1115
+
1116
+ .e-pv-thumbnail-hover {
1117
+ border: $pv-thumbnail-hover-border;
1118
+ border-radius: $pv-thumbnail-hover-border-radius;
1119
+ box-shadow: $pv-thumbnail-hover-box-shadow;
1120
+ cursor: $pv-thumbnail-hover-cursor;
1121
+ padding: $pv-thumbnail-hover-padding;
1122
+ }
1123
+
1124
+ .e-pv-thumbnail-focus {
1125
+ border: $pv-thumbnail-focus-border;
1126
+ border-radius: $pv-thumbnail-focus-border-radius;
1127
+ box-shadow: $pv-thumbnail-focus-box-shadow;
1128
+ cursor: $pv-thumbnail-focus-cursor;
1129
+ padding: $pv-thumbnail-focus-padding;
1130
+ }
1131
+
1132
+ .e-pv-thumbnail-selection {
1133
+ border: $pv-thumbnail-selection-border;
1134
+ border-radius: $pv-thumbnail-selection-border-radius;
1135
+ box-shadow: $pv-thumbnail-selection-box-shadow;
1136
+ cursor: $pv-thumbnail-selection-cursor;
1137
+ padding: $pv-thumbnail-selection-padding;
1138
+ }
1139
+
1140
+ .e-pv-thumbnail-row {
1141
+ -ms-flex-wrap: $pv-thumbnail-row-flex-wrap; // IE10
1142
+ display: $pv-thumbnail-row-display;
1143
+ flex-wrap: $pv-thumbnail-row-flex-wrap;
1144
+ }
1145
+
1146
+ .e-pv-thumbnail-row {
1147
+ display: -ms-flexbox; // IE10
1148
+ }
1149
+
1150
+ .e-pv-thumbnail-column {
1151
+ -ms-flex: $pv-thumbnail-column-flex; // IE10
1152
+ flex: $pv-thumbnail-column-flex;
1153
+ }
1154
+
1155
+ .e-pv-thumbnail-column img {
1156
+ display: block;
1157
+ margin-left: auto;
1158
+ margin-right: auto;
1159
+ }
1160
+
1161
+ .e-pv-bookmark-view {
1162
+ height: $pv-bookmark-view-height;
1163
+ overflow: $pv-bookmark-view-overflow;
1164
+ padding-top: $pv-bookmark-view-padding-top;
1165
+ position: $pv-bookmark-view-position;
1166
+ }
1167
+
1168
+ div >.e-pv-bookmark-icon.e-pv-icon {
1169
+ float: $pv-bookmark-icon-float;
1170
+ font-size: $pv-bookmark-icon-font-size;
1171
+ padding-left: $pv-bookmark-icon-padding-left;
1172
+ padding-right: $pv-bookmark-icon-padding-right;
1173
+ }
1174
+
1175
+ .e-pv-bookmark-title {
1176
+ padding-left: $pv-bookmark-title-padding-left;
1177
+ }
1178
+
1179
+ .e-bigger div >.e-pv-bookmark-icon.e-pv-icon {
1180
+ @if $skin-name == 'bootstrap4' {
1181
+ font-size: $pv-icon-font-size-big;
1182
+ }
1183
+ }
1184
+
1185
+ .e-pv-sidebar-bookmark-title {
1186
+ color: $pv-sidebar-bookmark-title-color;
1187
+ font-family: $pv-sidebar-bookmark-title-font-family;
1188
+ font-size: $pv-sidebar-bookmark-title-font-size;
1189
+ }
1190
+
1191
+ .e-pv-bookmark-view::-webkit-scrollbar {
1192
+ height: $pv-sidebar-content-scrollbar-width;
1193
+ width: $pv-sidebar-content-scrollbar-width;
1194
+ }
1195
+
1196
+ .e-pv-bookmark-view::-webkit-scrollbar-track {
1197
+ -webkit-box-shadow: $pv-sidebar-content-scrollbar-track-box-shadow;
1198
+ background: $pv-sidebar-content-scrollbar-track-background;
1199
+ border: $pv-sidebar-content-scrollbar-track-border;
1200
+ }
1201
+
1202
+ .e-pv-bookmark-view::-webkit-scrollbar-thumb {
1203
+ -webkit-box-shadow: $pv-sidebar-content-scrollbar-thumb-box-shadow;
1204
+ background: $pv-sidebar-content-scrollbar-thumb-background;
1205
+ background-clip: $pv-sidebar-content-scrollbar-thumb-background-clip;
1206
+ border: $pv-sidebar-content-scrollbar-thumb-border;
1207
+ border-radius: $pv-sidebar-content-scrollbar-thumb-border-radius;
1208
+ }
1209
+
1210
+ .e-pv-bookmark-view > .e-ul {
1211
+ height: inherit;
1212
+ overflow: $-treeview-overflow;
1213
+ }
1214
+
1215
+ .e-pv-bookmark-view .e-fullrow {
1216
+ height: $-treeview-fullrow-height;
1217
+ }
1218
+
1219
+ .e-pv-bookmark-view .e-icon-collapsible::before,
1220
+ .e-pv-bookmark-view .e-icon-expandable::before {
1221
+ display: $pv-bookmark-view-icon-collapsible-display;
1222
+ height: $pv-bookmark-view-icon-collapsible-height;
1223
+ padding: $pv-bookmark-view-icon-collapsible-padding;
1224
+ width: $pv-bookmark-view-icon-collapsible-width;
1225
+ }
1226
+
1227
+ .e-pv-bookmark-view .e-list-item .e-ul {
1228
+ padding-left: $pv-bookmark-view-list-ul-padding-left;
1229
+ }
1230
+
1231
+ .e-pv-bookmark-view .e-ul {
1232
+ padding: $pv-bookmark-view-ul-padding;
1233
+ }
1234
+
1235
+ .e-pv-text::selection {
1236
+ background: $pv-text-selection-bg-color;
1237
+ }
1238
+
1239
+ .e-pv-text .e-pv-maintaincontent {
1240
+ background: $pv-text-selection-bg-color;
1241
+ }
1242
+
1243
+ .e-pv-toolbar .e-pv-tbar-btn.e-pv-tbar-btn,
1244
+ .e-pv-annotation-toolbar .e-pv-tbar-btn.e-pv-tbar-btn,
1245
+ .e-pv-mobile-annotation-toolbar .e-pv-tbar-btn.e-pv-tbar-btn,
1246
+ .e-pv-mobile-annotation-toolbar .e-dropdown-btn.e-btn,
1247
+ .e-pv-annotation-toolbar .e-dropdown-btn.e-btn,
1248
+ .e-pv-formdesigner-toolbar .e-pv-tbar-btn.e-pv-tbar-btn,
1249
+ .e-pv-formdesigner-toolbar .e-dropdown-btn.e-btn,
1250
+ .e-pv-shapes-toolbar .e-pv-tbar-btn,
1251
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused,
1252
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item .e-menu-icon,
1253
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused .e-menu-icon,
1254
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused .e-caret,
1255
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item .e-caret {
1256
+ color: $pv-icon-color;
1257
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'bootstrap5-dark') {
1258
+ box-shadow: none;
1259
+ }
1260
+ }
1261
+
1262
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-selected .e-menu-icon,
1263
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-selected .e-caret {
1264
+ @if $skin-name == 'FluentUI' {
1265
+ color: $pv-item-selection-color;
1266
+ }
1267
+ }
1268
+
1269
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused .e-menu-icon,
1270
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused .e-caret {
1271
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'bootstrap5-dark') {
1272
+ box-shadow: none;
1273
+ color: inherit;
1274
+ }
1275
+ }
1276
+
1277
+ .e-pv-mobile-annotation-toolbar .e-tbar-btn:hover {
1278
+ background: $pv-comment-panel-bg;
1279
+ border-color: $pv-comment-panel-bg;
1280
+ }
1281
+
1282
+ .e-pv-mobile-annotation-toolbar .e-tbar-btn:focus {
1283
+ background: $pv-comment-panel-bg;
1284
+ border-color: $pv-comment-panel-bg;
1285
+ }
1286
+
1287
+ .e-pv-mobile-annotation-toolbar .e-hscroll.e-scroll-device .e-scroll-nav {
1288
+ transform: skewX(-1deg) translateX(6px);
1289
+ width: 56px;
1290
+ }
1291
+
1292
+ .e-pv-mobile-annotation-toolbar .e-hscroll.e-scroll-device .e-scroll-nav .e-nav-arrow {
1293
+ font-size: 14px;
1294
+ transform: skewX(4deg);
1295
+ }
1296
+
1297
+ .e-pv-mobile-annotation-toolbar .e-hscroll.e-scroll-device .e-scroll-nav.e-scroll-right-nav .e-nav-arrow {
1298
+ color: $pv-icon-color;
1299
+ }
1300
+
1301
+ .e-pv-toolbar .e-pv-tbar-btn.e-pv-tbar-btn:hover,
1302
+ .e-pv-annotation-toolbar .e-pv-tbar-btn.e-pv-tbar-btn:hover,
1303
+ .e-pv-annotation-toolbar .e-dropdown-btn.e-btn:hover,
1304
+ .e-pv-annotation-toolbar .e-dropdown-btn.e-btn:hover .e-caret,
1305
+ .e-pv-formdesigner-toolbar .e-pv-tbar-btn.e-pv-tbar-btn:hover,
1306
+ .e-pv-formdesigner-toolbar .e-dropdown-btn.e-btn:hover,
1307
+ .e-pv-formdesigner-toolbar .e-dropdown-btn.e-btn:hover .e-caret,
1308
+ .e-pv-shapes-toolbar .e-pv-tbar-btn:hover,
1309
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused:hover,
1310
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused .e-menu-icon:hover,
1311
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused .e-caret:hover,
1312
+ .e-pv-toolbar .e-pv-tbar-btn.e-pv-tbar-btn:focus,
1313
+ .e-pv-annotation-toolbar .e-pv-tbar-btn.e-pv-tbar-btn:focus,
1314
+ .e-pv-annotation-toolbar .e-dropdown-btn.e-btn.e-active,
1315
+ .e-pv-formdesigner-toolbar .e-pv-tbar-btn.e-pv-tbar-btn:focus,
1316
+ .e-pv-formdesigner-toolbar .e-dropdown-btn.e-btn:focus,
1317
+ .e-pv-formdesigner-toolbar .e-dropdown-btn.e-btn:focus .e-caret,
1318
+ .e-pv-shapes-toolbar .e-pv-tbar-btn:focus,
1319
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused:focus,
1320
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused .e-menu-icon:focus,
1321
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-valid-input:not(.e-input-focus):hover,
1322
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused .e-caret:focus,
1323
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl.e-valid-input:not(.e-input-focus):hover {
1324
+ @if $skin-name == 'bootstrap4' {
1325
+ color: $pv-icon-color-hover;
1326
+ }
1327
+ @if $skin-name == 'bootstrap5' {
1328
+ color: $white;
1329
+ }
1330
+ @if $skin-name == 'FluentUI' {
1331
+ color: $pv-item-selection-color;
1332
+ }
1333
+ }
1334
+
1335
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item:hover .e-menu-icon,
1336
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused:hover .e-menu-icon,
1337
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused:hover .e-caret {
1338
+ @if $skin-name == 'bootstrap4' {
1339
+ color: $pv-icon-color-hover;
1340
+ }
1341
+ }
1342
+
1343
+ .e-pv-toolbar .e-toolbar-item.e-overlay .e-pv-tbar-btn.e-pv-tbar-btn .e-pv-icon,
1344
+ .e-pv-annotation-toolbar .e-toolbar-item.e-overlay .e-pv-tbar-btn.e-pv-tbar-btn .e-pv-icon,
1345
+ .e-pv-annotation-toolbar .e-toolbar-item.e-overlay .e-dropdown-btn.e-btn .e-pv-icon,
1346
+ .e-pv-formdesigner-toolbar .e-toolbar-item.e-overlay .e-pv-tbar-btn.e-pv-tbar-btn .e-pv-icon,
1347
+ .e-pv-formdesigner-toolbar .e-toolbar-item.e-overlay .e-dropdown-btn.e-btn .e-pv-icon {
1348
+ color: $pv-icon-disable-color;
1349
+ }
1350
+
1351
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item {
1352
+ height: inherit;
1353
+ }
1354
+
1355
+ .e-pv-stamp.e-menu-wrapper ul .e-menu-item {
1356
+ @if $skin-name == 'fabric' {
1357
+ padding-top: 7px;
1358
+ }
1359
+ }
1360
+
1361
+ .e-pv-properties-line-start.e-btn:not(:hover),
1362
+ .e-pv-properties-line-end.e-btn:not(:hover),
1363
+ .e-pv-properties-line-style.e-btn:not(:hover),
1364
+ .e-pv-properties-line-fill-color-container .e-dropdown-btn.e-btn:not(:hover),
1365
+ .e-pv-properties-line-stroke-color-container .e-dropdown-btn.e-btn:not(:hover),
1366
+ .e-pv-properties-line-start.e-btn:not(:focus),
1367
+ .e-pv-properties-line-end.e-btn:not(:focus),
1368
+ .e-pv-properties-line-style.e-btn:not(:focus),
1369
+ .e-pv-properties-line-fill-color-container .e-dropdown-btn.e-btn:not(:focus),
1370
+ .e-pv-properties-line-stroke-color-container .e-dropdown-btn.e-btn:not(:focus),
1371
+ .e-pv-properties-line-start.e-btn:not(:active),
1372
+ .e-pv-properties-line-end.e-btn:not(:active),
1373
+ .e-pv-properties-line-style.e-btn:not(:active),
1374
+ .e-pv-properties-line-fill-color-container .e-dropdown-btn.e-btn:not(:active),
1375
+ .e-pv-properties-line-stroke-color-container .e-dropdown-btn.e-btn:not(:active) {
1376
+ @if $skin-name == 'bootstrap4' {
1377
+ background-color: $pv-prop-win-drop-down-bg;
1378
+ color: $pv-prop-win-drop-down-color;
1379
+ }
1380
+ }
1381
+
1382
+ .e-pv-properties-line-start.e-btn:hover,
1383
+ .e-pv-properties-line-end.e-btn:hover,
1384
+ .e-pv-properties-line-style.e-btn:hover,
1385
+ .e-pv-properties-line-fill-color-container .e-dropdown-btn.e-btn:hover,
1386
+ .e-pv-properties-line-stroke-color-container .e-dropdown-btn.e-btn:hover {
1387
+ @if $skin-name == 'bootstrap4' {
1388
+ background-color: $pv-prop-win-drop-down-bg-hover;
1389
+ color: $pv-prop-win-drop-down-color-hover;
1390
+ }
1391
+ }
1392
+
1393
+ .e-pv-toolbar .e-pv-zoom-drop-down-container .e-ddl.e-input-group.e-control-wrapper .e-ddl-icon:hover {
1394
+ @if $skin-name == 'bootstrap4' {
1395
+ background-color: $pv-zoom-drop-down-bgcolor;
1396
+ color: $pv-icon-color-hover;
1397
+ }
1398
+ @if $skin-name == 'bootstrap5' {
1399
+ background-color: $secondary-bg-color-hover;
1400
+ color: $secondary-text-color-hover;
1401
+ }
1402
+ }
1403
+
1404
+ .e-pv-prop-dropdown .e-pv-annotation-fontsize-container ,
1405
+ .e-pv-prop-dropdown-rtl .e-pv-annotation-fontsize-container {
1406
+ @if $skin-name == 'bootstrap5' {
1407
+ padding-left: 0;
1408
+ width: 40px;
1409
+ }
1410
+ }
1411
+
1412
+ .e-pv-print-popup-container {
1413
+ height: $pv-print-popup-container-height;
1414
+ left: $pv-print-popup-container-left;
1415
+ overflow: $pv-print-popup-container-overflow;
1416
+ position: $pv-print-popup-container-position;
1417
+ top: $pv-print-popup-container-top;
1418
+ width: $pv-print-popup-container-width;
1419
+ z-index: $pv-print-popup-container-z-index;
1420
+ }
1421
+
1422
+ .e-pdfviewer .e-pv-print-popup-container .e-spinner-pane.e-spin-center.e-spin-show {
1423
+ background-color: $pv-print-overlay-bg-color;
1424
+ }
1425
+
1426
+ .e-pv-toolbar.e-toolbar:not(.e-rtl) .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn .e-pv-icon {
1427
+ padding: $pv-toolbar-popup-icon-padding;
1428
+ }
1429
+
1430
+ .e-pv-toolbar.e-toolbar.e-rtl .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn .e-pv-icon {
1431
+ padding: $pv-toolbar-popup-icon-padding-rtl;
1432
+ }
1433
+
1434
+ .e-pv-toolbar .e-tbar-btn.e-pv-tbar-btn.e-pv-select,
1435
+ .e-pv-annotation-toolbar .e-tbar-btn.e-pv-tbar-btn.e-pv-select,
1436
+ .e-pv-mobile-annotation-toolbar .e-tbar-btn.e-pv-tbar-btn.e-pv-select,
1437
+ .e-pv-mobile-toolbar .e-tbar-btn.e-pv-tbar-btn.e-pv-select,
1438
+ .e-pv-formdesigner-toolbar .e-tbar-btn.e-pv-tbar-btn.e-pv-select {
1439
+ background: $pv-item-selection-background-color;
1440
+ border: $pv-item-selection-border;
1441
+ border-radius: $pv-item-selection-border-radius;
1442
+ color: $pv-item-selection-color;
1443
+ }
1444
+
1445
+ .e-pv-toolbar .e-tbar-btn.e-pv-tbar-btn.e-pv-select .e-icons,
1446
+ .e-pv-annotation-toolbar .e-tbar-btn.e-pv-tbar-btn.e-pv-select .e-icons,
1447
+ .e-pv-mobile-annotation-toolbar .e-tbar-btn.e-pv-tbar-btn.e-pv-select .e-icons,
1448
+ .e-pv-mobile-toolbar .e-tbar-btn.e-pv-tbar-btn.e-pv-select .e-icons,
1449
+ .e-pv-formdesigner-toolbar .e-tbar-btn.e-pv-tbar-btn.e-pv-select .e-icons {
1450
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'bootstrap4') {
1451
+ color: $pv-item-selection-color;
1452
+ }
1453
+ }
1454
+
1455
+ .e-pv-sidebar-toolbar .e-pv-tbar-btn {
1456
+ color: $pv-icon-color;
1457
+ }
1458
+
1459
+ .e-pv-search-bar {
1460
+ background-color: $pv-search-box-background-color;
1461
+ border: $pv-search-box-border;
1462
+ border-radius: $pv-search-box-border-radius;
1463
+ box-shadow: $pv-search-box-box-shadow;
1464
+ height: $pv-search-box-height;
1465
+ padding: $pv-search-box-padding;
1466
+ position: absolute;
1467
+ width: $pv-search-box-width;
1468
+ z-index: 105;
1469
+ }
1470
+
1471
+ .e-bigger .e-pv-search-bar {
1472
+ @if $skin-name == 'bootstrap4' {
1473
+ height: $pv-search-box-height-big;
1474
+ padding: $pv-search-box-padding-big;
1475
+ width: $pv-search-box-width-big;
1476
+ }
1477
+ @if $skin-name == 'FluentUI' {
1478
+ height: 109px;
1479
+ padding: 16px;
1480
+ width: 368px;
1481
+ }
1482
+ }
1483
+
1484
+ .e-pv-search-input {
1485
+ height: $pv-search-input-height;
1486
+ width: $pv-search-input-width;
1487
+ }
1488
+
1489
+ .e-bigger .e-pv-search-input {
1490
+ @if $skin-name == 'bootstrap4' or $skin-name == 'FluentUI' {
1491
+ height: $pv-search-input-height-big;
1492
+ }
1493
+ }
1494
+
1495
+ .e-pv-search-input-mobile {
1496
+ height: $pv-search-input-height;
1497
+ }
1498
+
1499
+ .e-pv-match-case-container {
1500
+ margin-top: $pv-match-case-margin-top;
1501
+ }
1502
+
1503
+ .e-bigger .e-pv-match-case-container {
1504
+ @if $skin-name == 'bootstrap4' {
1505
+ margin-top: $pv-match-case-margin-top-big;
1506
+ }
1507
+ }
1508
+
1509
+ .e-pv-search-btn.e-btn {
1510
+ background-color: transparent;
1511
+ @if $skin-name == 'bootstrap4' {
1512
+ color: $pv-icon-color;
1513
+ }
1514
+ border: 0;
1515
+ box-shadow: none;
1516
+ height: $pv-search-btn-height;
1517
+ margin-top: $pv-search-btn-margin-top;
1518
+ width: $pv-search-btn-width;
1519
+ @if $skin-name == 'FluentUI' {
1520
+ padding-bottom: 0;
1521
+ padding-left: 1px;
1522
+ padding-right: 1px;
1523
+ padding-top: 1px;
1524
+ }
1525
+ }
1526
+
1527
+ .e-bigger .e-pv-search-btn.e-btn {
1528
+ @if $skin-name == 'bootstrap4' or $skin-name == 'FluentUI' {
1529
+ height: $pv-search-btn-height-big;
1530
+ padding: 2px;
1531
+ width: $pv-search-btn-width-big;
1532
+ }
1533
+ }
1534
+
1535
+ .e-pv-search-btn.e-btn:active {
1536
+ background-color: transparent;
1537
+ @if $skin-name == 'bootstrap4' {
1538
+ background-color: $pv-item-selection-background-color;
1539
+ color: $pv-item-selection-color;
1540
+ }
1541
+ }
1542
+
1543
+ .e-pv-search-btn.e-btn:hover:not(:disabled),
1544
+ .e-pv-sidebar-toolbar .e-pv-tbar-btn:hover:not(:disabled) {
1545
+ @if $skin-name == 'bootstrap4' {
1546
+ background-color: $pv-item-selection-background-color;
1547
+ color: $pv-item-selection-color;
1548
+ }
1549
+ }
1550
+
1551
+ .e-pv-search-btn.e-btn:disabled {
1552
+ @if $skin-name == 'bootstrap4' {
1553
+ color: $pv-thumbnail-icon-disable-color;
1554
+ }
1555
+ }
1556
+
1557
+ .e-pv-search-bar:not(.e-rtl) .e-pv-prev-search {
1558
+ margin-left: $pv-search-prev-margin-left;
1559
+ }
1560
+
1561
+ .e-pv-search-bar:not(.e-rtl) .e-pv-next-search {
1562
+ margin-left: $pv-search-next-margin-left;
1563
+ }
1564
+
1565
+ .e-pv-search-bar.e-rtl .e-pv-prev-search {
1566
+ margin-right: $pv-search-prev-margin-left;
1567
+ }
1568
+
1569
+ .e-pv-search-bar.e-rtl .e-pv-next-search {
1570
+ margin-right: $pv-search-next-margin-left;
1571
+ }
1572
+
1573
+ .e-pv-search-bar.e-rtl .e-pv-prev-search .e-pv-icon-search {
1574
+ @if $skin-name != 'bootstrap4' {
1575
+ padding-right: 5px;
1576
+ }
1577
+ }
1578
+
1579
+ .e-pv-notification-popup {
1580
+ height: $pv-notification-popup-height;
1581
+ margin: 0 10px;
1582
+ max-width: $pv-notification-popup-width;
1583
+ }
1584
+
1585
+ .e-pv-notification-popup.e-pv-notification-large-content {
1586
+ height: $pv-notification-popup-height-large-content;
1587
+ max-width: $pv-notification-popup-width-large-content;
1588
+ }
1589
+
1590
+ .e-pv-notification-popup .e-pv-notification-popup-content {
1591
+ font-size: $pv-notification-content-font-size;
1592
+ }
1593
+
1594
+ .e-pv-search-input.e-input-group .e-input-search-group-icon.e-input-group-icon {
1595
+ background: $pv-input-background;
1596
+ }
1597
+
1598
+ .e-pv-search-input.e-input-group:not(.e-disabled) .e-input-search-group-icon.e-input-group-icon:active {
1599
+ background: $pv-input-active-background;
1600
+ color: $pv-input-active-color;
1601
+ }
1602
+
1603
+ .e-pv-search-input.e-input-group:not(.e-disabled) .e-input-search-group-icon.e-input-group-icon:hover {
1604
+ color: $pv-input-hover-color;
1605
+ }
1606
+
1607
+ .e-pv-bookmark-container {
1608
+ background-color: $pv-bookmark-container-background-color;
1609
+ border: $pv-bookmark-container-border;
1610
+ }
1611
+
1612
+ .e-pv-bookmark-container .e-listview:not(.e-list-template) .e-list-item {
1613
+ border-bottom: $pv-bookmark-list-border-bottom;
1614
+ height: 48px;
1615
+ }
1616
+
1617
+ .e-pv-bookmark-container .e-pv-bookmark-view.e-listview .e-ul .e-list-item:last-child {
1618
+ border-bottom-width: 0;
1619
+ }
1620
+
1621
+ .e-pv-bookmark-container .e-listview .e-list-text {
1622
+ -ms-transform: translateY(-50%);
1623
+ position: absolute;
1624
+ top: 50%;
1625
+ transform: translateY(-50%);
1626
+ }
1627
+
1628
+ .e-pv-nav-toolbar.e-toolbar .e-tbar-btn:active .e-tbar-btn-text {
1629
+ color: $pv-nav-toolbar-text-color;
1630
+ }
1631
+
1632
+ .e-pv-nav-toolbar.e-toolbar .e-tbar-btn.e-tbtn-txt {
1633
+ background-color: transparent;
1634
+ border-width: 0;
1635
+ box-shadow: none;
1636
+ }
1637
+
1638
+ .e-pv-bookmark-container .e-pv-bookmark-view {
1639
+ padding-top: 0;
1640
+ }
1641
+
1642
+ .e-pv-bookmark-container .e-pv-bookmark-view .e-list-parent.e-ul {
1643
+ padding-left: 0;
1644
+ }
1645
+
1646
+ .e-pv-properties-color-container-style-prop .e-btn-icon.e-pv-annotation-color-icon.e-pv-icon,
1647
+ .e-pv-properties-color-container-style-prop .e-btn-icon.e-pv-annotation-stroke-icon.e-pv-icon {
1648
+ @if ($skin-name == 'bootstrap' or $skin-name == 'bootstrap-dark') {
1649
+ line-height: 1.71em;
1650
+ }
1651
+ border-bottom: 2px solid;
1652
+ margin-top: 0;
1653
+ padding-top: 5px;
1654
+ @if $skin-name == 'bootstrap5' {
1655
+ margin-top: -4px;
1656
+ padding-top: 0;
1657
+ }
1658
+ @if $skin-name == 'FluentUI' {
1659
+ line-height: 11px;
1660
+ }
1661
+ vertical-align: initial;
1662
+ }
1663
+
1664
+ .e-pv-properties-font-color-container .e-btn-icon.e-pv-annotation-textcolor-icon.e-pv-icon {
1665
+ @if ($skin-name == 'bootstrap' or $skin-name == 'bootstrap-dark') {
1666
+ line-height: 1.71em;
1667
+ }
1668
+ border-bottom: 2px solid;
1669
+ margin-top: 0;
1670
+ padding-top: 1px;
1671
+ vertical-align: initial;
1672
+ @if $skin-name == 'FluentUI' {
1673
+ line-height: 11px;
1674
+ padding-top: 5px;
1675
+ }
1676
+ }
1677
+
1678
+ .e-pv-properties-color-container-style-prop .e-btn-icon.e-pv-annotation-thickness-icon.e-pv-icon {
1679
+ margin-top: 0;
1680
+ padding-top: 7px;
1681
+ @if $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' {
1682
+ padding-top: 0;
1683
+ }
1684
+ vertical-align: initial;
1685
+ }
1686
+
1687
+ .e-pv-custom-annotation-thickness-container .e-btn-icon.e-pv-annotation-thickness-icon.e-pv-icon,
1688
+ .e-pv-custom-annotation-opacity-container .e-btn-icon.e-pv-annotation-opacity-icon.e-pv-icon {
1689
+ @if $skin-name == 'bootstrap5' {
1690
+ padding-top: 0;
1691
+ }
1692
+ vertical-align: initial;
1693
+ }
1694
+
1695
+ .e-pv-annotation-opacity-popup-container,
1696
+ .e-pv-annotation-thickness-popup-container {
1697
+ background-color: $pv-annotation-opacity-popup-background-color;
1698
+ box-shadow: $pv-annotation-opacity-popup-box-shadow;
1699
+ color: $pv-annotation-opacity-popup-color;
1700
+ height: auto;
1701
+ min-height: $pv-annotation-opacity-popup-min-height;
1702
+ padding: $pv-annotation-opacity-popup-padding;
1703
+ width: auto;
1704
+ }
1705
+
1706
+ .e-pv-annotation-opacity-label,
1707
+ .e-pv-annotation-opacity-indicator,
1708
+ .e-pv-annotation-thickness-label,
1709
+ .e-pv-annotation-thickness-indicator {
1710
+ float: left;
1711
+ font-family: inherit;
1712
+ font-size: inherit;
1713
+ }
1714
+
1715
+ .e-pv-annotation-opacity-slider-container.e-control-wrapper.e-slider-container.e-horizontal,
1716
+ .e-pv-annotation-thickness-slider-container.e-control-wrapper.e-slider-container.e-horizontal {
1717
+ float: left;
1718
+ height: auto;
1719
+ margin-left: $pv-annotation-opacity-slider-margin-left;
1720
+ margin-right: $pv-annotation-opacity-slider-margin-right;
1721
+ }
1722
+
1723
+ .e-dropdown-popup:not(.e-rtl) .e-pv-annotation-opacity-slider-container.e-control-wrapper.e-slider-container.e-horizontal,
1724
+ .e-dropdown-popup:not(.e-rtl) .e-pv-annotation-thickness-slider-container.e-control-wrapper.e-slider-container.e-horizontal {
1725
+ width: $pv-annotation-opacity-slider-width;
1726
+ }
1727
+
1728
+ .e-dropdown-popup.e-rtl .e-pv-annotation-opacity-slider-container.e-control-wrapper.e-slider-container.e-horizontal,
1729
+ .e-dropdown-popup.e-rtl .e-pv-annotation-thickness-slider-container.e-control-wrapper.e-slider-container.e-horizontal {
1730
+ width: $pv-annotation-opacity-slider-width-rtl;
1731
+ }
1732
+
1733
+ .e-pv-annotation-opacity-slider-container.e-control-wrapper.e-slider-container .e-pv-annotation-opacity-slider.e-slider,
1734
+ .e-pv-annotation-thickness-slider-container.e-control-wrapper.e-slider-container .e-pv-annotation-opacity-slider.e-slider {
1735
+ height: $pv-annotation-opacity-slider-height;
1736
+ }
1737
+
1738
+ .e-pv-annotation-color-container.e-dropdown-btn.e-btn .e-caret
1739
+ .e-pv-annotation-opacity-container.e-dropdown-btn.e-btn .e-caret
1740
+ .e-pv-annotation-textcolor-container.e-dropdown-btn.e-btn .e-caret,
1741
+ .e-pv-annotation-textalign-container.e-dropdown-btn.e-btn .e-caret,
1742
+ .e-pv-annotation-textprop-container.e-dropdown-btn.e-btn .e-caret {
1743
+ font-size: $pv-annotation-drop-down-caret-font-size;
1744
+ }
1745
+
1746
+ .e-pv-annotation-color-container,
1747
+ .e-pv-annotation-opacity-container,
1748
+ .e-pv-annotation-stroke-container,
1749
+ .e-pv-custom-annotation-thickness-container,
1750
+ .e-pv-custom-annotation-opacity-container,
1751
+ .e-pv-annotation-thickness-container,
1752
+ .e-pv-annotation-textcolor-container,
1753
+ .e-pv-annotation-textalign-container,
1754
+ .e-pv-annotation-textprop-container {
1755
+ height: $pv-annotation-drop-down-height;
1756
+ width: $pv-annotation-drop-down-width;
1757
+ }
1758
+
1759
+ .e-pv-annotation-thickness-container.e-btn.e-icon-btn.e-dropdown-btn {
1760
+ @if ($skin-name != 'bootstrap5') {
1761
+ padding-top: $pv-annotation-thickness-drop-down-padding-top;
1762
+ }
1763
+ }
1764
+
1765
+ .e-pv-shapes-toolbar {
1766
+ box-shadow: $pv-drop-down-toolbar-box-shadow;
1767
+ }
1768
+
1769
+ .e-pv-shapes-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
1770
+ padding: 4px;
1771
+ }
1772
+
1773
+ .e-pv-shapes-toolbar.e-toolbar .e-toolbar-items.e-toolbar-multirow {
1774
+ margin-bottom: 0;
1775
+ margin-left: 4px;
1776
+ margin-right: 4px;
1777
+ }
1778
+
1779
+ .e-pv-shapes-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn {
1780
+ height: 32px;
1781
+ width: 32px;
1782
+ @if $skin-name == 'FluentUI' {
1783
+ min-height: 32px;
1784
+ }
1785
+ }
1786
+
1787
+ .e-pv-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn,
1788
+ .e-pv-annotation-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn {
1789
+ @if $skin-name == 'FluentUI' {
1790
+ min-height: 32px;
1791
+ }
1792
+ }
1793
+
1794
+ .e-pv-annotation-thickness-slider-container {
1795
+ margin-top: -6px;
1796
+ }
1797
+
1798
+ .e-pv-annotation-opacity-icon {
1799
+ padding-top: $pv-annotation-opacity-icon-padding-top;
1800
+ }
1801
+
1802
+ .e-pv-annotation-stamp-container .e-menu-wrapper ul.e-menu:not(.e-vertical) {
1803
+ @if $skin-name == 'highcontrast' {
1804
+ padding: 0;
1805
+ }
1806
+ }
1807
+
1808
+ .e-pv-annotation-color-container.e-btn,
1809
+ .e-pv-annotation-opacity-container.e-btn,
1810
+ .e-pv-annotation-stroke-container.e-btn,
1811
+ .e-pv-annotation-thickness-container.e-btn,
1812
+ .e-pv-annotation-shapes-container.e-btn,
1813
+ .e-pv-annotation-calibrate-container.e-btn,
1814
+ .e-pv-annotation-textcolor-container.e-btn,
1815
+ .e-pv-annotation-textalign-container.e-btn,
1816
+ .e-pv-annotation-textprop-container.e-btn,
1817
+ .e-pv-annotation-handwritten-container.e-btn,
1818
+ .e-pv-stamp.e-menu-wrapper ul .e-menu-item.e-focused:not(.e-selected) {
1819
+ background-color: $pv-annotation-dropdown-background-color;
1820
+ border-color: $pv-annotation-dropdown-border-color;
1821
+ }
1822
+
1823
+ .e-pv-annotation-color-container.e-btn:hover,
1824
+ .e-pv-annotation-opacity-container.e-btn:hover,
1825
+ .e-pv-annotation-stroke-container.e-btn:hover,
1826
+ .e-pv-annotation-thickness-container.e-btn:hover,
1827
+ .e-pv-annotation-shapes-container.e-btn:hover,
1828
+ .e-pv-annotation-calibrate-container.e-btn:hover,
1829
+ .e-pv-annotation-textcolor-container.e-btn:hover,
1830
+ .e-pv-annotation-textalign-container.e-btn:hover,
1831
+ .e-pv-annotation-textprop-container.e-btn:hover,
1832
+ .e-pv-annotation-handwritten-container.e-btn:hover,
1833
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-valid-input:hover,
1834
+ .e-input-group.e-control-wrapper.e-pv-prop-dropdown-rtl.e-ddl.e-valid-input:hover,
1835
+ .e-pv-stamp.e-menu-wrapper ul .e-menu-item.e-focused:hover {
1836
+ background-color: $pv-annotation-dropdown-background-color-hover;
1837
+ border-color: $pv-annotation-dropdown-border-color-hover;
1838
+ }
1839
+
1840
+ .e-pv-annotation-color-container.e-btn:active ,
1841
+ .e-pv-annotation-opacity-container.e-btn:active,
1842
+ .e-pv-annotation-stroke-container.e-btn:active ,
1843
+ .e-pv-annotation-thickness-container.e-btn:active,
1844
+ .e-pv-annotation-shapes-container.e-btn:active,
1845
+ .e-pv-annotation-calibrate-container.e-btn:active,
1846
+ .e-pv-annotation-textcolor-container.e-btn:active,
1847
+ .e-pv-annotation-textalign-container.e-btn:active,
1848
+ .e-pv-annotation-textprop-container.e-btn:active,
1849
+ .e-pv-annotation-handwritten-container.e-btn:active {
1850
+ background-color: $pv-annotation-dropdown-background-color-active;
1851
+ border-color: $pv-annotation-dropdown-border-color-active;
1852
+ box-shadow: none;
1853
+ color: $pv-item-selection-color;
1854
+ }
1855
+
1856
+ .e-pv-annotation-shapes-container.e-btn.e-dropdown-btn.e-active:not(:hover),
1857
+ .e-pv-annotation-calibrate-container.e-btn.e-dropdown-btn.e-active:not(:hover),
1858
+ .e-pv-annotation-handwritten-container.e-dropdown-btn.e-btn.e-active:not(:hover),
1859
+ .e-pv-annotation-toolbar .e-dropdown-btn.e-btn.e-active:not(:hover) .e-caret {
1860
+ background-color: $pv-annotation-dd-background-color-active;
1861
+ color: $pv-icon-color;
1862
+ @if ($skin-name == 'bootstrap5') {
1863
+ color: $secondary-text-color-pressed;
1864
+ }
1865
+ }
1866
+
1867
+ .e-pv-annotation-color-container.e-dropdown-btn.e-btn,
1868
+ .e-pv-annotation-opacity-container.e-dropdown-btn.e-btn,
1869
+ .e-pv-annotation-stroke-container.e-dropdown-btn.e-btn,
1870
+ .e-pv-custom-annotation-thickness-container.e-dropdown-btn.e-btn,
1871
+ .e-pv-custom-annotation-opacity-container.e-dropdown-btn.e-btn,
1872
+ .e-pv-annotation-thickness-container.e-dropdown-btn.e-btn,
1873
+ .e-pv-annotation-textcolor-container.e-dropdown-btn.e-btn,
1874
+ .e-pv-annotation-textalign-container.e-dropdown-btn.e-btn,
1875
+ .e-pv-annotation-textprop-container.e-dropdown-btn.e-btn {
1876
+ line-height: $pv-annotation-drop-down-btn-line-height;
1877
+ padding: $pv-annotation-drop-down-btn-padding;
1878
+ @if ($skin-name == 'bootstrap5') {
1879
+ align-items: center;
1880
+ display: flex;
1881
+ }
1882
+ }
1883
+
1884
+ .e-pv-annotation-color-container.e-dropdown-btn.e-button,
1885
+ .e-pv-annotation-opacity-container.e-dropdown-btn.e-button,
1886
+ .e-pv-annotation-stroke-container.e-dropdown-btn.e-button,
1887
+ .e-pv-custom-annotation-thickness-container.e-dropdown-btn.e-button,
1888
+ .e-pv-custom-annotation-opacity-container.e-dropdown-btn.e-button,
1889
+ .e-pv-annotation-thickness-container.e-dropdown-btn.e-bbuttontn,
1890
+ .e-pv-annotation-textcolor-container.e-dropdown-btn.e-button,
1891
+ .e-pv-annotation-textalign-container.e-dropdown-btn.e-button,
1892
+ .e-pv-annotation-textprop-container.e-dropdown-btn.e-button {
1893
+ line-height: $pv-annotation-drop-down-btn-line-height;
1894
+ padding: $pv-annotation-drop-down-btn-padding;
1895
+ @if ($skin-name == 'bootstrap5') {
1896
+ align-items: baseline;
1897
+ display: flex;
1898
+ }
1899
+ }
1900
+
1901
+ .e-pv-annotation-color-container.e-btn.e-active,
1902
+ .e-pv-annotation-opacity-container.e-btn.e-active,
1903
+ .e-pv-annotation-stroke-container.e-btn.e-active,
1904
+ .e-pv-annotation-shapes-container.e-btn.e-active,
1905
+ .e-pv-annotation-calibrate-container.e-btn.e-active,
1906
+ .e-pv-annotation-textcolor-container.e-btn.e-active,
1907
+ .e-pv-annotation-textprop-container.e-btn.e-active,
1908
+ .e-pv-custom-annotation-thickness-container.e-btn.e-active,
1909
+ .e-pv-custom-annotation-opacity-container.e-btn.e-active,
1910
+ .e-pv-annotation-handwritten-container.e-btn.e-active,
1911
+ .e-pv-annotation-textalign-container.e-btn.e-active {
1912
+ @if ($skin-name == 'bootstrap5') {
1913
+ background-color: $pv-annotation-dropdown-background-color-hover;
1914
+ border-color: $pv-annotation-dropdown-border-color-hover;
1915
+ color: $white;
1916
+ }
1917
+ }
1918
+
1919
+ .e-pv-custom-annotation-stamp-container.e-menu-container ul .e-menu-item .e-menu-icon .e-caret,
1920
+ .e-pv-custom-annotation-stamp-container.e-menu-container ul .e-menu-item.e-focused .e-menu-icon .e-caret {
1921
+ @if ($skin-name == 'bootstrap5') {
1922
+ height: 32px;
1923
+ line-height: 32px;
1924
+ padding: 0 8px;
1925
+ }
1926
+ }
1927
+
1928
+ .e-pv-custom-annotation-stamp-container.e-menu-container ul .e-menu-item .e-menu-icon .e-caret,
1929
+ .e-pv-custom-annotation-stamp-container.e-menu-container ul .e-menu-item.e-focused .e-menu-icon .e-caret {
1930
+ @if ($skin-name == 'bootstrap5') {
1931
+ height: 32px;
1932
+ line-height: 32px;
1933
+ padding: 0 8px;
1934
+ }
1935
+ }
1936
+
1937
+ .e-pv-custom-annotation-stamp-container,
1938
+ .e-pv-custom-annotation-stamp-container.e-menu-container ul .e-menu-item .e-pv-stamp-icon,
1939
+ .e-pv-custom-annotation-stamp-container.e-menu-container ul .e-menu-item .e-caret {
1940
+ @if ($skin-name == 'FluentUI') {
1941
+ background-color: transparent;
1942
+ height: 32px;
1943
+ line-height: 32px;
1944
+ }
1945
+ }
1946
+
1947
+ .e-pv-toolbar.e-toolbar .e-tbar-btn .e-icons.e-btn-icon,
1948
+ .e-pv-annotation-toolbar.e-toolbar .e-tbar-btn .e-icons.e-btn-icon {
1949
+ @if ($skin-name == 'FluentUI') {
1950
+ font-size: $pv-icon-font-size;
1951
+ }
1952
+ }
1953
+
1954
+ .e-pv-submit .e-tbar-btn {
1955
+ @if ($skin-name == 'bootstrap5') {
1956
+ height: 30px;
1957
+ }
1958
+ }
1959
+
1960
+ .e-pv-toolbar.e-toolbar.e-toolpop .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn-text.e-pv-submitform-text {
1961
+ display: inline-block;
1962
+ padding: 0 4px;
1963
+ }
1964
+
1965
+ .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 {
1966
+ display: inline-block;
1967
+ @if $skin-name == 'FluentUI' {
1968
+ padding: 3px 4px;
1969
+ }
1970
+ @else {
1971
+ padding: 0 4px;
1972
+ }
1973
+ }
1974
+
1975
+ .e-pv-mobile-toolbar .e-toolbar-items .e-toolbar-item .e-btn.e-tbar-btn,
1976
+ .e-pv-nav-toolbar .e-toolbar-items .e-toolbar-item .e-btn.e-tbar-btn {
1977
+ height: $pv-toolbar-btn-height-mobile;
1978
+ min-width: $pv-toolbar-btn-width-mobile;
1979
+ }
1980
+
1981
+ .e-pv-annotation-popup-menu {
1982
+ background-color: $pv-sidebar-toolbar-background;
1983
+ border-color: $pv-control-border-color;
1984
+ color: $pv-toolbar-total-page-number-color;
1985
+ }
1986
+
1987
+ .e-pv-properties-window {
1988
+ max-width: $pv-properties-win-max-width;
1989
+ }
1990
+
1991
+ .e-pv-scale-ratio-window {
1992
+ max-width: $pv-scale-ratio-win-max-width;
1993
+ }
1994
+
1995
+ .e-pv-scale-ratio-dialog {
1996
+ max-width: $pv-blazor-scale-ratio-dialog-max-width;
1997
+ }
1998
+
1999
+ .e-pv-line-styles-content,
2000
+ .e-pv-line-styles-item {
2001
+ border-bottom-color: $pv-prop-line-styles-color;
2002
+ }
2003
+
2004
+ .e-pv-line-styles-container:hover {
2005
+ background-color: $pv-prop-line-styles-hover-bg;
2006
+ }
2007
+
2008
+ .e-pv-properties-line-fill-color-container .e-dropdown-btn.e-btn,
2009
+ .e-pv-properties-line-stroke-color-container .e-dropdown-btn.e-btn {
2010
+ height: $pv-prop-color-picker-height;
2011
+ line-height: $pv-prop-color-picker-line-height;
2012
+ @if ($skin-name == 'bootstrap5') {
2013
+ background: $transparent;
2014
+ border: 1px solid $border-light;
2015
+ border-radius: 4px;
2016
+ box-sizing: border-box;
2017
+ color: $content-text-color;
2018
+ }
2019
+ }
2020
+
2021
+ .e-bigger .e-pv-properties-line-fill-color-container .e-dropdown-btn.e-btn,
2022
+ .e-bigger .e-pv-properties-line-stroke-color-container .e-dropdown-btn.e-btn {
2023
+ @if $skin-name == 'FluentUI' {
2024
+ height: 40px;
2025
+ }
2026
+ }
2027
+
2028
+ .e-pv-properties-window .e-dlg-content {
2029
+ padding-top: 6px;
2030
+ }
2031
+
2032
+ .e-pv-scale-ratio-text,
2033
+ .e-pv-depth-text {
2034
+ margin-bottom: 8px;
2035
+ }
2036
+
2037
+ .e-pv-properties-line-start-container,
2038
+ .e-pv-properties-line-end-container,
2039
+ .e-pv-properties-line-style-container,
2040
+ .e-pv-properties-line-thickness-container,
2041
+ .e-pv-properties-line-fill-color-container,
2042
+ .e-pv-properties-line-stroke-color-container,
2043
+ .e-pv-properties-line-leader-length-container {
2044
+ float: left;
2045
+ height: $pv-properties-container-height;
2046
+ margin-bottom: $pv-properties-container-margin-bottom;
2047
+ }
2048
+
2049
+ .e-pv-properties-line-opacity-container {
2050
+ float: left;
2051
+ height: auto;
2052
+ width: $pv-properties-window-container-max-width;
2053
+ }
2054
+
2055
+ .e-pv-scale-ratio-src-input-container,
2056
+ .e-pv-scale-ratio-src-unit-container,
2057
+ .e-pv-scale-ratio-dest-input-container,
2058
+ .e-pv-scale-ratio-dest-unit-container,
2059
+ .e-pv-depth-input-container,
2060
+ .e-pv-depth-unit-container {
2061
+ float: left;
2062
+ height: $pv-scale-ratio-input-container-height;
2063
+ }
2064
+
2065
+ .e-bigger .e-pv-scale-ratio-src-input-container,
2066
+ .e-bigger .e-pv-scale-ratio-src-unit-container,
2067
+ .e-bigger .e-pv-scale-ratio-dest-input-container,
2068
+ .e-bigger .e-pv-scale-ratio-dest-unit-container,
2069
+ .e-bigger .e-pv-depth-input-container,
2070
+ .e-bigger .e-pv-depth-unit-container {
2071
+ @if $skin-name == 'FluentUI' {
2072
+ float: left;
2073
+ height: 40px;
2074
+ }
2075
+ }
2076
+
2077
+ .e-pv-scale-ratio-src-input-container,
2078
+ .e-pv-scale-ratio-src-unit-container,
2079
+ .e-pv-scale-ratio-dest-input-container,
2080
+ .e-pv-scale-ratio-dest-unit-container {
2081
+ margin-bottom: $pv-scale-ratio-input-container-margin-bottom;
2082
+ }
2083
+
2084
+ .e-pv-scale-ratio-src-unit-container,
2085
+ .e-pv-scale-ratio-dest-unit-container,
2086
+ .e-pv-depth-unit-container {
2087
+ margin-left: $pv-prop-win-margin-left;
2088
+ }
2089
+
2090
+ .e-pv-scale-ratio-src-unit.e-btn,
2091
+ .e-pv-scale-ratio-dest-unit.e-btn,
2092
+ .e-pv-depth-unit.e-btn {
2093
+ padding: $pv-scale-ratio-win-drop-down-padding;
2094
+ }
2095
+
2096
+ .e-pv-scale-unit-content {
2097
+ float: left;
2098
+ width: 33px;
2099
+ }
2100
+
2101
+ .e-pv-scale-ratio-src-unit .e-caret,
2102
+ .e-pv-scale-ratio-dest-unit .e-caret,
2103
+ .e-pv-depth-unit .e-caret {
2104
+ margin-left: $pv-scale-ratio-win-drop-down-caret-margin-left;
2105
+ margin-top: $pv-scale-ratio-win-drop-down-caret-margin-top;
2106
+ }
2107
+
2108
+ .e-bigger .e-pv-scale-ratio-src-unit .e-caret,
2109
+ .e-bigger .e-pv-scale-ratio-dest-unit .e-caret,
2110
+ .e-bigger .e-pv-depth-unit .e-caret {
2111
+ @if $skin-name == 'FluentUI' {
2112
+ margin-left: 160px;
2113
+ }
2114
+ }
2115
+
2116
+ .e-pv-properties-line-opacity {
2117
+ margin-top: -10px;
2118
+ }
2119
+
2120
+ .e-pv-properties-line-start-label,
2121
+ .e-pv-properties-line-end-label,
2122
+ .e-pv-properties-line-style-label,
2123
+ .e-pv-properties-line-thickness-label,
2124
+ .e-pv-properties-line-fill-color-label,
2125
+ .e-pv-properties-line-stroke-color-label,
2126
+ .e-pv-properties-line-opacity-label,
2127
+ .e-pv-properties-line-leader-length-label {
2128
+ font-size: 14px;
2129
+ margin-bottom: 8px;
2130
+ @if ($skin-name == 'FluentUI') {
2131
+ font-weight: 600;
2132
+ }
2133
+ }
2134
+
2135
+ .e-pv-properties-line-end-container,
2136
+ .e-pv-properties-line-thickness-container {
2137
+ @if ($skin-name == 'bootstrap5') {
2138
+ margin-left: 37px;
2139
+ }
2140
+ @else {
2141
+ margin-left: 24px;
2142
+ }
2143
+ }
2144
+
2145
+ .e-pv-properties-line-leader-length-container {
2146
+ margin-left: $pv-line-leader-length-margin-left;
2147
+ }
2148
+
2149
+ .e-bigger .e-pv-properties-line-leader-length-container {
2150
+ @if $skin-name == 'FluentUI' {
2151
+ margin-left: 100px;
2152
+ }
2153
+ }
2154
+
2155
+ .e-pv-properties-line-stroke-color-container {
2156
+ margin-left: $pv-line-stroke-color-margin-left;
2157
+ margin-right: 87px;
2158
+ }
2159
+
2160
+ .e-bigger .e-pv-properties-line-stroke-color-container {
2161
+ @if $skin-name == 'FluentUI' {
2162
+ margin-left: 195px;
2163
+ }
2164
+ }
2165
+
2166
+ .e-pv-properties-line-start,
2167
+ .e-pv-properties-line-end,
2168
+ .e-pv-properties-line-style,
2169
+ .e-pv-properties-line-thickness,
2170
+ .e-pv-properties-line-opacity,
2171
+ .e-pv-properties-line-leader-length {
2172
+ max-width: $pv-properties-window-container-max-width;
2173
+ }
2174
+
2175
+ .e-bigger .e-pv-properties-line-start,
2176
+ .e-bigger .e-pv-properties-line-end,
2177
+ .e-bigger .e-pv-properties-line-style,
2178
+ .e-bigger .e-pv-properties-line-thickness,
2179
+ .e-bigger .e-pv-properties-line-opacity,
2180
+ .e-bigger .e-pv-properties-line-leader-length {
2181
+ @if $skin-name == 'FluentUI' {
2182
+ max-width: 248px;
2183
+ }
2184
+ }
2185
+
2186
+ .e-pv-scale-ratio-src-input,
2187
+ .e-pv-scale-ratio-dest-input,
2188
+ .e-pv-depth-input {
2189
+ max-width: $pv-scale-ratio-container-max-width;
2190
+ }
2191
+
2192
+ .e-bigger .e-pv-scale-ratio-src-input,
2193
+ .e-bigger .e-pv-scale-ratio-dest-input,
2194
+ .e-bigger .e-pv-depth-input {
2195
+ @if $skin-name == 'FluentUI' {
2196
+ max-width: 248px;
2197
+ }
2198
+ }
2199
+
2200
+ .e-pv-properties-line-start,
2201
+ .e-pv-properties-line-end,
2202
+ .e-pv-properties-line-style {
2203
+ width: $pv-properties-window-container-width;
2204
+ }
2205
+
2206
+ .e-bigger .e-pv-properties-line-start,
2207
+ .e-bigger .e-pv-properties-line-end,
2208
+ .e-bigger .e-pv-properties-line-style {
2209
+ @if $skin-name == 'FluentUI' {
2210
+ width: 248px;
2211
+ }
2212
+ }
2213
+
2214
+ .e-pv-scale-ratio-src-unit,
2215
+ .e-pv-scale-ratio-dest-unit,
2216
+ .e-pv-depth-unit {
2217
+ width: $pv-scale-ratio-width;
2218
+ }
2219
+
2220
+ .e-bigger .e-pv-scale-ratio-src-unit,
2221
+ .e-bigger .e-pv-scale-ratio-dest-unit,
2222
+ .e-bigger .e-pv-depth-unit {
2223
+ @if $skin-name == 'FluentUI' {
2224
+ height: 40px;
2225
+ width: 248px;
2226
+ }
2227
+ }
2228
+
2229
+ .e-pv-line-styles-container {
2230
+ line-height: 0;
2231
+ padding: 17px;
2232
+ }
2233
+
2234
+ .e-pv-line-styles-item {
2235
+ border-bottom-width: 2px;
2236
+ box-sizing: border-box;
2237
+ display: inline-block;
2238
+ width: 100%;
2239
+ }
2240
+
2241
+ .e-pv-line-styles-content {
2242
+ border-bottom-width: 2px;
2243
+ display: inline-block;
2244
+ width: 100%;
2245
+ }
2246
+
2247
+ .e-pv-properties-line-style-content {
2248
+ float: left;
2249
+ line-height: 16px;
2250
+ width: 44px;
2251
+ @if $skin-name == 'FluentUI' {
2252
+ line-height: 20px;
2253
+ }
2254
+ }
2255
+
2256
+ .e-pv-properties-line-start.e-btn,
2257
+ .e-pv-properties-line-end.e-btn {
2258
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'bootstrap5-dark') {
2259
+ background: transparent;
2260
+ border-color: $border;
2261
+ box-shadow: none;
2262
+ color: $content-text-color;
2263
+ }
2264
+ @if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark') {
2265
+ height: 30px;
2266
+ }
2267
+ @else {
2268
+ height: 32px;
2269
+ }
2270
+ padding: $pv-properties-padding;
2271
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'bootstrap5-dark') {
2272
+ text-align: center;
2273
+ }
2274
+ }
2275
+
2276
+ .e-bigger .e-pv-properties-line-start.e-btn,
2277
+ .e-bigger .e-pv-properties-line-end.e-btn,
2278
+ .e-bigger .e-pv-properties-line-style.e-btn {
2279
+ @if $skin-name == 'FluentUI' {
2280
+ height: 40px;
2281
+ }
2282
+ }
2283
+
2284
+ .e-pv-properties-line-style.e-btn {
2285
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'bootstrap5-dark') {
2286
+ background: transparent;
2287
+ border-color: $border;
2288
+ box-shadow: none;
2289
+ color: $content-text-color;
2290
+ }
2291
+ @if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark') {
2292
+ height: 30px;
2293
+ }
2294
+ @else {
2295
+ height: 32px;
2296
+ }
2297
+ line-height: 0;
2298
+ padding: $pv-properties-line-style-padding;
2299
+ white-space: pre;
2300
+ }
2301
+
2302
+ .e-pv-properties-line-start.e-btn .e-caret,
2303
+ .e-pv-properties-line-end.e-btn .e-caret {
2304
+ @if $skin-name == 'bootstrap4' {
2305
+ display: block;
2306
+ }
2307
+ @else {
2308
+ display: inline;
2309
+ }
2310
+ line-height: 16px;
2311
+ margin-left: $pv-properties-drop-down-margin-left;
2312
+ }
2313
+
2314
+ .e-bigger .e-pv-properties-line-start.e-btn .e-caret,
2315
+ .e-bigger .e-pv-properties-line-end.e-btn .e-caret {
2316
+ @if $skin-name == 'FluentUI' {
2317
+ margin-left: 145px;
2318
+ }
2319
+ }
2320
+
2321
+ .e-pv-line-styles-content-container {
2322
+ float: left;
2323
+ font-size: 0;
2324
+ margin-right: 7.5px;
2325
+ margin-top: $pv-prop-line-styles-margin-top;
2326
+ @if $skin-name == 'FluentUI' {
2327
+ width: 120px;
2328
+ }
2329
+ @else {
2330
+ width: 138px;
2331
+ }
2332
+ }
2333
+
2334
+ .e-bigger .e-pv-line-styles-content-container {
2335
+ @if $skin-name == 'FluentUI' {
2336
+ margin-top: 5.5px;
2337
+ width: 180px;
2338
+ }
2339
+ }
2340
+
2341
+ .e-pv-annotation-shapes-container.e-btn.e-icon-btn,
2342
+ .e-pv-annotation-calibrate-container.e-btn.e-icon-btn,
2343
+ .e-pv-annotation-handwritten-container.e-btn.e-icon-btn,
2344
+ .e-menu-wrapper.e-custom-scroll.e-lib.e-keyboard.e-pv-stamp ul {
2345
+ height: $pv-annot-toolbar-dropdown-btn-height;
2346
+ width: $pv-annot-toolbar-dropdown-btn-width;
2347
+ }
2348
+
2349
+ .e-pv-annotation-shapes-container.e-btn.e-icon-button,
2350
+ .e-pv-annotation-calibrate-container.e-btn.e-icon-button,
2351
+ .e-pv-annotation-handwritten-container.e-btn.e-icon-button {
2352
+ @if $skin-name == 'bootstrap5' {
2353
+ align-items: baseline;
2354
+ display: flex;
2355
+ height: $pv-annot-toolbar-dropdown-btn-height;
2356
+ line-height: $pv-annot-toolbar-dropdown-btn-height;
2357
+ padding: 3px 8px;
2358
+ width: $pv-annot-toolbar-dropdown-btn-width;
2359
+ }
2360
+ }
2361
+
2362
+ .e-pv-annotation-shapes-container.e-btn.e-icon-btn,
2363
+ .e-pv-annotation-calibrate-container.e-btn.e-icon-btn,
2364
+ .e-pv-annotation-handwritten-container.e-btn.e-icon-btn {
2365
+ @if $skin-name == 'bootstrap5' {
2366
+ align-items: baseline;
2367
+ display: flex;
2368
+ padding: $pv-annotation-icon-padding;
2369
+ }
2370
+ @else {
2371
+ padding: $pv-annotation-icon-padding;
2372
+ }
2373
+ }
2374
+
2375
+ .e-pv-annotation-shapes-container .e-btn-icon.e-icons.e-icon-right.e-caret,
2376
+ .e-pv-annotation-calibrate-container .e-btn-icon.e-icons.e-icon-right.e-caret,
2377
+ .e-pv-annotation-handwritten-container .e-btn-icon.e-icons.e-icon-right.e-caret,
2378
+ .e-pv-alignment-container .e-btn-icon.e-icons.e-icon-right.e-caret,
2379
+ .e-pv-text-color-container .e-btn-icon.e-icons.e-icon-right.e-caret,
2380
+ .e-pv-color-template-container .e-btn-icon.e-icons.e-icon-right.e-caret,
2381
+ .e-pv-stroke-template-container .e-btn-icon.e-icons.e-icon-right.e-caret,
2382
+ .e-pv-thickness-template-container .e-btn-icon.e-icons.e-icon-right.e-caret,
2383
+ .e-pv-opacity-template-container .e-btn-icon.e-icons.e-icon-right.e-caret {
2384
+ @if $skin-name == 'bootstrap5' {
2385
+ padding-bottom: 0;
2386
+ width: 20px;
2387
+ }
2388
+ }
2389
+
2390
+ .e-pv-annotation-shape-icon,
2391
+ .e-pv-annotation-calibrate-icon,
2392
+ .e-pv-handwritten-icon {
2393
+ margin-right: 4px;
2394
+ }
2395
+
2396
+ .e-pv-stamp-template-container .e-menu-item.e-menu-caret-icon {
2397
+ @if $skin-name == 'bootstrap5' {
2398
+ padding: 0 26px 0 8px;
2399
+ }
2400
+ }
2401
+
2402
+ .e-pv-properties-opacity-indicator {
2403
+ @if $skin-name == 'FluentUI' {
2404
+ margin-left: 141px;
2405
+ }
2406
+ @else {
2407
+ margin-left: 153px;
2408
+ }
2409
+ }
2410
+
2411
+ .e-pv-annotation-stamp-container .e-menu-parent.e-menu {
2412
+ border-radius: $pv-stamp-container-border-radius;
2413
+ }
2414
+
2415
+ .e-pv-annotation-shapes-container.e-btn.e-icon-btn,
2416
+ .e-pv-annotation-calibrate-container.e-btn.e-icon-btn,
2417
+ .e-pv-annotation-handwritten-container.e-btn.e-icon-btn,
2418
+ .e-pv-annotation-stamp-container .e-menu-parent.e-menu .e-menu-item,
2419
+ .e-pv-annotation-stamp-container .e-menu-parent.e-menu .e-menu-item .e-pv-stamp-icon,
2420
+ .e-pv-annotation-stamp-container .e-menu-parent.e-menu .e-menu-item .e-caret {
2421
+ line-height: $pv-annot-toolbar-dropdown-btn-line-height;
2422
+ }
2423
+
2424
+ .e-pv-annotation-stamp-container .e-menu-parent.e-menu .e-menu-item.e-selected {
2425
+ @if $skin-name == 'bootstrap5' {
2426
+ background: $secondary-bg-color-pressed;
2427
+ }
2428
+ }
2429
+
2430
+ .e-bigger .e-pv-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn,
2431
+ .e-bigger .e-pv-annotation-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-pv-tbar-btn.e-btn {
2432
+ height: $pv-toolbar-btn-height-big;
2433
+ line-height: $pv-toolbar-btn-line-height;
2434
+ margin: $pv-toolbar-btn-margin;
2435
+ padding: $pv-toolbar-btn-padding;
2436
+ width: $pv-toolbar-btn-width-big;
2437
+ }
2438
+
2439
+ .e-bigger .e-pv-current-page-box.e-input-group.e-control-wrapper input.e-input {
2440
+ padding-top: $pv-mobile-page-box-padding-top;
2441
+ }
2442
+
2443
+ .e-toolbar-item.e-pv-current-page-container {
2444
+ @if $skin-name == 'bootstrap5' {
2445
+ padding-top: 2px;
2446
+ }
2447
+ }
2448
+
2449
+ .e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-pv-zoom-drop-down-container {
2450
+ width: $pv-zoom-dropdown-width-mobile;
2451
+ }
2452
+
2453
+ .e-bigger .e-toolbar.e-pv-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
2454
+ .e-bigger .e-toolbar.e-pv-annotation-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
2455
+ @if $skin-name == 'bootstrap4' {
2456
+ padding-left: $pv-toolbar-items-padding-left-big;
2457
+ padding-right: $pv-toolbar-items-padding-right-big;
2458
+ }
2459
+ }
2460
+
2461
+ .e-pv-toolbar.e-toolbar .e-tbar-btn > :first-child {
2462
+ line-height: $pv-toolbaritem-btn-line-height;
2463
+ min-height: $pv-toolbaritem-btn-min-height;
2464
+ }
2465
+
2466
+ .e-bigger .e-pv-current-page-box.e-input-group.e-control-wrapper input.e-input:focus {
2467
+ padding-left: $pv-mobile-page-box-padding-left-focus;
2468
+ }
2469
+
2470
+ .e-bigger .e-pv-password-popup.e-dialog,
2471
+ .e-pv-mobile-view .e-pv-password-popup.e-dialog {
2472
+ height: $pv-password-dialog-height-mobile;
2473
+ }
2474
+
2475
+ .e-bigger .e-pv-notification-popup.e-dialog,
2476
+ .e-pv-mobile-view .e-pv-notification-popup.e-dialog {
2477
+ height: $pv-notification-dialog-height-mobile;
2478
+ }
2479
+
2480
+ .e-bigger .e-pv-notification-popup.e-pv-notification-large-content.e-dialog,
2481
+ .e-pv-mobile-view .e-pv-notification-popup.e-pv-notification-large-content.e-dialog {
2482
+ height: $pv-notification-dialog-height-large-mobile;
2483
+ }
2484
+
2485
+ .e-bigger .e-pv-corrupted-popup.e-dialog,
2486
+ .e-pv-mobile-view .e-pv-corrupted-popup.e-dialog {
2487
+ height: $pv-corrupted-dialog-height-mobile;
2488
+ }
2489
+
2490
+ .e-bigger .e-pv-password-popup.e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn,
2491
+ .e-bigger .e-pv-corrupted-popup.e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn,
2492
+ .e-pv-mobile-view .e-pv-password-popup.e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn,
2493
+ .e-pv-mobile-view .e-pv-corrupted-popup.e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
2494
+ padding-top: $pv-dialog-pop-close-icon-padding-top-mobile;
2495
+ }
2496
+
2497
+ .e-pv-zoom-drop-down-container .e-input-group:not(.e-disabled) .e-input-group-icon:hover,
2498
+ .e-pv-zoom-drop-down-container .e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:hover {
2499
+ @if $skin-name == 'bootstrap4' {
2500
+ color: $pv-title-close-color;
2501
+ }
2502
+ }
2503
+
2504
+ .e-pv-fontfamily-container .e-input-group:not(.e-disabled) .e-input-group-icon:hover,
2505
+ .e-pv-fontfamily-container .e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:hover {
2506
+ @if $skin-name == 'bootstrap4' {
2507
+ color: $pv-title-close-color;
2508
+ }
2509
+ @if $skin-name == 'bootstrap5' {
2510
+ color: $white;
2511
+ }
2512
+ }
2513
+
2514
+ .e-pv-fontfamily-container .e-input-group .e-input-group-icon,
2515
+ .e-input-group.e-control-wrapper .e-input-group-icon {
2516
+ @if $skin-name == 'bootstrap5' {
2517
+ color: inherit;
2518
+ }
2519
+ }
2520
+
2521
+ .e-pv-fontsize-container .e-input-group:not(.e-disabled) .e-input-group-icon:hover,
2522
+ .e-pv-fontsize-container .e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:hover {
2523
+ @if $skin-name == 'bootstrap4' {
2524
+ color: $pv-title-close-color;
2525
+ }
2526
+ }
2527
+
2528
+ .e-bigger .e-toolbar.e-pv-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left,
2529
+ .e-bigger .e-toolbar.e-pv-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-right {
2530
+ top: 0;
2531
+ }
2532
+
2533
+ .e-bigger .e-pv-toolbar.e-rtl .e-pv-current-page-box.e-input-group.e-control-wrapper input.e-input {
2534
+ padding-right: $pv-current-page-padding-right-rtl;
2535
+ }
2536
+
2537
+ .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,
2538
+ .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,
2539
+ .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,
2540
+ .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 {
2541
+ padding-left: $pv-zoom-drop-down-padding-left-rtl;
2542
+ padding-right: $pv-zoom-drop-down-padding-right-rtl;
2543
+ }
2544
+
2545
+ .e-bigger .e-pdfviewer .e-pv-toolbar.e-toolbar:not(.e-rtl) .e-toolbar-items .e-toolbar-item:first-child,
2546
+ .e-bigger .e-pdfviewer .e-pv-annotation-toolbar.e-toolbar:not(.e-rtl) .e-toolbar-items .e-toolbar-item:first-child,
2547
+ .e-bigger .e-pdfviewer .e-pv-formdesigner-toolbar.e-toolbar:not(.e-rtl) .e-toolbar-items .e-toolbar-item:first-child {
2548
+ @if $skin-name == 'bootstrap4' {
2549
+ margin-left: $pv-toolbar-items-first-child-margin-left-big;
2550
+ }
2551
+ }
2552
+
2553
+ .e-bigger .e-pdfviewer .e-pv-toolbar.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-item:first-child,
2554
+ .e-bigger .e-pdfviewer .e-pv-annotation-toolbar.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-item:first-child,
2555
+ .e-bigger .e-pdfviewer .e-pv-formdesigner-toolbar.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-item:first-child {
2556
+ @if $skin-name == 'bootstrap4' {
2557
+ margin-right: $pv-toolbar-items-first-child-margin-left-big;
2558
+ }
2559
+ }
2560
+
2561
+ .e-bigger .e-pdfviewer .e-pv-toolbar.e-toolbar:not(.e-rtl) .e-toolbar-items .e-toolbar-item:last-child,
2562
+ .e-bigger .e-pdfviewer .e-pv-annotation-toolbar.e-toolbar:not(.e-rtl) .e-toolbar-items .e-toolbar-item:last-child,
2563
+ .e-bigger .e-pdfviewer .e-pv-formdesigner-toolbar.e-toolbar:not(.e-rtl) .e-toolbar-items .e-toolbar-item:last-child {
2564
+ @if $skin-name == 'bootstrap4' {
2565
+ margin-right: $pv-toolbar-items-last-child-margin-right-big;
2566
+ }
2567
+ }
2568
+
2569
+ .e-bigger .e-pv-search-bar {
2570
+ @if $skin-name == 'bootstrap4' {
2571
+ top: $pv-search-box-top-big;
2572
+ }
2573
+ }
2574
+
2575
+ .e-pv-sidebar-content-container.e-left {
2576
+ left: $pv-sidebar-content-container-left;
2577
+ }
2578
+
2579
+ .e-pv-sidebar-content-container.e-right {
2580
+ right: $pv-sidebar-content-container-left;
2581
+ }
2582
+
2583
+ .e-bigger .e-pv-sidebar-content-container.e-left {
2584
+ @if $skin-name == 'bootstrap4' {
2585
+ left: $pv-sidebar-content-container-left-big;
2586
+ }
2587
+ }
2588
+
2589
+ .e-bigger .e-pv-sidebar-content-container.e-right {
2590
+ @if $skin-name == 'bootstrap4' {
2591
+ right: $pv-sidebar-content-container-left-big;
2592
+ }
2593
+ }
2594
+
2595
+ .e-pv-sidebar-toolbar-splitter.e-left {
2596
+ left: $pv-sidebar-toolbar-splitter-left;
2597
+ }
2598
+
2599
+ .e-pv-sidebar-toolbar-splitter.e-right {
2600
+ right: $pv-sidebar-toolbar-splitter-left;
2601
+ }
2602
+
2603
+ .e-bigger .e-pv-sidebar-toolbar-splitter.e-left {
2604
+ @if $skin-name == 'bootstrap4' {
2605
+ left: $pv-sidebar-toolbar-splitter-left-big;
2606
+ }
2607
+ }
2608
+
2609
+ .e-bigger .e-pv-sidebar-toolbar-splitter.e-right {
2610
+ @if $skin-name == 'bootstrap4' {
2611
+ right: $pv-sidebar-toolbar-splitter-left-big;
2612
+ }
2613
+ }
2614
+
2615
+ .e-pv-sidebar-resizer.e-left {
2616
+ @if $skin-name == 'bootstrap4' {
2617
+ border-right: 1px solid $pv-sidebar-resizer-border-color;
2618
+ }
2619
+ left: $pv-sidebar-resizer-left;
2620
+ }
2621
+
2622
+ .e-pv-sidebar-resizer.e-right {
2623
+ @if $skin-name == 'bootstrap4' {
2624
+ border-left: 1px solid $pv-sidebar-resizer-border-color;
2625
+ }
2626
+ right: $pv-sidebar-resizer-left;
2627
+ }
2628
+
2629
+ .e-pdfviewer .e-checkbox-wrapper .e-frame + .e-label,
2630
+ .e-pdfviewer .e-css.e-checkbox-wrapper .e-frame + .e-label {
2631
+ margin-right: $pv-textsearch-textbox-margin-right;
2632
+ }
2633
+
2634
+ div >.e-pv-bookmark-icon.e-pv-icon.e-right {
2635
+ float: $pv-bookmark-icon-float;
2636
+ font-size: $pv-bookmark-icon-font-size;
2637
+ padding-left: $pv-bookmark-icon-rtl-padding;
2638
+ padding-right: $pv-bookmark-icon-rtl-padding;
2639
+ position: $pv-bookmark-icon-rtl-position;
2640
+ }
2641
+
2642
+ .e-bigger div >.e-pv-bookmark-icon.e-pv-icon.e-right {
2643
+ @if $skin-name == 'bootstrap4' {
2644
+ font-size: $pv-icon-font-size-big;
2645
+ }
2646
+ }
2647
+
2648
+ .e-bigger .e-pv-properties-window {
2649
+ max-width: $pv-properties-win-max-width-big;
2650
+ @if $skin-name == 'FluentUI' {
2651
+ min-height: 498px;
2652
+ }
2653
+ }
2654
+
2655
+ .e-bigger .e-pv-scale-ratio-window {
2656
+ max-width: $pv-scale-ratio-win-max-width-big;
2657
+ }
2658
+
2659
+ .e-pdfviewer .e-treeview .e-list-item {
2660
+ white-space: pre-wrap;
2661
+ word-break: break-word;
2662
+ }
2663
+
2664
+ .e-pdfviewer .e-treeview .e-list-text {
2665
+ @if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark') {
2666
+ line-height: 20px;
2667
+ }
2668
+ width: 100%;
2669
+ }
2670
+
2671
+ .e-pdfviewer .e-treeview.e-fullrow-wrap .e-icon-collapsible,
2672
+ .e-pdfviewer .e-treeview.e-fullrow-wrap .e-icon-expandable,
2673
+ .e-pdfviewer .e-treeview.e-fullrow-wrap .e-input,
2674
+ .e-pdfviewer .e-treeview.e-fullrow-wrap .e-list-url {
2675
+ margin-top: $pv-bookmark-expandable-icon-margin-top;
2676
+ position: absolute;
2677
+ }
2678
+
2679
+ .e-pdfviewer .e-treeview .e-list-item.e-hover:not(.e-active) > .e-fullrow {
2680
+ @if $skin-name == 'bootstrap4' {
2681
+ background-color: $pv-treeview-item-hover-bg-color;
2682
+ border-color: $pv-treeview-item-hover-bg-color;
2683
+ }
2684
+ }
2685
+
2686
+ .e-pdfviewer .e-inplaceeditor .e-editable-value-wrapper.e-hide {
2687
+ display: none;
2688
+ }
2689
+
2690
+ .e-pdfviewer .e-editable-inline {
2691
+ @if $skin-name == 'bootstrap5' {
2692
+ padding: 7px 8px 50px;
2693
+ }
2694
+ @else {
2695
+ padding: 7px 8px 42px;
2696
+ }
2697
+ }
2698
+
2699
+ .e-pv-comment-textbox {
2700
+ min-height: 22px;
2701
+ }
2702
+
2703
+ .e-pdfviewer .e-editable-value-wrapper {
2704
+ color: $pv-comment-font-color;
2705
+ @if $skin-name == 'bootstrap5' {
2706
+ color: $content-text-color-alt2;
2707
+ }
2708
+ font-size: 14px;
2709
+ @if $skin-name == 'bootstrap5' {
2710
+ font-size: 12px;
2711
+ }
2712
+ line-height: normal;
2713
+ min-height: 22px;
2714
+ padding: 2px 8px 3px;
2715
+ }
2716
+
2717
+ .e-pdfviewer .e-pv-comment-textbox .e-editable-value-wrapper {
2718
+ color: $pv-comment-font-color;
2719
+ @if $skin-name == 'bootstrap5' {
2720
+ color: $content-text-color-alt2;
2721
+ }
2722
+ font-size: 14px;
2723
+ @if $skin-name == 'bootstrap5' {
2724
+ font-size: 12px;
2725
+ }
2726
+ line-height: normal;
2727
+ min-height: 24px;
2728
+ padding: 2px 8px 3px 32px;
2729
+ }
2730
+
2731
+ .e-pv-comment-textbox.e-inplaceeditor .e-component-group,
2732
+ .e-pv-new-comments-div.e-inplaceeditor .e-component-group {
2733
+ @if $skin-name == 'bootstrap5' {
2734
+ margin-bottom: 0;
2735
+ }
2736
+ }
2737
+
2738
+ .e-pdfviewer .e-inplaceeditor .e-editable-action-buttons {
2739
+ float: right;
2740
+ padding-bottom: 7px;
2741
+ @if $skin-name == 'bootstrap5' {
2742
+ margin-top: 0;
2743
+ padding-top: 10px;
2744
+ }
2745
+ @else {
2746
+ padding-top: 5px;
2747
+ }
2748
+ position: relative;
2749
+ @if $skin-name == 'bootstrap5' {
2750
+ right: 0;
2751
+ }
2752
+ @else {
2753
+ right: 8px;
2754
+ }
2755
+ }
2756
+
2757
+ .e-pdfviewer .e-pv-reply-div .e-inplaceeditor .e-editable-action-buttons {
2758
+ float: right;
2759
+ padding-bottom: 7px;
2760
+ @if $skin-name == 'bootstrap5' {
2761
+ margin-top: 0;
2762
+ padding-top: 10px;
2763
+ }
2764
+ @else {
2765
+ padding-top: 5px;
2766
+ }
2767
+ position: relative;
2768
+ @if $skin-name == 'bootstrap5' {
2769
+ right: 0;
2770
+ }
2771
+ @else {
2772
+ right: 8px;
2773
+ }
2774
+ }
2775
+
2776
+ .e-pv-comment-title-container {
2777
+ height: 36px;
2778
+ }
2779
+
2780
+ .e-pv-reply-title-container {
2781
+ height: 36px;
2782
+ }
2783
+
2784
+ .e-pv-more-options-button.e-btn {
2785
+ background: $pv-thumbnail-view-button-background;
2786
+ border: $pv-thumbnail-view-button-border;
2787
+ border-radius: $pv-thumbnail-border-radius;
2788
+ box-shadow: $pv-thumbnail-view-button-box-shadow;
2789
+ float: right;
2790
+ padding: $pv-more-option-button-padding;
2791
+ }
2792
+
2793
+ .e-pdfviewer .e-editable-inline .e-btn.e-outline.e-primary,
2794
+ .e-pdfviewer .e-editable-inline .e-btn.e-outline {
2795
+ @if $skin-name != 'bootstrap5' {
2796
+ border-color: transparent;
2797
+ }
2798
+ }
2799
+
2800
+ .e-pdfviewer .e-editable-inline .e-editable-form {
2801
+ margin-bottom: 1px;
2802
+ }
2803
+
2804
+ .e-pdfviewer .e-editable-inline .e-clear-icon {
2805
+ padding-right: 2px;
2806
+ }
2807
+
2808
+ .e-pdfviewer .e-btn-cancel {
2809
+ font-size: 14px;
2810
+ padding-left: 5px;
2811
+ padding-right: 5px;
2812
+ }
2813
+
2814
+ .e-pdfviewer .e-btn-save {
2815
+ font-size: 14px;
2816
+ margin-right: 12px;
2817
+ padding-left: 7px;
2818
+ padding-right: 7px;
2819
+ }
2820
+
2821
+ .e-pdfviewer .e-btn-save.e-outline.e-primary:disabled {
2822
+ @if $skin-name != 'bootstrap5' {
2823
+ background-color: $pv-save-button-bg-color;
2824
+ border-radius: 2px;
2825
+ color: $pv-save-button-color;
2826
+ }
2827
+ }
2828
+
2829
+ .e-pdfviewer .e-accordion .e-acrdn-item .e-acrdn-panel .e-acrdn-content {
2830
+ box-shadow: 0 0 0 8px $pv-comment-panel-bg inset;
2831
+ padding: 8px;
2832
+ }
2833
+
2834
+ .e-pdfviewer .e-accordion .e-acrdn-item .e-acrdn-header {
2835
+ line-height: 32px;
2836
+ min-height: 32px;
2837
+ }
2838
+
2839
+ .e-contextmenu-wrapper .e-pv-context-menu .e-menu-item {
2840
+ height: 38px;
2841
+ }
2842
+
2843
+ .e-pv-comment-panel {
2844
+ background-color: $pv-comment-panel-bg;
2845
+ border: $pv-sidebar-toolbar-border;
2846
+ border-width: 1px 1px 0;
2847
+ opacity: 1;
2848
+ overflow: hidden;
2849
+ position: absolute;
2850
+ top: 57px;
2851
+ width: 300px;
2852
+ z-index: $pv-sidebar-toolbar-z-index;
2853
+ }
2854
+
2855
+ .e-pv-comment-panel-title-container {
2856
+ background-color: $pv-comment-panel-bg;
2857
+ border-color: $pv-comment-panel-border-color;
2858
+ border-style: double;
2859
+ border-width: 0 1px 1px 0;
2860
+ height: 45px;
2861
+ position: relative;
2862
+ }
2863
+
2864
+ .e-pv-comment-panel-title {
2865
+ color: $pv-comment-font-color;
2866
+ font-size: 14px;
2867
+ @if $skin-name == 'bootstrap5' {
2868
+ font-size: 16px;
2869
+ font-weight: 500;
2870
+ }
2871
+ @if $skin-name == 'FluentUI' {
2872
+ font-weight: $pv-comment-tile-font-weight;
2873
+ }
2874
+ left: 15px;
2875
+ position: absolute;
2876
+ text-align: left;
2877
+ top: 14px;
2878
+ }
2879
+
2880
+ .e-pv-comment-panel-title-close-div.e-btn {
2881
+ background: $pv-title-close-background;
2882
+ border: $pv-title-close-border;
2883
+ box-shadow: $pv-title-close-box-shadow;
2884
+ @if $skin-name == 'bootstrap4' {
2885
+ color: $pv-title-close-color;
2886
+ }
2887
+ height: $pv-title-close-height;
2888
+ position: $pv-title-close-position;
2889
+ right: 11px;
2890
+ top: 5px;
2891
+ width: $pv-title-close-width;
2892
+ @if $skin-name == 'FluentUI' {
2893
+ padding: 4px;
2894
+ }
2895
+ }
2896
+
2897
+ .e-pv-title-close-icon {
2898
+ @if $skin-name != 'bootstrap5' {
2899
+ color: $pv-comment-text-color;
2900
+ }
2901
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'tailwind' or $skin-name == 'FluentUI') {
2902
+ color: $icon-color;
2903
+ }
2904
+ }
2905
+
2906
+ .e-pv-comments-panel-text {
2907
+ font-size: 15px;
2908
+ padding-left: 85px;
2909
+ }
2910
+
2911
+ .e-pv-comments-content-container {
2912
+ background-color: $pv-comments-content-container-bg;
2913
+ border-color: $pv-comment-panel-border-color;
2914
+ border-style: double;
2915
+ border-width: 0 1px 1px 0;
2916
+ height: calc(100% - 45px);
2917
+ overflow: auto;
2918
+ }
2919
+
2920
+ .e-pv-comments-container {
2921
+ background-color: $pv-comment-panel-bg;
2922
+ border-radius: 2px;
2923
+ left: 7px;
2924
+ right: 7px;
2925
+ }
2926
+
2927
+ .e-pv-comments-border {
2928
+ @if $skin-name != 'bootstrap5' and $skin-name != 'FluentUI' {
2929
+ border: 2px;
2930
+ border-color: $pv-comment-panel-bottom-color;
2931
+ border-radius: 4px;
2932
+ border-style: groove;
2933
+ }
2934
+ @if $skin-name == 'tailwind' {
2935
+ border: 1px solid $border-light;
2936
+ border-radius: 2px;
2937
+ }
2938
+ @if $skin-name == 'bootstrap5' {
2939
+ border: 1px solid $border-light;
2940
+ border-radius: 2px;
2941
+ }
2942
+ }
2943
+
2944
+ .e-pv-comment-title {
2945
+ color: $pv-comment-text-color;
2946
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'tailwind' or $skin-name == 'FluentUI') {
2947
+ color: $pv-comment-tile-text-color;
2948
+ }
2949
+ font-size: 14px;
2950
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'tailwind') {
2951
+ font-size: 12px;
2952
+ font-weight: $pv-comment-tile-font-weight;
2953
+ }
2954
+ @if $skin-name == 'FluentUI' {
2955
+ font-weight: $pv-comment-tile-font-weight;
2956
+ }
2957
+ max-width: 237px;
2958
+ padding-left: 32px;
2959
+ padding-top: $pv-comment-title-padding-top;
2960
+ position: absolute;
2961
+ }
2962
+
2963
+ .e-pv-reply-title {
2964
+ color: $pv-comment-text-color;
2965
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'tailwind' or $skin-name == 'FluentUI') {
2966
+ color: $pv-comment-tile-text-color;
2967
+ }
2968
+ font-size: 14px;
2969
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'tailwind') {
2970
+ font-size: 12px;
2971
+ font-weight: $pv-comment-tile-font-weight;
2972
+ }
2973
+ @if $skin-name == 'FluentUI' {
2974
+ font-weight: $pv-comment-tile-font-weight;
2975
+ }
2976
+ max-width: 212px;
2977
+ padding-left: 8px;
2978
+ padding-top: $pv-comment-title-padding-top;
2979
+ position: absolute;
2980
+ }
2981
+
2982
+ .e-pv-comments-hover {
2983
+ background-color: $pv-comments-hover-bg;
2984
+ }
2985
+
2986
+ .e-pv-comments-select {
2987
+ @if $skin-name == 'FluentUI' {
2988
+ background-color: $content-bg-color-selected;
2989
+ }
2990
+ @else {
2991
+ background-color: $pv-comment-panel-bg;
2992
+ }
2993
+ }
2994
+
2995
+ .e-pv-comments-select .e-pv-comment-textbox .e-editable-value-wrapper {
2996
+ color: $pv-comment-color;
2997
+ }
2998
+
2999
+ .e-pv-comments-leave {
3000
+ background-color: $pv-comment-panel-bg;
3001
+ }
3002
+
3003
+ .e-pdfviewer .e-accordion {
3004
+ background-color: $pv-comments-content-container-bg;
3005
+ border: transparent;
3006
+ }
3007
+
3008
+ .e-menu-wrapper.e-custom-scroll.e-lib.e-keyboard.e-pv-stamp {
3009
+ border: 0;
3010
+ @if $skin-name == 'bootstrap5' {
3011
+ background-color: $transparent;
3012
+ }
3013
+ display: block;
3014
+ }
3015
+
3016
+ .e-dropdown-popup.e-lib.e-popup.e-control.e-pv-handwritten-popup.e-popup-open ul {
3017
+ @if $skin-name == 'FluentUI' {
3018
+ padding-bottom: 6px;
3019
+ padding-top: 6px;
3020
+ }
3021
+ @else {
3022
+ padding-bottom: 6px;
3023
+ padding-top: 17px;
3024
+ }
3025
+ }
3026
+
3027
+ .e-bigger .e-dropdown-popup.e-lib.e-popup.e-control.e-pv-handwritten-popup .e-btn.e-outline.e-primary {
3028
+ @if $skin-name == 'FluentUI' {
3029
+ min-height: 49px;
3030
+ min-width: 152px;
3031
+ }
3032
+ }
3033
+
3034
+ .e-menu-icon.e-pv-stamp-icon.e-pv-icon {
3035
+ margin-top: $pv-stamp-icon-margin-top;
3036
+ padding-left: 7px;
3037
+ @if $skin-name == 'fabric' {
3038
+ margin-top: -7px;
3039
+ padding-left: 10px;
3040
+ }
3041
+ @if $skin-name == 'bootstrap5' {
3042
+ padding-left: 4px;
3043
+ }
3044
+ }
3045
+
3046
+ .e-pv-annotation-stamp-container .e-rtl.e-menu-wrapper ul .e-menu-item .e-menu-icon {
3047
+ @if $skin-name == 'bootstrap5' {
3048
+ margin-left: 1px;
3049
+ }
3050
+ }
3051
+
3052
+ .e-pdfviewer .e-inplaceeditor {
3053
+ display: block;
3054
+ }
3055
+
3056
+ .e-pdfviewer .e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
3057
+ display: none;
3058
+ }
3059
+
3060
+ .e-pdfviewer .e-inplaceeditor .e-editable-value-wrapper .e-editable-value {
3061
+ border-bottom: 0;
3062
+ word-break: break-all;
3063
+ }
3064
+
3065
+ .e-pdfviewer .e-inplaceeditor .e-editable-value-wrapper {
3066
+ display: block;
3067
+ }
3068
+
3069
+ .e-pdfviewer .e-inplaceeditor .e-editable-value-wrapper:hover {
3070
+ background: transparent;
3071
+ }
3072
+
3073
+ .e-pdfviewer .e-inplaceeditor .e-editable-value-container {
3074
+ background: transparent;
3075
+ width: 229px;
3076
+ }
3077
+
3078
+ .e-pv-status-div {
3079
+ height: 20px;
3080
+ left: 8px;
3081
+ position: relative;
3082
+ width: 20px;
3083
+ }
3084
+
3085
+ .e-pv-status-container {
3086
+ padding-bottom: 5px;
3087
+ padding-top: 2px;
3088
+ }
3089
+
3090
+ .e-pdfviewer .e-input-group.e-control-wrapper.e-editable-elements.e-input-focus {
3091
+ @if $skin-name != 'bootstrap5' {
3092
+ caret-color: $pv-comment-text-curser-color;
3093
+ }
3094
+ }
3095
+
3096
+ .e-pv-reply-div {
3097
+ margin-top: 3px;
3098
+ }
3099
+
3100
+ .e-pdfviewer .e-pv-accordion-container.e-accordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header,
3101
+ .e-pdfviewer .e-pv-accordion-container.e-accordion .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header {
3102
+ background: $pv-comment-panel-bg;
3103
+ @if $skin-name != 'FluentUI' {
3104
+ border: 1px solid $pv-comment-panel-border-color;
3105
+ }
3106
+ }
3107
+
3108
+ .e-pdfviewer .e-accordion .e-acrdn-item.e-selected.e-select.e-expand-state > .e-acrdn-header:focus,
3109
+ .e-pdfviewer .e-accordion .e-acrdn-item.e-selected > .e-acrdn-header {
3110
+ background: $pv-comment-panel-bg;
3111
+ box-shadow: none;
3112
+ }
3113
+
3114
+ .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,
3115
+ .e-pdfviewer .e-pv-accordion-container.e-accordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header .e-acrdn-header-content,
3116
+ .e-pdfviewer .e-pv-accordion-container.e-accordion .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header .e-acrdn-header-icon,
3117
+ .e-pdfviewer .e-pv-accordion-container.e-accordion .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header .e-acrdn-header-content {
3118
+ color: $pv-comment-text-color;
3119
+ font-size: 14px;
3120
+ @if $skin-name == 'FluentUI' {
3121
+ font-weight: $pv-comment-tile-font-weight;
3122
+ }
3123
+ }
3124
+
3125
+ .e-content-placeholder.e-pdfviewer.e-placeholder-pdfviewer {
3126
+ background-size: 100%;
3127
+ }
3128
+
3129
+ .e-pdfviewer .e-accordion .e-acrdn-item .e-acrdn-panel .e-acrdn-content {
3130
+ line-height: normal;
3131
+ }
3132
+
3133
+ .e-pdfviewer .e-pv-signature-apperance .e-checkbox-wrapper {
3134
+ margin-top: 10px;
3135
+ padding-bottom: $pv-signature-appearance-checkbox;
3136
+ }
3137
+
3138
+ .e-pdfviewer .e-pv-signature-window .e-footer-content .e-pv-clearbtn {
3139
+ float: left;
3140
+ }
3141
+
3142
+ .e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-bold.e-pv-tbar-btn.e-tooltip.textprop-option-active,
3143
+ .e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-italic.e-pv-tbar-btn.e-tooltip.textprop-option-active,
3144
+ .e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-strikeout.e-pv-tbar-btn.e-tooltip.textprop-option-active,
3145
+ .e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-underlinetext.e-pv-tbar-btn.e-tooltip.textprop-option-active,
3146
+ .e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-left-align.e-pv-tbar-btn.e-tooltip.textprop-option-active,
3147
+ .e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-right-align.e-pv-tbar-btn.e-tooltip.textprop-option-active,
3148
+ .e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-center-align.e-pv-tbar-btn.e-tooltip.textprop-option-active,
3149
+ .e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-justfiy-align.e-pv-tbar-btn.e-tooltip.textprop-option-active {
3150
+ @if $skin-name != 'bootstrap5' {
3151
+ background: $pv-signature-footer-color;
3152
+ border-color: $pv-signature-footer-color;
3153
+ }
3154
+ @else {
3155
+ background: $secondary-bg-color-pressed;
3156
+ border-color: $secondary-bg-color-pressed;
3157
+ color: $secondary-text-color-pressed;
3158
+ }
3159
+ }
3160
+
3161
+ .e-pv-comment-panel-resizer {
3162
+ background: $pv-sidebar-resizer-background;
3163
+ border: $pv-sidebar-resizer-border;
3164
+ border-width: $pv-sidebar-resizer-border-width;
3165
+ color: $pv-sidebar-resizer-color;
3166
+ cursor: $pv-sidebar-resizer-cursor;
3167
+ height: $pv-sidebar-resizer-height;
3168
+ position: $pv-sidebar-resizer-position;
3169
+ width: $pv-sidebar-resizer-width;
3170
+ z-index: $pv-sidebar-resizer-z-index;
3171
+ }
3172
+
3173
+ .e-pv-comment-panel-resizer.e-left {
3174
+ @if $skin-name == 'bootstrap4' {
3175
+ border-right: 1px solid $pv-sidebar-resizer-border-color;
3176
+ }
3177
+ left: 300px;
3178
+ }
3179
+
3180
+ .e-pv-comment-panel-resizer.e-right {
3181
+ @if $skin-name == 'bootstrap4' {
3182
+ border-left: 1px solid $pv-sidebar-resizer-border-color;
3183
+ }
3184
+ right: 300px;
3185
+ }
3186
+
3187
+ .e-pv-align {
3188
+ cursor: pointer;
3189
+ float: right;
3190
+ font-size: 20px;
3191
+ margin-right: 16px;
3192
+ margin-top: $pv-signature-delete-icon-margin-top;
3193
+ }
3194
+
3195
+ .e-pv-align-border {
3196
+ border: $pv-signature-border-color;
3197
+ border-radius: 5px;
3198
+ cursor: pointer;
3199
+ display: inline-block;
3200
+ width: 170px;
3201
+ }
3202
+
3203
+ .e-pv-align-border-div {
3204
+ @if $skin-name == 'highcontrast' {
3205
+ background-color: $pv-high-contrast-signature-bg;
3206
+ color: $pv-high-contrast-signature-text;
3207
+ }
3208
+ }
3209
+
3210
+ .e-pv-font-sign {
3211
+ border: 1px solid $pv-sidebar-bookmark-title-color;
3212
+ border-radius: 5px;
3213
+ display: inline-block;
3214
+ font-size: 13px;
3215
+ height: 88px;
3216
+ margin: 15px;
3217
+ padding-top: 40px;
3218
+ text-align: center;
3219
+ width: 311px;
3220
+ word-wrap: break-word;
3221
+ @if $skin-name == 'FluentUI' {
3222
+ max-width: 300px;
3223
+ padding-top: 36px;
3224
+ }
3225
+ }
3226
+
3227
+ .e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item.e-focused {
3228
+ @if $skin-name == 'bootstrap5' {
3229
+ color: $white;
3230
+ height: 32px;
3231
+ line-height: 32px;
3232
+ }
3233
+ @else {
3234
+ color: $pv-icon-color;
3235
+ }
3236
+ }
3237
+
3238
+ .e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item {
3239
+ @if $skin-name == 'bootstrap5' {
3240
+ height: 32px;
3241
+ line-height: 32px;
3242
+ padding-left: 8px;
3243
+ }
3244
+ }
3245
+
3246
+ .e-pv-custom-annotation-stamp-container.e-menu-container ul .e-menu-item .e-menu-icon {
3247
+ @if $skin-name == 'bootstrap5' {
3248
+ font-size: 16px;
3249
+ }
3250
+ }
3251
+
3252
+ .e-pv-custom-annotation-stamp-container.e-menu-container ul .e-menu-item .e-caret {
3253
+ @if $skin-name == 'bootstrap5' {
3254
+ font-size: 14px;
3255
+ }
3256
+ }
3257
+
3258
+ .e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item,
3259
+ .e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item .e-menu-icon,
3260
+ .e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item .e-caret {
3261
+ @if ($skin-name == 'tailwind' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'bootstrap5') {
3262
+ border-radius: 4px;
3263
+ }
3264
+ @if $skin-name == 'bootstrap5' {
3265
+ color: $pv-icon-color;
3266
+ height: 32px;
3267
+ line-height: 32px;
3268
+ }
3269
+ @else {
3270
+ color: $pv-icon-color;
3271
+ }
3272
+ }
3273
+
3274
+ .e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item.e-focused:hover,
3275
+ .e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item.e-selected {
3276
+ @if $skin-name == 'bootstrap5' {
3277
+ background: $secondary-bg-color-pressed;
3278
+ }
3279
+ @if $skin-name == 'bootstrap4' {
3280
+ background: $pv-annotation-dropdown-background-color-hover;
3281
+ }
3282
+ }
3283
+
3284
+ .e-pv-custom-annotation-stamp-container.e-menu-wrapper ul,
3285
+ .e-pv-custom-annotation-stamp-container.e-menu-container ul {
3286
+ @if $skin-name == 'bootstrap4' {
3287
+ background-color: $pv-annotation-dropdown-background-color;
3288
+ }
3289
+ }
3290
+
3291
+ .e-pv-custom-annotation-stamp-container.e-menu-container ul .e-menu-item.e-focused:hover .e-menu-icon,
3292
+ .e-pv-custom-annotation-stamp-container.e-menu-container ul .e-menu-item.e-focused:hover .e-caret {
3293
+ @if $skin-name == 'bootstrap4' {
3294
+ color: $pv-icon-color-hover;
3295
+ }
3296
+ @if $skin-name == 'bootstrap5' {
3297
+ color: $white;
3298
+ }
3299
+ }
3300
+
3301
+ .e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item.e-focused:hover .e-menu-icon,
3302
+ .e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item.e-focused:hover .e-caret,
3303
+ .e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item.e-selected .e-menu-icon,
3304
+ .e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item.e-selected .e-caret {
3305
+ @if $skin-name == 'bootstrap4' {
3306
+ color: $pv-icon-color-hover;
3307
+ }
3308
+ @if $skin-name == 'bootstrap5' {
3309
+ color: $white;
3310
+ }
3311
+ }
3312
+
3313
+ .e-pv-stamp-template-container .e-menu-container .e-menu {
3314
+ background-color: $pv-annotation-dropdown-background-color;
3315
+ border-color: $pv-annotation-dropdown-border-color;
3316
+ }
3317
+
3318
+ .e-pv-custom-annotation-stamp-container.e-menu-container .e-ul .e-menu-item.e-selected,
3319
+ .e-pv-custom-annotation-stamp-container.e-menu-container.e-menu-container .e-ul .e-menu-item.e-focused {
3320
+ @if $skin-name == 'bootstrap4' {
3321
+ background-color: $pv-comment-text-curser-color;
3322
+ color: $pv-icon-color-hover;
3323
+ outline: 0 solid $pv-comment-text-curser-color;
3324
+ outline-offset: 0;
3325
+ }
3326
+ }
3327
+
3328
+ .e-pv-custom-annotation-thickness-container,
3329
+ .e-pv-custom-annotation-opacity-container {
3330
+ background-color: $pv-annotation-dropdown-background-color;
3331
+ border-color: $pv-annotation-dropdown-border-color;
3332
+ }
3333
+
3334
+ .e-pdfviewer-signatureformfields.e-pv-signature-focus,
3335
+ .e-pdfviewer-signatureformfields-signature.e-pv-signature-focus {
3336
+ outline: $pv-print-popup-container-background-color dotted 2px;
3337
+ }
3338
+
3339
+ .e-pv-checkbox-container {
3340
+ -moz-user-select: none;
3341
+ -ms-user-select: none;
3342
+ -webkit-user-select: none;
3343
+ cursor: pointer;
3344
+ display: block;
3345
+ margin-bottom: 0;
3346
+ position: relative;
3347
+ user-select: none;
3348
+ }
3349
+
3350
+ .e-pv-text-selection-none {
3351
+ -moz-user-select: none;
3352
+ -ms-user-select: none;
3353
+ -webkit-user-select: none;
3354
+ user-select: none;
3355
+ }
3356
+
3357
+ .e-pv-checkbox-container input {
3358
+ cursor: pointer;
3359
+ height: 0;
3360
+ opacity: 0;
3361
+ position: absolute;
3362
+ width: 0;
3363
+ }
3364
+
3365
+ .e-pv-checkbox-div {
3366
+ border: $pv-form-field-checkbox-container;
3367
+ display: inline;
3368
+ height: 100%;
3369
+ left: 0;
3370
+ position: absolute;
3371
+ text-align: center;
3372
+ top: 0;
3373
+ width: 100%;
3374
+ }
3375
+
3376
+ .e-pv-cb-checked {
3377
+ border: $pv-form-field-checkbox-checked;
3378
+ border-left-color: transparent;
3379
+ border-top-color: transparent;
3380
+ border-width: $pv-form-field-checkbox-border-width;
3381
+ position: absolute;
3382
+ transform: rotate(45deg);
3383
+ }
3384
+
3385
+ .e-pv-cb-unchecked {
3386
+ border: 1px;
3387
+ border-width: 1px;
3388
+ }
3389
+
3390
+ .e-pv-radiobtn-container {
3391
+ -moz-user-select: none;
3392
+ -ms-user-select: none;
3393
+ -webkit-user-select: none;
3394
+ cursor: pointer;
3395
+ display: block;
3396
+ margin-bottom: 0;
3397
+ position: relative;
3398
+ user-select: none;
3399
+ }
3400
+
3401
+ .e-pv-radiobtn-container input {
3402
+ cursor: pointer;
3403
+ opacity: 0;
3404
+ position: absolute;
3405
+ }
3406
+
3407
+ .e-pv-radiobtn-div {
3408
+ border: 1px solid $pv-form-checkbox-border-color;
3409
+ border-radius: 50%;
3410
+ height: 100%;
3411
+ left: $pv-form-field-size;
3412
+ position: absolute;
3413
+ top: $pv-form-field-size;
3414
+ width: 100%;
3415
+ }
3416
+
3417
+ .e-pv-radio-btn {
3418
+ border: 0;
3419
+ clip: rect(0 0 0 0);
3420
+ height: 1px;
3421
+ margin: -1px;
3422
+ overflow: hidden;
3423
+ padding: 0;
3424
+ position: absolute;
3425
+ width: 1px;
3426
+ }
3427
+
3428
+ .e-pv-radio-btn + span {
3429
+ display: block;
3430
+ }
3431
+
3432
+ .e-pv-radio-btn + .e-pv-radiobtn-span::before {
3433
+ content: '';
3434
+ display: block;
3435
+ height: inherit;
3436
+ width: inherit;
3437
+ }
3438
+
3439
+ .e-pv-radio-btn:checked + .e-pv-radiobtn-span::before {
3440
+ background: $pv-form-checkbox-border-color;
3441
+ border-radius: 50%;
3442
+ }
3443
+
3444
+ .e-pv-properties-text-edit-prop,
3445
+ .e-pv-properties-visibility-style-prop,
3446
+ .e-pv-properties-font-items-container {
3447
+ display: flex;
3448
+ justify-content: space-evenly;
3449
+ }
3450
+
3451
+ .e-pv-properties-form-field-name-main-div,
3452
+ .e-pv-properties-form-field-value-main-div {
3453
+ @if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark' or $skin-name == 'FluentUI') {
3454
+ padding-right: 12px;
3455
+ }
3456
+ @else {
3457
+ padding-right: 15px;
3458
+ }
3459
+ }
3460
+
3461
+ .e-pv-properties-form-field-name-main-div,
3462
+ .e-pv-properties-form-field-tooltip-main-div,
3463
+ .e-pv-properties-form-field-value-main-div,
3464
+ .e-pv-properties-form-field-visibility-main-div {
3465
+ @if $skin-name == 'FluentUI' {
3466
+ width: 232px;
3467
+ }
3468
+ @else {
3469
+ width: 285px;
3470
+ }
3471
+ }
3472
+
3473
+ .e-pv-properties-text-edit-prop {
3474
+ @if $skin-name == 'FluentUI' {
3475
+ padding-top: 35px;
3476
+ }
3477
+ @else {
3478
+ padding-top: 20px;
3479
+ }
3480
+ }
3481
+
3482
+ .e-pv-properties-visibility-style-prop {
3483
+ @if $skin-name == 'FluentUI' {
3484
+ padding-bottom: 12px;
3485
+ padding-top: 12px;
3486
+ }
3487
+ @else {
3488
+ padding-bottom: 10px;
3489
+ padding-top: 20px;
3490
+ }
3491
+ }
3492
+
3493
+ .e-pv-properties-checkbox-main-div-prop {
3494
+ display: flex;
3495
+ flex-direction: row;
3496
+ justify-content: space-between;
3497
+ padding-top: 20px;
3498
+ }
3499
+
3500
+ .e-pv-bold-icon-div,
3501
+ .e-pv-italic-icon-div,
3502
+ .e-pv-strikeout-icon-div,
3503
+ .e-pv-underlinetext-icon-div,
3504
+ .e-pv-left-align-icon-div,
3505
+ .e-pv-center-align-icon-div,
3506
+ .e-pv-right-align-icon-div {
3507
+ padding: $pv-formfield-properties-icon-align-padding;
3508
+ }
3509
+
3510
+ .e-pv-bold-icon-div:hover,
3511
+ .e-pv-italic-icon-div:hover,
3512
+ .e-pv-strikeout-icon-div:hover,
3513
+ .e-pv-underlinetext-icon-div:hover,
3514
+ .e-pv-left-align-icon-div:hover,
3515
+ .e-pv-center-align-icon-div:hover,
3516
+ .e-pv-right-align-icon-div:hover {
3517
+ background-color: $pv-annotation-dropdown-background-color-hover;
3518
+ border-color: $pv-annotation-dropdown-border-color-hover;
3519
+ @if ($skin-name == 'bootstrap5') {
3520
+ background-color: $secondary-bg-color-pressed;
3521
+ border-color: $secondary-bg-color-pressed;
3522
+ color: $white;
3523
+ }
3524
+ }
3525
+
3526
+ .e-pv-bold-icon-div:active,
3527
+ .e-pv-italic-icon-div:active,
3528
+ .e-pv-strikeout-icon-div:active,
3529
+ .e-pv-underlinetext-icon-div:active,
3530
+ .e-pv-left-align-icon-div:active,
3531
+ .e-pv-center-align-icon-div:active,
3532
+ .e-pv-right-align-icon-div:active {
3533
+ background-color: $pv-signature-footer-color;
3534
+ border-color: $pv-signature-footer-color;
3535
+ @if ($skin-name == 'bootstrap5') {
3536
+ background-color: $secondary-bg-color-pressed;
3537
+ border-color: $secondary-bg-color-pressed;
3538
+ color: $white;
3539
+ }
3540
+ }
3541
+
3542
+ .e-pv-properties-fill-color-style-prop,
3543
+ .e-pv-properties-stroke-color-style-prop,
3544
+ .e-pv-properties-stroke-thickness-style-prop {
3545
+ padding: 12px 20px 12px 1px;
3546
+ }
3547
+
3548
+ .e-pv-formfield-fontcolor-icon,
3549
+ .e-pv-formfield-strokecolor-icon,
3550
+ .e-pv-formfield-strokethickness-icon {
3551
+ @if ($skin-name == 'bootstrap4') {
3552
+ color: $pv-form-field-property-header-color;
3553
+ }
3554
+ @if ($skin-name == 'bootstrap5') {
3555
+ color: inherit;
3556
+ }
3557
+ @if ($skin-name == 'material') {
3558
+ color: $pv-prop-line-styles-color;
3559
+ }
3560
+ background: $pv-form-field-property-font-style-color;
3561
+ @if ($skin-name == 'bootstrap5') {
3562
+ border: 1px solid $border-light;
3563
+ }
3564
+ @if ($skin-name == 'bootstrap5') {
3565
+ border-radius: 4px;
3566
+ }
3567
+ @else {
3568
+ border-radius: 2px;
3569
+ }
3570
+ height: $pv-formfield-properties-icon-height;
3571
+ margin-top: 8px;
3572
+ @if $skin-name != 'FluentUI' {
3573
+ width: 54px;
3574
+ }
3575
+ @if ($skin-name == 'bootstrap5') {
3576
+ align-content: center;
3577
+ align-items: center;
3578
+ box-shadow: none;
3579
+ display: flex;
3580
+ flex-direction: row;
3581
+ flex-wrap: wrap;
3582
+ padding: 0 11px;
3583
+ width: inherit;
3584
+ }
3585
+ }
3586
+
3587
+ .e-pv-properties-format-text-style-prop {
3588
+ @if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark') {
3589
+ padding: 15px 15px 4px 1px;
3590
+ }
3591
+ @else {
3592
+ padding: 15px 15px 15px 1px;
3593
+ }
3594
+ }
3595
+
3596
+ .e-pv-properties-font-family-container {
3597
+ margin-right: 15px;
3598
+ @if $skin-name == 'FluentUI' {
3599
+ width: 122px;
3600
+ }
3601
+ @else {
3602
+ width: 165px;
3603
+ }
3604
+ }
3605
+
3606
+ .e-pv-properties-font-size-container {
3607
+ border-right-color: $pv-comment-panel-bottom-color;
3608
+ border-right-style: solid;
3609
+ border-right-width: 1px;
3610
+ margin-right: 15px;
3611
+ padding-right: 15px;
3612
+ width: $pv-font-size-field-width;
3613
+ }
3614
+
3615
+ .e-pv-formfield-maxlength {
3616
+ padding-left: 20px;
3617
+ }
3618
+
3619
+ .e-pv-left-align-icon-div,
3620
+ .e-pv-center-align-icon-div,
3621
+ .e-pv-right-align-icon-div {
3622
+ @if ($skin-name != 'bootstrap5') {
3623
+ padding-left: 6px;
3624
+ }
3625
+ }
3626
+
3627
+ .e-pv-properties-font-color-container,
3628
+ .e-pv-properties-color-container-style-prop {
3629
+ display: flex;
3630
+ padding-top: 20px;
3631
+ }
3632
+
3633
+ .e-pv-formfield-textcolor {
3634
+ margin-right: 10px;
3635
+ }
3636
+
3637
+ .e-pv-formfield-maxlength-icon {
3638
+ align-items: center;
3639
+ display: flex;
3640
+ padding-right: 14px;
3641
+ @if ($skin-name == 'bootstrap5') {
3642
+ padding-right: 10px;
3643
+ }
3644
+ @if ($skin-name == 'FluentUI') {
3645
+ padding-right: 8px;
3646
+ }
3647
+ }
3648
+
3649
+ .e-pv-formfield-textcolor-icon.e-btn.e-icon-btn,
3650
+ .e-pv-formfield-strokecolor-icon.e-btn.e-icon-btn,
3651
+ .e-pv-formfield-fontcolor-icon.e-btn.e-icon-btn,
3652
+ .e-pv-formfield-strokethickness-icon.e-btn.e-icon-btn {
3653
+ @if ($skin-name == 'bootstrap5') {
3654
+ padding: 0 11px;
3655
+ }
3656
+ }
3657
+
3658
+ .e-pv-formfield-textcolor-icon {
3659
+ background: $pv-form-field-property-font-style-color;
3660
+ @if ($skin-name == 'bootstrap5') {
3661
+ border: 1px solid $border-light;
3662
+ }
3663
+ @if ($skin-name == 'bootstrap5') {
3664
+ border-radius: 4px;
3665
+ }
3666
+ @else {
3667
+ border-radius: 2px;
3668
+ }
3669
+ width: $pv-form-field-property-font-style-width;
3670
+ @if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark') {
3671
+ height: 36px;
3672
+ }
3673
+ @if ($skin-name == 'bootstrap4') {
3674
+ color: $pv-form-field-property-header-color;
3675
+ }
3676
+ @if ($skin-name == 'material') {
3677
+ color: $pv-prop-line-styles-color;
3678
+ }
3679
+ @if ($skin-name == 'bootstrap5') {
3680
+ align-items: baseline;
3681
+ box-shadow: none;
3682
+ color: inherit;
3683
+ display: flex;
3684
+ height: 32px;
3685
+ }
3686
+ @if ($skin-name == 'FluentUI') {
3687
+ height: auto;
3688
+ }
3689
+ }
3690
+
3691
+ .e-pv-properties-formfield-maxlength-text-label,
3692
+ .e-pv-formfield-maxlength {
3693
+ padding-left: 1px;
3694
+ width: $pv-formfield-maxlength-width;
3695
+ }
3696
+
3697
+ .e-pv-formfield-maxlength-group {
3698
+ display: flex;
3699
+ padding-left: $pv-formfield-maxlength-group-padding-left;
3700
+ }
3701
+
3702
+ .e-pv-properties-form-field-list-add-div {
3703
+ display: flex;
3704
+ @if $skin-name == 'FluentUI' {
3705
+ padding-bottom: 12px;
3706
+ padding-top: 16px;
3707
+ }
3708
+ @else {
3709
+ padding-bottom: 15px;
3710
+ padding-top: 20px;
3711
+ }
3712
+ }
3713
+
3714
+ .e-pv-properties-list-item-edit-prop {
3715
+ margin-right: 15px;
3716
+ width: 295px;
3717
+ @if $skin-name == 'FluentUI' {
3718
+ margin-right: 12px;
3719
+ width: 318px;
3720
+ }
3721
+ }
3722
+
3723
+ .e-pv-properties-form-field-window {
3724
+ max-width: $pv-properties-form-field-win-max-width;
3725
+ }
3726
+
3727
+ .e-pv-properties-formfield-textarea {
3728
+ @if $skin-name == 'FluentUI' {
3729
+ min-width: 318px;
3730
+ }
3731
+ }
3732
+
3733
+ .e-pv-properties-export-value-edit-prop {
3734
+ width: 295px;
3735
+ @if $skin-name == 'FluentUI' {
3736
+ width: 318px;
3737
+ }
3738
+ }
3739
+
3740
+ .e-pv-properties-form-field-list-btn-div {
3741
+ align-items: center;
3742
+ display: flex;
3743
+ height: 36px;
3744
+ margin-top: 10px;
3745
+ text-align: center;
3746
+ @if $skin-name == 'FluentUI' {
3747
+ height: 32px;
3748
+ margin-top: 25px;
3749
+ }
3750
+ }
3751
+
3752
+ .e-pv-properties-form-field-export-value-main-div {
3753
+ @if $skin-name == 'FluentUI' {
3754
+ padding-bottom: 12px;
3755
+ padding-top: 0;
3756
+ }
3757
+ @else {
3758
+ padding-bottom: 15px;
3759
+ padding-top: 10px;
3760
+ }
3761
+ width: 335px;
3762
+ }
3763
+
3764
+ .e-pv-properties-form-field-group-btn-div {
3765
+ display: grid;
3766
+ }
3767
+
3768
+ .e-pv-properties-form-field-option-dropdown-list-div {
3769
+ @if $skin-name == 'FluentUI' {
3770
+ padding-top: 0;
3771
+ }
3772
+ @else {
3773
+ padding-top: 10px;
3774
+ }
3775
+ }
3776
+
3777
+ .e-pv-properties-form-field-btn-textarea-container {
3778
+ display: flex;
3779
+ width: 385px;
3780
+ @if $skin-name == 'FluentUI' {
3781
+ padding-top: 0;
3782
+ }
3783
+ @else {
3784
+ padding-top: 15px;
3785
+ }
3786
+ }
3787
+
3788
+ .e-pv-properties-dropdown-btn {
3789
+ align-items: center;
3790
+ display: flex;
3791
+ height: 36px;
3792
+ text-align: center;
3793
+ width: 75px;
3794
+ }
3795
+
3796
+ .e-pv-show-designer-name {
3797
+ align-items: center;
3798
+ color: $pv-show-designer-name-color;
3799
+ display: grid;
3800
+ height: 100%;
3801
+ overflow: hidden;
3802
+ text-align: center;
3803
+ text-overflow: ellipsis;
3804
+ white-space: nowrap;
3805
+ width: 100%;
3806
+ }
3807
+
3808
+ .e-pv-formfield-li-element {
3809
+ list-style: none;
3810
+ padding-left: 10px;
3811
+ }
3812
+
3813
+ .e-pv-li-select {
3814
+ background-color: $pv-form-field-li-background-color;
3815
+ @if ($skin-name == 'bootstrap5') {
3816
+ background-color: $pv-item-selection-background-color;
3817
+ color: $white;
3818
+ }
3819
+ @if ($skin-name == 'tailwind') {
3820
+ background-color: $pv-item-selection-background-color;
3821
+ }
3822
+ }
3823
+
3824
+ .e-pv-formfield-li-element.e-pv-li-select {
3825
+ background-color: $pv-form-field-li-background-color;
3826
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
3827
+ color: $white;
3828
+ }
3829
+ }
3830
+
3831
+ .e-pv-formfield-li-element:hover {
3832
+ background-color: $pv-form-field-li-background-color;
3833
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
3834
+ color: $white;
3835
+ }
3836
+ }
3837
+
3838
+ .e-pv-form-designer-ul-list-items {
3839
+ padding-left: 1px;
3840
+ }
3841
+
3842
+ .e-pv-form-field-property-header.e-dialog .e-dlg-header .e-dlg-header-content {
3843
+ font-size: $pv-form-field-property-header-font-size;
3844
+ font-weight: $pv-form-field-property-header-font-weight;
3845
+ }
3846
+
3847
+ .e-pv-form-field-property-header {
3848
+ -ms-user-select: none;
3849
+ -webkit-user-select: none;
3850
+ color: $pv-form-field-property-header-color;
3851
+ display: block;
3852
+ @if $skin-name == 'FluentUI' {
3853
+ font-family: 'Segoe UI';
3854
+ height: 24px;
3855
+ }
3856
+ @else {
3857
+ font-family: Roboto;
3858
+ }
3859
+ @if $skin-name == 'bootstrap5' {
3860
+ font-family: inherit;
3861
+ }
3862
+ font-size: $pv-form-field-property-header-font-size;
3863
+ font-style: normal;
3864
+ font-weight: $pv-form-field-property-header-font-weight;
3865
+ line-height: $pv-form-field-property-header-line-height;
3866
+ margin-top: $pv-form-field-property-header-margin-top;
3867
+ mix-blend-mode: normal;
3868
+ opacity: $pv-form-field-property-header-opacity;
3869
+ overflow: hidden;
3870
+ text-overflow: ellipsis;
3871
+ user-select: none;
3872
+ vertical-align: top;
3873
+ white-space: nowrap;
3874
+ width: $pv-form-field-property-header-width;
3875
+ }
3876
+
3877
+ .e-pv-form-field-property-header-general {
3878
+ @if $skin-name == 'FluentUI' {
3879
+ font-family: 'Segoe UI';
3880
+ height: 24px;
3881
+ }
3882
+ @else {
3883
+ font-family: Roboto;
3884
+ }
3885
+ @if $skin-name == 'bootstrap5' {
3886
+ font-family: inherit;
3887
+ }
3888
+ font-size: $pv-form-field-property-general-header-font-size;
3889
+ font-style: normal;
3890
+ @if $skin-name != 'FluentUI' {
3891
+ font-weight: $pv-form-field-property-header-font-weight;
3892
+ }
3893
+ line-height: $pv-form-field-property-general-header-line-height;
3894
+ }
3895
+
3896
+ .e-pv-properties-tab-style-prop.e-lib.e-tab.e-control {
3897
+ @if ($skin-name == 'highcontrast' or $skin-name == 'highcontrast-dark') {
3898
+ border: 0;
3899
+ }
3900
+ }
3901
+
3902
+ .e-pv-properties-formfield-formatting {
3903
+ color: $pv-form-field-property-label-color;
3904
+ font-family: Roboto;
3905
+ font-size: $pv-form-field-property-general-header-font-size;
3906
+ font-style: normal;
3907
+ font-weight: normal;
3908
+ height: $pv-form-field-property-general-header-line-height;
3909
+ line-height: $pv-form-field-property-general-header-line-height;
3910
+ width: 64px;
3911
+ }
3912
+
3913
+ .e-pv-properties-form-field-font-style {
3914
+ background: $pv-form-field-property-font-style-color;
3915
+ @if ($skin-name == 'bootstrap5') {
3916
+ border-radius: 4px;
3917
+ }
3918
+ @else {
3919
+ border-radius: 2px;
3920
+ }
3921
+ display: flex;
3922
+ height: 36px;
3923
+ justify-content: space-evenly;
3924
+ width: 154px;
3925
+ @if ($skin-name == 'bootstrap5') {
3926
+ align-items: center;
3927
+ border: 1px solid $border-light;
3928
+ height: 32px;
3929
+ width: 163px;
3930
+ }
3931
+ @if ($skin-name == 'FluentUI') {
3932
+ align-items: center;
3933
+ border: 1px solid $border;
3934
+ height: 32px;
3935
+ width: 163px;
3936
+ }
3937
+ }
3938
+
3939
+ .e-pv-properties-form-field-font-align {
3940
+ background: $pv-form-field-property-font-style-color;
3941
+ @if ($skin-name == 'bootstrap5') {
3942
+ border-radius: 4px;
3943
+ }
3944
+ @else {
3945
+ border-radius: 2px;
3946
+ }
3947
+ display: flex;
3948
+ height: 36px;
3949
+ justify-content: space-evenly;
3950
+ margin-right: 15px;
3951
+ width: 120px;
3952
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
3953
+ align-items: center;
3954
+ border: 1px solid $border-light;
3955
+ height: 32px;
3956
+ }
3957
+ @if ($skin-name == 'FluentUI') {
3958
+ border: 1px solid $border;
3959
+ }
3960
+ }
3961
+
3962
+ .e-pv-properties-formfield-label {
3963
+ color: $pv-form-field-property-label-color;
3964
+ font-family: Roboto;
3965
+ @if ($skin-name == 'bootstrap5') {
3966
+ font-family: inherit;
3967
+ }
3968
+ font-size: $pv-form-field-property-general-header-font-size;
3969
+ font-style: normal;
3970
+ font-weight: normal;
3971
+ @if ($skin-name == 'bootstrap5') {
3972
+ font-weight: 500;
3973
+ }
3974
+ @if ($skin-name == 'FluentUI') {
3975
+ font-family: 'Segoe UI';
3976
+ font-weight: 600;
3977
+ margin-bottom: 4px;
3978
+ }
3979
+ height: $pv-form-field-property-general-header-line-height;
3980
+ line-height: $pv-form-field-property-general-header-line-height;
3981
+ }
3982
+
3983
+ .e-pv-formfield-maxlength .e-input-group.e-control-wrapper .e-input-group-icon {
3984
+ min-width: $pv-formfield-maxlength-arrow-width;
3985
+ }
3986
+
3987
+ .e-pv-properties-form-field-window {
3988
+ height: $pv-formfield-designer-dialog-height;
3989
+ }
3990
+
3991
+ .e-pv-properties-header-spliter {
3992
+ border-bottom-color: $pv-properties-header-spliter-border-bottom-color;
3993
+ border-bottom-style: $pv-properties-header-spliter-border-bottom-style;
3994
+ border-bottom-width: $pv-properties-header-spliter-border-bottom-width;
3995
+ left: $pv-properties-header-spliter-left;
3996
+ padding-top: $pv-properties-header-spliter-padding-top;
3997
+ position: $pv-properties-header-spliter-position;
3998
+ width: $pv-properties-header-spliter-width;
3999
+ }
4000
+
4001
+ .e-pv-properties-bottom-spliter {
4002
+ border-bottom-color: $pv-properties-header-spliter-border-bottom-color;
4003
+ border-bottom-style: $pv-properties-header-spliter-border-bottom-style;
4004
+ border-bottom-width: $pv-properties-header-spliter-border-bottom-width;
4005
+ left: $pv-properties-header-spliter-left;
4006
+ margin-bottom: $pv-properties-header-spliter-margin-bottom;
4007
+ padding-top: $pv-properties-header-spliter-margin-bottom;
4008
+ width: $pv-properties-header-spliter-width;
4009
+ }
4010
+
4011
+ .e-pv-formfield-textcolor-icon .e-btn-icon.e-icons,
4012
+ .e-pv-formfield-fontcolor-icon .e-btn-icon.e-icons,
4013
+ .e-pv-formfield-strokecolor-icon .e-btn-icon.e-icons,
4014
+ .e-pv-formfield-strokethickness-icon .e-btn-icon.e-icons {
4015
+ @if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark') {
4016
+ width: 1em;
4017
+ }
4018
+ }
4019
+
4020
+ .e-pv-annotation-toolbar.e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-separator) {
4021
+ background-color: $pv-comment-panel-bg;
4022
+ padding: 0 $pv-icon-padding-top;
4023
+ }
4024
+
4025
+ .e-pv-annotation-toolbar.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
4026
+ padding: 0 $pv-icon-padding-top;
4027
+ }
4028
+
4029
+ .e-pv-signature-window .e-dlg-content {
4030
+ @if ($skin-name == 'highcontrast') {
4031
+ padding: 16px;
4032
+ }
4033
+ }
4034
+
4035
+ .e-pv-signatureimage {
4036
+ @if ($skin-name == 'highcontrast') {
4037
+ background-color: $pv-signature-image-panel-bg;
4038
+ }
4039
+ }
4040
+
4041
+ .e-pv-annotation-toolbar .e-dropdown-btn.e-btn:hover,
4042
+ .e-pv-annotation-toolbar .e-dropdown-btn.e-btn:hover .e-caret,
4043
+ .e-pv-annotation-toolbar .e-dropdown-btn.e-btn:hover:focus,
4044
+ .e-pv-annotation-toolbar .e-dropdown-btn.e-btn:hover:focus .e-caret {
4045
+ @if ($skin-name == 'bootstrap4') {
4046
+ color: $pv-prop-win-drop-down-color-hover;
4047
+ }
4048
+ }
4049
+
4050
+ .e-pv-annotation-toolbar .e-dropdown-btn.e-btn:focus,
4051
+ .e-pv-annotation-toolbar .e-dropdown-btn.e-btn:focus .e-caret,
4052
+ .e-pv-annotation-toolbar .e-dropdown-btn.e-btn:not(:hover) {
4053
+ @if ($skin-name == 'bootstrap4') {
4054
+ color: $pv-stamp-icon-color;
4055
+ }
4056
+ }
4057
+
4058
+ .e-pv-signature-dialog-height {
4059
+ height: $pv-signature-dialog-height;
4060
+ @if ($skin-name == 'FluentUI') {
4061
+ min-height: $pv-signature-dialog-height;
4062
+ }
4063
+ }
4064
+
4065
+ .e-bigger .e-pv-signature-dialog-height {
4066
+ @if ($skin-name == 'FluentUI') {
4067
+ min-height: 592px;
4068
+ }
4069
+ }
4070
+
4071
+ .e-pv-signature-dialog-blazor-height {
4072
+ height: $pv-signature-dialog-blazor-height;
4073
+ @if ($skin-name == 'FluentUI') {
4074
+ min-height: $pv-signature-dialog-height;
4075
+ }
4076
+ }
4077
+
4078
+ .e-pv-handwritten-signature-canvas {
4079
+ height: $pv-handwritten-sign-height;
4080
+ width: $pv-handwritten-sign-width;
4081
+ }
4082
+
4083
+ .e-pv-toolbar-scroll .e-toolbar-pop.e-popup-open {
4084
+ overflow: auto;
4085
+ }
4086
+
4087
+ .e-pv-canvas-signature {
4088
+ width: $pv-canvas-sign-width;
4089
+ @if $skin-name == 'FluentUI' {
4090
+ max-width: $pv-canvas-sign-width;
4091
+ }
4092
+ }
4093
+
4094
+ .e-pv-canvas-signature-blazor {
4095
+ width: $pv-canvas-sign-width-blazor;
4096
+ }
4097
+
4098
+ .e-pv-font-appearance-style {
4099
+ padding: $pv-font-div-padding;
4100
+ }
4101
+
4102
+ .e-pv-font-appearance-style-blazor {
4103
+ padding: $pv-font-div-padding-blazor;
4104
+ }
4105
+
4106
+ .e-pv-annotation-textalign-container.e-dropdown-btn.e-btn .e-pv-left-align-icon.e-pv-icon.e-btn-icon.e-icon-left {
4107
+ @if ($skin-name == 'bootstrap4' or $skin-name == 'material') {
4108
+ padding: 0 6px;
4109
+ width: 28px;
4110
+ }
4111
+ }
4112
+ }