@syncfusion/ej2-angular-pdfviewer 23.2.7 → 24.1.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/src/pdfviewer/pdfviewer.component.mjs +3 -3
- package/fesm2015/syncfusion-ej2-angular-pdfviewer.mjs +2 -2
- package/fesm2015/syncfusion-ej2-angular-pdfviewer.mjs.map +1 -1
- package/fesm2020/syncfusion-ej2-angular-pdfviewer.mjs +2 -2
- package/fesm2020/syncfusion-ej2-angular-pdfviewer.mjs.map +1 -1
- package/package.json +9 -9
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/src/pdfviewer/pdfviewer.component.d.ts +2 -1
- package/styles/bootstrap-dark.css +105 -9
- package/styles/bootstrap.css +105 -9
- package/styles/bootstrap4.css +108 -9
- package/styles/bootstrap5-dark.css +105 -9
- package/styles/bootstrap5.css +105 -9
- package/styles/fabric-dark.css +105 -9
- package/styles/fabric.css +105 -9
- package/styles/fluent-dark.css +119 -9
- package/styles/fluent.css +119 -9
- package/styles/highcontrast-light.css +105 -9
- package/styles/highcontrast.css +105 -9
- package/styles/material-dark.css +105 -9
- package/styles/material.css +105 -9
- package/styles/material3-dark.css +105 -9
- package/styles/material3.css +105 -9
- package/styles/pdfviewer/_bootstrap-dark-definition.scss +4 -0
- package/styles/pdfviewer/_bootstrap-definition.scss +4 -0
- package/styles/pdfviewer/_bootstrap4-definition.scss +4 -0
- package/styles/pdfviewer/_bootstrap5-definition.scss +4 -0
- package/styles/pdfviewer/_fabric-dark-definition.scss +4 -0
- package/styles/pdfviewer/_fabric-definition.scss +4 -0
- package/styles/pdfviewer/_fluent-definition.scss +4 -0
- package/styles/pdfviewer/_fusionnew-definition.scss +4 -0
- package/styles/pdfviewer/_highcontrast-definition.scss +4 -0
- package/styles/pdfviewer/_highcontrast-light-definition.scss +4 -0
- package/styles/pdfviewer/_material-dark-definition.scss +4 -0
- package/styles/pdfviewer/_material-definition.scss +4 -0
- package/styles/pdfviewer/_material3-definition.scss +4 -0
- package/styles/pdfviewer/_tailwind-definition.scss +4 -0
- package/styles/pdfviewer/_theme.scss +152 -9
- package/styles/pdfviewer/bootstrap-dark.css +105 -9
- package/styles/pdfviewer/bootstrap.css +105 -9
- package/styles/pdfviewer/bootstrap4.css +108 -9
- package/styles/pdfviewer/bootstrap5-dark.css +105 -9
- package/styles/pdfviewer/bootstrap5.css +105 -9
- package/styles/pdfviewer/fabric-dark.css +105 -9
- package/styles/pdfviewer/fabric.css +105 -9
- package/styles/pdfviewer/fluent-dark.css +119 -9
- package/styles/pdfviewer/fluent.css +119 -9
- package/styles/pdfviewer/highcontrast-light.css +105 -9
- package/styles/pdfviewer/highcontrast.css +105 -9
- package/styles/pdfviewer/material-dark.css +105 -9
- package/styles/pdfviewer/material.css +105 -9
- package/styles/pdfviewer/material3-dark.css +105 -9
- package/styles/pdfviewer/material3.css +105 -9
- package/styles/pdfviewer/tailwind-dark.css +105 -9
- package/styles/pdfviewer/tailwind.css +105 -9
- package/styles/tailwind-dark.css +105 -9
- package/styles/tailwind.css +105 -9
|
@@ -11,6 +11,7 @@ $pv-icon-font-size: 16px !default;
|
|
|
11
11
|
$pv-icon-margin: 7px 7.5px !default;
|
|
12
12
|
$pv-icon-height: 18px !default;
|
|
13
13
|
$pv-icon-width: 18px !default;
|
|
14
|
+
$gantt-masked-table-background-color: rgba(225, 223, 221, 1) !default;
|
|
14
15
|
$pv-toolbar-height: 38px !default;
|
|
15
16
|
$pv-toolbar-border-width: 1px 1px 0 1px !default;
|
|
16
17
|
$pv-toolbar-border-radius: 0 !default;
|
|
@@ -399,6 +400,7 @@ $pv-control-overflow: auto !default;
|
|
|
399
400
|
$pv-control-touch-action: pan-x pan-y !default;
|
|
400
401
|
$pv-page-container-touch-action: pan-x pan-y !default;
|
|
401
402
|
$pv-page-div-border-style: solid !default;
|
|
403
|
+
$pv-page-div-focus-style: rgb(0, 0, 0) 0 0 0 2px !default;
|
|
402
404
|
$pv-page-div-border-color: $border-light !default;
|
|
403
405
|
$pv-page-div-border-boxing: content-box !default;
|
|
404
406
|
$pv-page-div-box-shadow: none !default;
|
|
@@ -503,6 +505,8 @@ $pv-comment-panel-bottom-color: $border-light !default;
|
|
|
503
505
|
$pv-comments-content-container-bg: $content-bg-color-alt1 !default;
|
|
504
506
|
$pv-comments-select-bg: $content-bg-color-hover !default;
|
|
505
507
|
$pv-comments-hover-bg: $content-bg-color-hover !default;
|
|
508
|
+
$pv-comments-div-focus-border: $shadow-focus-ring1 !default;
|
|
509
|
+
$pv-comments-div-focus-background: $content-bg-color-focus !default;
|
|
506
510
|
$pv-status-icon-color: $white !default;
|
|
507
511
|
$pv-save-button-bg-color: $primary !default;
|
|
508
512
|
$pv-save-button-color: $primary-text-color !default;
|
|
@@ -122,6 +122,15 @@
|
|
|
122
122
|
position: $pv-page-div-position;
|
|
123
123
|
}
|
|
124
124
|
|
|
125
|
+
.e-pv-viewer-container .e-pv-page-div.e-focused {
|
|
126
|
+
box-shadow: $pv-page-div-focus-style;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.e-pv-viewer-container.e-focused
|
|
130
|
+
{
|
|
131
|
+
box-shadow: $pv-page-div-focus-style inset;
|
|
132
|
+
}
|
|
133
|
+
|
|
125
134
|
.e-pv-toolbar,
|
|
126
135
|
.e-pv-nav-toolbar,
|
|
127
136
|
.e-pv-annotation-toolbar,
|
|
@@ -170,6 +179,29 @@
|
|
|
170
179
|
display: none;
|
|
171
180
|
}
|
|
172
181
|
|
|
182
|
+
.e-control.e-toolbar.e-lib.e-pv-annotation-toolbar.e-pv-toolbar-scroll.e-keyboard.e-toolpop .e-tbar-btn-text
|
|
183
|
+
{
|
|
184
|
+
display: none;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.e-dropdown-popup.e-control.e-pv-annotation-shapes-container .e-tbar-btn-text {
|
|
188
|
+
display: none;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.e-dropdown-popup.e-control.e-pv-annotation-calibrate-container .e-tbar-btn-text {
|
|
192
|
+
display: none;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.e-dropdown-popup.e-control.e-pv-annotation-textalign-container .e-tbar-btn-text
|
|
196
|
+
{
|
|
197
|
+
display: none;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.e-dropdown-popup.e-control.e-pv-annotation-textprop-container.e-caret-hide .e-tbar-btn-text
|
|
201
|
+
{
|
|
202
|
+
display: none;
|
|
203
|
+
}
|
|
204
|
+
|
|
173
205
|
.e-pv-current-page-box.e-input-group.e-control-wrapper {
|
|
174
206
|
height: $pv-current-page-height;
|
|
175
207
|
@if $skin-name == 'bootstrap5' {
|
|
@@ -339,6 +371,12 @@
|
|
|
339
371
|
}
|
|
340
372
|
}
|
|
341
373
|
|
|
374
|
+
.e-pdfviewer .e-pv-open-document-icon .e-pv-icon .e-icons .e-btn-icon .e-icon-left {
|
|
375
|
+
@if $skin-name == 'FluentUI' {
|
|
376
|
+
padding: 0;
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
|
|
342
380
|
.e-pv-toolbar.e-toolbar.e-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon,
|
|
343
381
|
.e-pv-annotation-toolbar.e-toolbar.e-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
344
382
|
@if $skin-name == 'FluentUI' {
|
|
@@ -1026,6 +1064,30 @@
|
|
|
1026
1064
|
padding: $pv-thumbnail-view-button-selection-padding;
|
|
1027
1065
|
}
|
|
1028
1066
|
|
|
1067
|
+
.e-pv-tbar-btn.e-pv-thumbnail-view-button.e-btn:focus
|
|
1068
|
+
{
|
|
1069
|
+
background: $pv-thumbnail-view-button-selection-background;
|
|
1070
|
+
border: $pv-thumbnail-view-button-selection-border;
|
|
1071
|
+
border-radius: $pv-thumbnail-border-selection-radius;
|
|
1072
|
+
@if $skin-name == 'bootstrap4' {
|
|
1073
|
+
color: $pv-thumbnail-border-selection-font-color;
|
|
1074
|
+
}
|
|
1075
|
+
line-height: $pv-thumbnail-view-button-selection-line-height;
|
|
1076
|
+
padding: $pv-thumbnail-view-button-selection-padding;
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
.e-pv-tbar-btn.e-pv-bookmark-button.e-btn:focus
|
|
1080
|
+
{
|
|
1081
|
+
background: $pv-thumbnail-view-button-selection-background;
|
|
1082
|
+
border: $pv-thumbnail-view-button-selection-border;
|
|
1083
|
+
border-radius: $pv-thumbnail-border-selection-radius;
|
|
1084
|
+
@if $skin-name == 'bootstrap4' {
|
|
1085
|
+
color: $pv-thumbnail-border-selection-font-color;
|
|
1086
|
+
}
|
|
1087
|
+
line-height: $pv-thumbnail-view-button-selection-line-height;
|
|
1088
|
+
padding: $pv-thumbnail-view-button-selection-padding;
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1029
1091
|
.e-bigger .e-pv-thumbnail-view-button-selection.e-pv-thumbnail-view-button.e-btn,
|
|
1030
1092
|
.e-bigger .e-pv-bookmark-button-selection.e-pv-bookmark-button.e-btn {
|
|
1031
1093
|
@if $skin-name == 'bootstrap4' {
|
|
@@ -1861,19 +1923,31 @@
|
|
|
1861
1923
|
font-size: 18px;
|
|
1862
1924
|
}
|
|
1863
1925
|
|
|
1864
|
-
.e-pv-annotation-color-container
|
|
1865
|
-
.e-pv-annotation-opacity-container
|
|
1866
|
-
.e-pv-annotation-stroke-container
|
|
1867
|
-
.e-pv-custom-annotation-thickness-container
|
|
1868
|
-
.e-pv-custom-annotation-opacity-container
|
|
1869
|
-
.e-pv-annotation-thickness-container
|
|
1870
|
-
.e-pv-annotation-textcolor-container
|
|
1871
|
-
.e-pv-annotation-textalign-container
|
|
1872
|
-
.e-pv-annotation-textprop-container
|
|
1926
|
+
.e-pv-annotation-color-container.e-icon-btn,
|
|
1927
|
+
.e-pv-annotation-opacity-container.e-icon-btn,
|
|
1928
|
+
.e-pv-annotation-stroke-container.e-icon-btn,
|
|
1929
|
+
.e-pv-custom-annotation-thickness-container.e-icon-btn,
|
|
1930
|
+
.e-pv-custom-annotation-opacity-container.e-icon-btn,
|
|
1931
|
+
.e-pv-annotation-thickness-container.e-icon-btn,
|
|
1932
|
+
.e-pv-annotation-textcolor-container.e-icon-btn,
|
|
1933
|
+
.e-pv-annotation-textalign-container.e-icon-btn,
|
|
1934
|
+
.e-pv-annotation-textprop-container.e-icon-btn {
|
|
1873
1935
|
height: $pv-annotation-drop-down-height;
|
|
1874
1936
|
width: $pv-annotation-drop-down-width;
|
|
1875
1937
|
}
|
|
1876
1938
|
|
|
1939
|
+
.e-bigger .e-pv-annotation-color-container.e-icon-btn,
|
|
1940
|
+
.e-bigger .e-pv-annotation-opacity-container.e-icon-btn,
|
|
1941
|
+
.e-bigger .e-pv-annotation-stroke-container.e-icon-btn,
|
|
1942
|
+
.e-bigger .e-pv-custom-annotation-thickness-container.e-icon-btn,
|
|
1943
|
+
.e-bigger .e-pv-custom-annotation-opacity-container.e-icon-btn,
|
|
1944
|
+
.e-bigger .e-pv-annotation-thickness-container.e-icon-btn,
|
|
1945
|
+
.e-bigger .e-pv-annotation-textcolor-container.e-icon-btn,
|
|
1946
|
+
.e-bigger .e-pv-annotation-textalign-container.e-icon-btn,
|
|
1947
|
+
.e-bigger .e-pv-annotation-textprop-container.e-icon-btn {
|
|
1948
|
+
white-space: nowrap;
|
|
1949
|
+
}
|
|
1950
|
+
|
|
1877
1951
|
.e-pv-annotation-thickness-container.e-btn.e-icon-btn.e-dropdown-btn {
|
|
1878
1952
|
@if ($skin-name != 'bootstrap5') {
|
|
1879
1953
|
padding-top: $pv-annotation-thickness-drop-down-padding-top;
|
|
@@ -1973,6 +2047,35 @@
|
|
|
1973
2047
|
}
|
|
1974
2048
|
}
|
|
1975
2049
|
|
|
2050
|
+
.e-pv-stamp.e-menu-wrapper ul .e-menu-item.e-focused:focus {
|
|
2051
|
+
background-color: $pv-annotation-dropdown-background-color-hover;
|
|
2052
|
+
border-color: $pv-annotation-dropdown-border-color-hover;
|
|
2053
|
+
outline: none;
|
|
2054
|
+
color: $pv-item-selection-color;
|
|
2055
|
+
}
|
|
2056
|
+
|
|
2057
|
+
.e-pv-annotation-color-container.e-btn:focus,
|
|
2058
|
+
.e-pv-annotation-opacity-container.e-btn:focus,
|
|
2059
|
+
.e-pv-annotation-stroke-container.e-btn:focus,
|
|
2060
|
+
.e-pv-annotation-thickness-container.e-btn:focus,
|
|
2061
|
+
.e-pv-annotation-shapes-container.e-btn:focus,
|
|
2062
|
+
.e-pv-annotation-calibrate-container.e-btn:focus,
|
|
2063
|
+
.e-pv-annotation-textcolor-container.e-btn:focus,
|
|
2064
|
+
.e-pv-annotation-textalign-container.e-btn:focus,
|
|
2065
|
+
.e-pv-annotation-handwritten-container.e-btn:focus,
|
|
2066
|
+
.e-pv-annotation-textprop-container.e-btn:focus {
|
|
2067
|
+
@if $skin-name == 'Material3' {
|
|
2068
|
+
background: $pv-annotation-dropdown-background-color-hover;
|
|
2069
|
+
border: $pv-annotation-dropdown-border-color-hover;
|
|
2070
|
+
outline: none;
|
|
2071
|
+
}
|
|
2072
|
+
@else {
|
|
2073
|
+
background-color: $pv-annotation-dropdown-background-color-hover;
|
|
2074
|
+
border-color: $pv-annotation-dropdown-border-color-hover;
|
|
2075
|
+
outline: none;
|
|
2076
|
+
}
|
|
2077
|
+
}
|
|
2078
|
+
|
|
1976
2079
|
.e-pv-annotation-color-container.e-btn:active,
|
|
1977
2080
|
.e-pv-annotation-opacity-container.e-btn:active,
|
|
1978
2081
|
.e-pv-annotation-stroke-container.e-btn:active,
|
|
@@ -2974,6 +3077,17 @@
|
|
|
2974
3077
|
}
|
|
2975
3078
|
}
|
|
2976
3079
|
|
|
3080
|
+
.e-pv-reply-div.e-pv-comments-leave.e-focused
|
|
3081
|
+
{
|
|
3082
|
+
border: $pv-comments-div-focus-border;
|
|
3083
|
+
background: $pv-comments-div-focus-background;
|
|
3084
|
+
}
|
|
3085
|
+
|
|
3086
|
+
.e-pv-comments-div.e-focused {
|
|
3087
|
+
border: $pv-comments-div-focus-border;
|
|
3088
|
+
background: $pv-comments-div-focus-background;
|
|
3089
|
+
}
|
|
3090
|
+
|
|
2977
3091
|
.e-pdfviewer .e-inplaceeditor .e-editable-action-buttons {
|
|
2978
3092
|
float: right;
|
|
2979
3093
|
padding-bottom: 7px;
|
|
@@ -3657,6 +3771,20 @@
|
|
|
3657
3771
|
}
|
|
3658
3772
|
}
|
|
3659
3773
|
|
|
3774
|
+
.e-bigger .e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item,
|
|
3775
|
+
.e-bigger .e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item .e-menu-icon,
|
|
3776
|
+
.e-bigger .e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item .e-caret {
|
|
3777
|
+
@if ($skin-name == 'FluentUI') {
|
|
3778
|
+
height: 32px;
|
|
3779
|
+
}
|
|
3780
|
+
}
|
|
3781
|
+
|
|
3782
|
+
.e-pv-mobile-annotation-toolbar .e-toolbar-items .e-hscroll-bar {
|
|
3783
|
+
@if ($skin-name == 'FluentUI') {
|
|
3784
|
+
overflow-y: hidden;
|
|
3785
|
+
}
|
|
3786
|
+
}
|
|
3787
|
+
|
|
3660
3788
|
.e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item.e-focused:hover,
|
|
3661
3789
|
.e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item.e-selected {
|
|
3662
3790
|
@if $skin-name == 'bootstrap5' {
|
|
@@ -4629,9 +4757,24 @@
|
|
|
4629
4757
|
}
|
|
4630
4758
|
|
|
4631
4759
|
.e-pv-annotation-toolbar.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
|
|
4760
|
+
justify-content: center;
|
|
4632
4761
|
padding: 0 $pv-icon-padding-top;
|
|
4633
4762
|
}
|
|
4634
4763
|
|
|
4764
|
+
.e-pv-mobile-toolbar .e-mobile-more-option .e-pv-more-icon {
|
|
4765
|
+
@if ($skin-name == 'bootstrap4') {
|
|
4766
|
+
margin-left: 0 !important;/* stylelint-disable-line declaration-no-important */
|
|
4767
|
+
width: 1em !important;/* stylelint-disable-line declaration-no-important */
|
|
4768
|
+
line-height: 22px !important;/* stylelint-disable-line declaration-no-important */
|
|
4769
|
+
padding: 0 !important;/* stylelint-disable-line declaration-no-important */
|
|
4770
|
+
}
|
|
4771
|
+
@else {
|
|
4772
|
+
margin-left: 0 !important;/* stylelint-disable-line declaration-no-important */
|
|
4773
|
+
width: 1em !important;/* stylelint-disable-line declaration-no-important */
|
|
4774
|
+
line-height: 22px !important;/* stylelint-disable-line declaration-no-important */
|
|
4775
|
+
}
|
|
4776
|
+
}
|
|
4777
|
+
|
|
4635
4778
|
.e-pv-signature-window .e-dlg-content {
|
|
4636
4779
|
@if ($skin-name == 'highcontrast') {
|
|
4637
4780
|
padding: 16px;
|
|
@@ -671,6 +671,14 @@ input.e-pv-input-password::-ms-reveal {
|
|
|
671
671
|
position: absolute;
|
|
672
672
|
}
|
|
673
673
|
|
|
674
|
+
.e-pv-viewer-container .e-pv-page-div.e-focused {
|
|
675
|
+
box-shadow: #fff 0 0 0 2px;
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
.e-pv-viewer-container.e-focused {
|
|
679
|
+
box-shadow: #fff 0 0 0 2px inset;
|
|
680
|
+
}
|
|
681
|
+
|
|
674
682
|
.e-pv-toolbar,
|
|
675
683
|
.e-pv-nav-toolbar,
|
|
676
684
|
.e-pv-annotation-toolbar,
|
|
@@ -712,6 +720,26 @@ input.e-pv-input-password::-ms-reveal {
|
|
|
712
720
|
display: none;
|
|
713
721
|
}
|
|
714
722
|
|
|
723
|
+
.e-control.e-toolbar.e-lib.e-pv-annotation-toolbar.e-pv-toolbar-scroll.e-keyboard.e-toolpop .e-tbar-btn-text {
|
|
724
|
+
display: none;
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
.e-dropdown-popup.e-control.e-pv-annotation-shapes-container .e-tbar-btn-text {
|
|
728
|
+
display: none;
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
.e-dropdown-popup.e-control.e-pv-annotation-calibrate-container .e-tbar-btn-text {
|
|
732
|
+
display: none;
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
.e-dropdown-popup.e-control.e-pv-annotation-textalign-container .e-tbar-btn-text {
|
|
736
|
+
display: none;
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
.e-dropdown-popup.e-control.e-pv-annotation-textprop-container.e-caret-hide .e-tbar-btn-text {
|
|
740
|
+
display: none;
|
|
741
|
+
}
|
|
742
|
+
|
|
715
743
|
.e-pv-current-page-box.e-input-group.e-control-wrapper {
|
|
716
744
|
height: 30px;
|
|
717
745
|
margin-top: 0;
|
|
@@ -1317,6 +1345,22 @@ input.e-pv-input-password::-ms-reveal {
|
|
|
1317
1345
|
padding: 9px;
|
|
1318
1346
|
}
|
|
1319
1347
|
|
|
1348
|
+
.e-pv-tbar-btn.e-pv-thumbnail-view-button.e-btn:focus {
|
|
1349
|
+
background: #131313;
|
|
1350
|
+
border: 0;
|
|
1351
|
+
border-radius: 0;
|
|
1352
|
+
line-height: 1em;
|
|
1353
|
+
padding: 9px;
|
|
1354
|
+
}
|
|
1355
|
+
|
|
1356
|
+
.e-pv-tbar-btn.e-pv-bookmark-button.e-btn:focus {
|
|
1357
|
+
background: #131313;
|
|
1358
|
+
border: 0;
|
|
1359
|
+
border-radius: 0;
|
|
1360
|
+
line-height: 1em;
|
|
1361
|
+
padding: 9px;
|
|
1362
|
+
}
|
|
1363
|
+
|
|
1320
1364
|
.e-pv-bookmark-button.e-btn {
|
|
1321
1365
|
background: transparent;
|
|
1322
1366
|
border: none;
|
|
@@ -1814,19 +1858,31 @@ div > .e-pv-bookmark-icon.e-pv-icon {
|
|
|
1814
1858
|
font-size: 18px;
|
|
1815
1859
|
}
|
|
1816
1860
|
|
|
1817
|
-
.e-pv-annotation-color-container
|
|
1818
|
-
.e-pv-annotation-opacity-container
|
|
1819
|
-
.e-pv-annotation-stroke-container
|
|
1820
|
-
.e-pv-custom-annotation-thickness-container
|
|
1821
|
-
.e-pv-custom-annotation-opacity-container
|
|
1822
|
-
.e-pv-annotation-thickness-container
|
|
1823
|
-
.e-pv-annotation-textcolor-container
|
|
1824
|
-
.e-pv-annotation-textalign-container
|
|
1825
|
-
.e-pv-annotation-textprop-container
|
|
1861
|
+
.e-pv-annotation-color-container.e-icon-btn,
|
|
1862
|
+
.e-pv-annotation-opacity-container.e-icon-btn,
|
|
1863
|
+
.e-pv-annotation-stroke-container.e-icon-btn,
|
|
1864
|
+
.e-pv-custom-annotation-thickness-container.e-icon-btn,
|
|
1865
|
+
.e-pv-custom-annotation-opacity-container.e-icon-btn,
|
|
1866
|
+
.e-pv-annotation-thickness-container.e-icon-btn,
|
|
1867
|
+
.e-pv-annotation-textcolor-container.e-icon-btn,
|
|
1868
|
+
.e-pv-annotation-textalign-container.e-icon-btn,
|
|
1869
|
+
.e-pv-annotation-textprop-container.e-icon-btn {
|
|
1826
1870
|
height: 32px;
|
|
1827
1871
|
width: 54px;
|
|
1828
1872
|
}
|
|
1829
1873
|
|
|
1874
|
+
.e-bigger .e-pv-annotation-color-container.e-icon-btn,
|
|
1875
|
+
.e-bigger .e-pv-annotation-opacity-container.e-icon-btn,
|
|
1876
|
+
.e-bigger .e-pv-annotation-stroke-container.e-icon-btn,
|
|
1877
|
+
.e-bigger .e-pv-custom-annotation-thickness-container.e-icon-btn,
|
|
1878
|
+
.e-bigger .e-pv-custom-annotation-opacity-container.e-icon-btn,
|
|
1879
|
+
.e-bigger .e-pv-annotation-thickness-container.e-icon-btn,
|
|
1880
|
+
.e-bigger .e-pv-annotation-textcolor-container.e-icon-btn,
|
|
1881
|
+
.e-bigger .e-pv-annotation-textalign-container.e-icon-btn,
|
|
1882
|
+
.e-bigger .e-pv-annotation-textprop-container.e-icon-btn {
|
|
1883
|
+
white-space: nowrap;
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1830
1886
|
.e-pv-annotation-thickness-container.e-btn.e-icon-btn.e-dropdown-btn {
|
|
1831
1887
|
padding-top: 8px;
|
|
1832
1888
|
}
|
|
@@ -1890,6 +1946,28 @@ div > .e-pv-bookmark-icon.e-pv-icon {
|
|
|
1890
1946
|
border-color: #6e6e6e;
|
|
1891
1947
|
}
|
|
1892
1948
|
|
|
1949
|
+
.e-pv-stamp.e-menu-wrapper ul .e-menu-item.e-focused:focus {
|
|
1950
|
+
background-color: #313131;
|
|
1951
|
+
border-color: #6e6e6e;
|
|
1952
|
+
outline: none;
|
|
1953
|
+
color: #0070f0;
|
|
1954
|
+
}
|
|
1955
|
+
|
|
1956
|
+
.e-pv-annotation-color-container.e-btn:focus,
|
|
1957
|
+
.e-pv-annotation-opacity-container.e-btn:focus,
|
|
1958
|
+
.e-pv-annotation-stroke-container.e-btn:focus,
|
|
1959
|
+
.e-pv-annotation-thickness-container.e-btn:focus,
|
|
1960
|
+
.e-pv-annotation-shapes-container.e-btn:focus,
|
|
1961
|
+
.e-pv-annotation-calibrate-container.e-btn:focus,
|
|
1962
|
+
.e-pv-annotation-textcolor-container.e-btn:focus,
|
|
1963
|
+
.e-pv-annotation-textalign-container.e-btn:focus,
|
|
1964
|
+
.e-pv-annotation-handwritten-container.e-btn:focus,
|
|
1965
|
+
.e-pv-annotation-textprop-container.e-btn:focus {
|
|
1966
|
+
background-color: #313131;
|
|
1967
|
+
border-color: #6e6e6e;
|
|
1968
|
+
outline: none;
|
|
1969
|
+
}
|
|
1970
|
+
|
|
1893
1971
|
.e-pv-annotation-color-container.e-btn:active,
|
|
1894
1972
|
.e-pv-annotation-opacity-container.e-btn:active,
|
|
1895
1973
|
.e-pv-annotation-stroke-container.e-btn:active,
|
|
@@ -2363,6 +2441,16 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2363
2441
|
padding: 2px 8px 3px 32px;
|
|
2364
2442
|
}
|
|
2365
2443
|
|
|
2444
|
+
.e-pv-reply-div.e-pv-comments-leave.e-focused {
|
|
2445
|
+
border: none;
|
|
2446
|
+
background: #2a2a2a;
|
|
2447
|
+
}
|
|
2448
|
+
|
|
2449
|
+
.e-pv-comments-div.e-focused {
|
|
2450
|
+
border: none;
|
|
2451
|
+
background: #2a2a2a;
|
|
2452
|
+
}
|
|
2453
|
+
|
|
2366
2454
|
.e-pdfviewer .e-inplaceeditor .e-editable-action-buttons {
|
|
2367
2455
|
float: right;
|
|
2368
2456
|
padding-bottom: 7px;
|
|
@@ -3267,9 +3355,17 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
3267
3355
|
}
|
|
3268
3356
|
|
|
3269
3357
|
.e-pv-annotation-toolbar.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
|
|
3358
|
+
-ms-flex-pack: center;
|
|
3359
|
+
justify-content: center;
|
|
3270
3360
|
padding: 0 7px;
|
|
3271
3361
|
}
|
|
3272
3362
|
|
|
3363
|
+
.e-pv-mobile-toolbar .e-mobile-more-option .e-pv-more-icon {
|
|
3364
|
+
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
3365
|
+
width: 1em !important; /* stylelint-disable-line declaration-no-important */
|
|
3366
|
+
line-height: 22px !important; /* stylelint-disable-line declaration-no-important */
|
|
3367
|
+
}
|
|
3368
|
+
|
|
3273
3369
|
.e-dialog.e-pv-signature-dialog-height {
|
|
3274
3370
|
height: 570px;
|
|
3275
3371
|
}
|
|
@@ -676,6 +676,14 @@ input.e-pv-input-password::-ms-reveal {
|
|
|
676
676
|
position: absolute;
|
|
677
677
|
}
|
|
678
678
|
|
|
679
|
+
.e-pv-viewer-container .e-pv-page-div.e-focused {
|
|
680
|
+
box-shadow: rgb(0, 0, 0) 0 0 0 2px;
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
.e-pv-viewer-container.e-focused {
|
|
684
|
+
box-shadow: rgb(0, 0, 0) 0 0 0 2px inset;
|
|
685
|
+
}
|
|
686
|
+
|
|
679
687
|
.e-pv-toolbar,
|
|
680
688
|
.e-pv-nav-toolbar,
|
|
681
689
|
.e-pv-annotation-toolbar,
|
|
@@ -717,6 +725,26 @@ input.e-pv-input-password::-ms-reveal {
|
|
|
717
725
|
display: none;
|
|
718
726
|
}
|
|
719
727
|
|
|
728
|
+
.e-control.e-toolbar.e-lib.e-pv-annotation-toolbar.e-pv-toolbar-scroll.e-keyboard.e-toolpop .e-tbar-btn-text {
|
|
729
|
+
display: none;
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
.e-dropdown-popup.e-control.e-pv-annotation-shapes-container .e-tbar-btn-text {
|
|
733
|
+
display: none;
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
.e-dropdown-popup.e-control.e-pv-annotation-calibrate-container .e-tbar-btn-text {
|
|
737
|
+
display: none;
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
.e-dropdown-popup.e-control.e-pv-annotation-textalign-container .e-tbar-btn-text {
|
|
741
|
+
display: none;
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
.e-dropdown-popup.e-control.e-pv-annotation-textprop-container.e-caret-hide .e-tbar-btn-text {
|
|
745
|
+
display: none;
|
|
746
|
+
}
|
|
747
|
+
|
|
720
748
|
.e-pv-current-page-box.e-input-group.e-control-wrapper {
|
|
721
749
|
height: 30px;
|
|
722
750
|
margin-top: 0;
|
|
@@ -1323,6 +1351,22 @@ input.e-pv-input-password::-ms-reveal {
|
|
|
1323
1351
|
padding: 9px;
|
|
1324
1352
|
}
|
|
1325
1353
|
|
|
1354
|
+
.e-pv-tbar-btn.e-pv-thumbnail-view-button.e-btn:focus {
|
|
1355
|
+
background: #e6e6e6;
|
|
1356
|
+
border: 1px solid #adadad;
|
|
1357
|
+
border-radius: 4px;
|
|
1358
|
+
line-height: 1em;
|
|
1359
|
+
padding: 9px;
|
|
1360
|
+
}
|
|
1361
|
+
|
|
1362
|
+
.e-pv-tbar-btn.e-pv-bookmark-button.e-btn:focus {
|
|
1363
|
+
background: #e6e6e6;
|
|
1364
|
+
border: 1px solid #adadad;
|
|
1365
|
+
border-radius: 4px;
|
|
1366
|
+
line-height: 1em;
|
|
1367
|
+
padding: 9px;
|
|
1368
|
+
}
|
|
1369
|
+
|
|
1326
1370
|
.e-pv-bookmark-button.e-btn {
|
|
1327
1371
|
background: transparent;
|
|
1328
1372
|
border: none;
|
|
@@ -1820,19 +1864,31 @@ div > .e-pv-bookmark-icon.e-pv-icon {
|
|
|
1820
1864
|
font-size: 18px;
|
|
1821
1865
|
}
|
|
1822
1866
|
|
|
1823
|
-
.e-pv-annotation-color-container
|
|
1824
|
-
.e-pv-annotation-opacity-container
|
|
1825
|
-
.e-pv-annotation-stroke-container
|
|
1826
|
-
.e-pv-custom-annotation-thickness-container
|
|
1827
|
-
.e-pv-custom-annotation-opacity-container
|
|
1828
|
-
.e-pv-annotation-thickness-container
|
|
1829
|
-
.e-pv-annotation-textcolor-container
|
|
1830
|
-
.e-pv-annotation-textalign-container
|
|
1831
|
-
.e-pv-annotation-textprop-container
|
|
1867
|
+
.e-pv-annotation-color-container.e-icon-btn,
|
|
1868
|
+
.e-pv-annotation-opacity-container.e-icon-btn,
|
|
1869
|
+
.e-pv-annotation-stroke-container.e-icon-btn,
|
|
1870
|
+
.e-pv-custom-annotation-thickness-container.e-icon-btn,
|
|
1871
|
+
.e-pv-custom-annotation-opacity-container.e-icon-btn,
|
|
1872
|
+
.e-pv-annotation-thickness-container.e-icon-btn,
|
|
1873
|
+
.e-pv-annotation-textcolor-container.e-icon-btn,
|
|
1874
|
+
.e-pv-annotation-textalign-container.e-icon-btn,
|
|
1875
|
+
.e-pv-annotation-textprop-container.e-icon-btn {
|
|
1832
1876
|
height: 32px;
|
|
1833
1877
|
width: 54px;
|
|
1834
1878
|
}
|
|
1835
1879
|
|
|
1880
|
+
.e-bigger .e-pv-annotation-color-container.e-icon-btn,
|
|
1881
|
+
.e-bigger .e-pv-annotation-opacity-container.e-icon-btn,
|
|
1882
|
+
.e-bigger .e-pv-annotation-stroke-container.e-icon-btn,
|
|
1883
|
+
.e-bigger .e-pv-custom-annotation-thickness-container.e-icon-btn,
|
|
1884
|
+
.e-bigger .e-pv-custom-annotation-opacity-container.e-icon-btn,
|
|
1885
|
+
.e-bigger .e-pv-annotation-thickness-container.e-icon-btn,
|
|
1886
|
+
.e-bigger .e-pv-annotation-textcolor-container.e-icon-btn,
|
|
1887
|
+
.e-bigger .e-pv-annotation-textalign-container.e-icon-btn,
|
|
1888
|
+
.e-bigger .e-pv-annotation-textprop-container.e-icon-btn {
|
|
1889
|
+
white-space: nowrap;
|
|
1890
|
+
}
|
|
1891
|
+
|
|
1836
1892
|
.e-pv-annotation-thickness-container.e-btn.e-icon-btn.e-dropdown-btn {
|
|
1837
1893
|
padding-top: 8px;
|
|
1838
1894
|
}
|
|
@@ -1896,6 +1952,28 @@ div > .e-pv-bookmark-icon.e-pv-icon {
|
|
|
1896
1952
|
border-color: #adadad;
|
|
1897
1953
|
}
|
|
1898
1954
|
|
|
1955
|
+
.e-pv-stamp.e-menu-wrapper ul .e-menu-item.e-focused:focus {
|
|
1956
|
+
background-color: #e6e6e6;
|
|
1957
|
+
border-color: #adadad;
|
|
1958
|
+
outline: none;
|
|
1959
|
+
color: #333;
|
|
1960
|
+
}
|
|
1961
|
+
|
|
1962
|
+
.e-pv-annotation-color-container.e-btn:focus,
|
|
1963
|
+
.e-pv-annotation-opacity-container.e-btn:focus,
|
|
1964
|
+
.e-pv-annotation-stroke-container.e-btn:focus,
|
|
1965
|
+
.e-pv-annotation-thickness-container.e-btn:focus,
|
|
1966
|
+
.e-pv-annotation-shapes-container.e-btn:focus,
|
|
1967
|
+
.e-pv-annotation-calibrate-container.e-btn:focus,
|
|
1968
|
+
.e-pv-annotation-textcolor-container.e-btn:focus,
|
|
1969
|
+
.e-pv-annotation-textalign-container.e-btn:focus,
|
|
1970
|
+
.e-pv-annotation-handwritten-container.e-btn:focus,
|
|
1971
|
+
.e-pv-annotation-textprop-container.e-btn:focus {
|
|
1972
|
+
background-color: #e6e6e6;
|
|
1973
|
+
border-color: #adadad;
|
|
1974
|
+
outline: none;
|
|
1975
|
+
}
|
|
1976
|
+
|
|
1899
1977
|
.e-pv-annotation-color-container.e-btn:active,
|
|
1900
1978
|
.e-pv-annotation-opacity-container.e-btn:active,
|
|
1901
1979
|
.e-pv-annotation-stroke-container.e-btn:active,
|
|
@@ -2369,6 +2447,16 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2369
2447
|
padding: 2px 8px 3px 32px;
|
|
2370
2448
|
}
|
|
2371
2449
|
|
|
2450
|
+
.e-pv-reply-div.e-pv-comments-leave.e-focused {
|
|
2451
|
+
border: none;
|
|
2452
|
+
background: #e6e6e6;
|
|
2453
|
+
}
|
|
2454
|
+
|
|
2455
|
+
.e-pv-comments-div.e-focused {
|
|
2456
|
+
border: none;
|
|
2457
|
+
background: #e6e6e6;
|
|
2458
|
+
}
|
|
2459
|
+
|
|
2372
2460
|
.e-pdfviewer .e-inplaceeditor .e-editable-action-buttons {
|
|
2373
2461
|
float: right;
|
|
2374
2462
|
padding-bottom: 7px;
|
|
@@ -3274,9 +3362,17 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
3274
3362
|
}
|
|
3275
3363
|
|
|
3276
3364
|
.e-pv-annotation-toolbar.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
|
|
3365
|
+
-ms-flex-pack: center;
|
|
3366
|
+
justify-content: center;
|
|
3277
3367
|
padding: 0 7px;
|
|
3278
3368
|
}
|
|
3279
3369
|
|
|
3370
|
+
.e-pv-mobile-toolbar .e-mobile-more-option .e-pv-more-icon {
|
|
3371
|
+
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
3372
|
+
width: 1em !important; /* stylelint-disable-line declaration-no-important */
|
|
3373
|
+
line-height: 22px !important; /* stylelint-disable-line declaration-no-important */
|
|
3374
|
+
}
|
|
3375
|
+
|
|
3280
3376
|
.e-dialog.e-pv-signature-dialog-height {
|
|
3281
3377
|
height: 565px;
|
|
3282
3378
|
}
|