@syncfusion/ej2-vue-pdfviewer 20.3.59 → 20.4.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.
- package/CHANGELOG.md +1628 -0
- package/README.md +152 -1
- package/dist/ej2-vue-pdfviewer.umd.min.js +11 -0
- package/dist/ej2-vue-pdfviewer.umd.min.js.map +1 -0
- package/dist/es6/ej2-vue-pdfviewer.es2015.js +57 -12
- package/dist/es6/ej2-vue-pdfviewer.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-pdfviewer.es5.js +45 -10
- package/dist/es6/ej2-vue-pdfviewer.es5.js.map +1 -1
- package/dist/global/ej2-vue-pdfviewer.min.js +2 -2
- package/package.json +14 -13
- package/src/pdfviewer/pdfviewer.component.d.ts +8 -3
- package/src/pdfviewer/pdfviewer.component.js +45 -10
- package/styles/bootstrap-dark.css +16 -0
- package/styles/bootstrap.css +16 -0
- package/styles/bootstrap4.css +16 -0
- package/styles/bootstrap5-dark.css +16 -0
- package/styles/bootstrap5.css +16 -0
- package/styles/fabric-dark.css +16 -0
- package/styles/fabric.css +16 -0
- package/styles/fluent-dark.css +16 -0
- package/styles/fluent.css +16 -0
- package/styles/highcontrast-light.css +16 -0
- package/styles/highcontrast.css +16 -0
- package/styles/material-dark.css +16 -0
- package/styles/material.css +16 -0
- package/styles/pdfviewer/bootstrap-dark.css +16 -0
- package/styles/pdfviewer/bootstrap.css +16 -0
- package/styles/pdfviewer/bootstrap4.css +16 -0
- package/styles/pdfviewer/bootstrap5-dark.css +16 -0
- package/styles/pdfviewer/bootstrap5.css +16 -0
- package/styles/pdfviewer/fabric-dark.css +16 -0
- package/styles/pdfviewer/fabric.css +16 -0
- package/styles/pdfviewer/fluent-dark.css +16 -0
- package/styles/pdfviewer/fluent.css +16 -0
- package/styles/pdfviewer/highcontrast-light.css +16 -0
- package/styles/pdfviewer/highcontrast.css +16 -0
- package/styles/pdfviewer/material-dark.css +16 -0
- package/styles/pdfviewer/material.css +16 -0
- package/styles/pdfviewer/tailwind-dark.css +16 -0
- package/styles/pdfviewer/tailwind.css +16 -0
- package/styles/tailwind-dark.css +16 -0
- package/styles/tailwind.css +16 -0
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-vue-pdfviewer@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-vue-pdfviewer@20.3.
|
|
3
|
+
"_id": "@syncfusion/ej2-vue-pdfviewer@20.3.67",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-ugEhbuMgPC79EfQYq/UjaxoplGGH5D0swrA2S2EtBCf0sVHfpPtzb98yZv9EWpwdehuG1s5yJ2CjV7BLlyVa1A==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-vue-pdfviewer",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"_requiredBy": [
|
|
20
20
|
"/"
|
|
21
21
|
],
|
|
22
|
-
"_resolved": "https://nexus.syncfusion.com/repository/ej2-
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "https://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-vue-pdfviewer/-/ej2-vue-pdfviewer-20.3.67.tgz",
|
|
23
|
+
"_shasum": "de2d7b44926124fcb172664adf73908061a1a9a5",
|
|
24
24
|
"_spec": "@syncfusion/ej2-vue-pdfviewer@*",
|
|
25
25
|
"_where": "/jenkins/workspace/ease-automation_release_19.1.0.1/packages/included",
|
|
26
26
|
"author": {
|
|
@@ -31,12 +31,12 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-base": "~20.
|
|
35
|
-
"@syncfusion/ej2-pdfviewer": "20.
|
|
36
|
-
"@syncfusion/ej2-vue-base": "~20.
|
|
34
|
+
"@syncfusion/ej2-base": "~20.4.38",
|
|
35
|
+
"@syncfusion/ej2-pdfviewer": "20.4.38",
|
|
36
|
+
"@syncfusion/ej2-vue-base": "~20.4.38"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
|
-
"description": "Essential JS 2 PDF viewer Component for
|
|
39
|
+
"description": "Essential JS 2 PDF viewer Component for Vue",
|
|
40
40
|
"devDependencies": {},
|
|
41
41
|
"es2015": "dist/es6/ej2-vue-pdfviewer.es2015.js",
|
|
42
42
|
"homepage": "https://github.com/syncfusion/ej2-vue-ui-components#readme",
|
|
@@ -44,10 +44,11 @@
|
|
|
44
44
|
"ej2",
|
|
45
45
|
"ej2-pdfviewer",
|
|
46
46
|
"syncfusion",
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
47
|
+
"pdf-viewer",
|
|
48
|
+
"typescript",
|
|
49
|
+
"vue",
|
|
50
|
+
"vuejs",
|
|
51
|
+
"vue-pdf-viewer"
|
|
51
52
|
],
|
|
52
53
|
"license": "SEE LICENSE IN license",
|
|
53
54
|
"main": "./dist/ej2-vue-pdfviewer.umd.min.js",
|
|
@@ -60,6 +61,6 @@
|
|
|
60
61
|
"scripts": {
|
|
61
62
|
"postinstall": "node ../ej2-vue-base/postinstall.js"
|
|
62
63
|
},
|
|
63
|
-
"version": "20.
|
|
64
|
+
"version": "20.4.38",
|
|
64
65
|
"sideEffects": false
|
|
65
66
|
}
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import { ComponentBase } from '@syncfusion/ej2-vue-base';
|
|
2
2
|
export declare const properties: string[];
|
|
3
3
|
export declare const modelProps: string[];
|
|
4
|
+
export declare const testProp: any;
|
|
5
|
+
export declare const props: any;
|
|
6
|
+
export declare const watch: any;
|
|
7
|
+
export declare const emitProbs: any;
|
|
4
8
|
/**
|
|
5
9
|
* `ejs-pdfviewer` represents the VueJS PdfViewer Component.
|
|
6
10
|
* ```vue
|
|
@@ -17,6 +21,7 @@ export declare class PdfViewerComponent extends ComponentBase {
|
|
|
17
21
|
[key: string]: Object;
|
|
18
22
|
};
|
|
19
23
|
tagNameMapper: Object;
|
|
24
|
+
isVue3: boolean;
|
|
20
25
|
templateCollection: any;
|
|
21
26
|
constructor();
|
|
22
27
|
clearTemplate(templateNames?: string[]): any;
|
|
@@ -33,12 +38,12 @@ export declare class PdfViewerComponent extends ComponentBase {
|
|
|
33
38
|
exportAnnotation(annotationDataFormat?: Object): void;
|
|
34
39
|
exportAnnotationsAsBase64String(annotationDataFormat: Object): Object;
|
|
35
40
|
exportAnnotationsAsObject(): Object;
|
|
36
|
-
exportFormFields(
|
|
37
|
-
exportFormFieldsAsObject(): Object;
|
|
41
|
+
exportFormFields(data?: string, formFieldDataFormat?: Object): void;
|
|
42
|
+
exportFormFieldsAsObject(formFieldDataFormat?: Object): Object;
|
|
38
43
|
focusFormField(field: any): void;
|
|
39
44
|
getPageNumberFromClientPoint(clientPoint: Object): number;
|
|
40
45
|
importAnnotation(importData: any, annotationDataFormat?: Object): void;
|
|
41
|
-
importFormFields(
|
|
46
|
+
importFormFields(data?: string, formFieldDataFormat?: Object): void;
|
|
42
47
|
load(document: string, password: string): void;
|
|
43
48
|
redo(): void;
|
|
44
49
|
requiredModules(): Object[];
|
|
@@ -17,11 +17,21 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
17
17
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
18
18
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
19
19
|
};
|
|
20
|
-
import { ComponentBase, EJComponentDecorator } from '@syncfusion/ej2-vue-base';
|
|
21
|
-
import { getValue } from '@syncfusion/ej2-base';
|
|
20
|
+
import { ComponentBase, EJComponentDecorator, getProps, gh, isExecute } from '@syncfusion/ej2-vue-base';
|
|
21
|
+
import { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';
|
|
22
22
|
import { PdfViewer } from '@syncfusion/ej2-pdfviewer';
|
|
23
|
+
import { Options } from 'vue-class-component';
|
|
23
24
|
export var properties = ['isLazyUpdate', 'plugins', 'DropdownFieldSettings', 'ajaxRequestSettings', 'annotationSelectorSettings', 'annotationSettings', 'annotations', 'areaSettings', 'arrowSettings', 'checkBoxFieldSettings', 'circleSettings', 'contextMenuOption', 'contextMenuSettings', 'currentPageNumber', 'customStamp', 'customStampSettings', 'dateTimeFormat', 'designerMode', 'disableContextMenuItems', 'distanceSettings', 'documentPath', 'downloadFileName', 'drawingObject', 'enableAnnotation', 'enableAnnotationToolbar', 'enableAutoComplete', 'enableBookmark', 'enableBookmarkStyles', 'enableCommentPanel', 'enableDesktopMode', 'enableDownload', 'enableFormDesigner', 'enableFormDesignerToolbar', 'enableFormFields', 'enableFormFieldsValidation', 'enableFreeText', 'enableHandwrittenSignature', 'enableHyperlink', 'enableImportAnnotationMeasurement', 'enableInkAnnotation', 'enableMagnification', 'enableMeasureAnnotation', 'enableMultiLineOverlap', 'enableMultiPageAnnotation', 'enableNavigation', 'enableNavigationToolbar', 'enablePersistence', 'enablePinchZoom', 'enablePrint', 'enablePrintRotation', 'enableRtl', 'enableShapeAnnotation', 'enableShapeLabel', 'enableStampAnnotations', 'enableStickyNotesAnnotation', 'enableTextMarkupAnnotation', 'enableTextMarkupResizer', 'enableTextSearch', 'enableTextSelection', 'enableThumbnail', 'enableToolbar', 'enableZoomOptimization', 'exportAnnotationFileName', 'formFieldCollections', 'formFields', 'freeTextSettings', 'handWrittenSignatureSettings', 'height', 'hideEmptyDigitalSignatureFields', 'hideSaveSignature', 'highlightSettings', 'hyperlinkOpenState', 'initialDialogSettings', 'initialFieldSettings', 'inkAnnotationSettings', 'interactionMode', 'isAnnotationToolbarOpen', 'isAnnotationToolbarVisible', 'isBookmarkPanelOpen', 'isCommandPanelOpen', 'isDocumentEdited', 'isExtractText', 'isFormDesignerToolbarVisible', 'isFormFieldDocument', 'isInitialFieldToolbarSelection', 'isMaintainSelection', 'isSignatureEditable', 'isThumbnailViewOpen', 'isValidFreeText', 'lineSettings', 'listBoxFieldSettings', 'locale', 'measurementSettings', 'pageCount', 'passwordFieldSettings', 'perimeterSettings', 'polygonSettings', 'printMode', 'radioButtonFieldSettings', 'radiusSettings', 'rectangleSettings', 'restrictZoomRequest', 'retryCount', 'retryStatusCodes', 'scrollSettings', 'selectedItems', 'serverActionSettings', 'serviceUrl', 'shapeLabelSettings', 'showDigitalSignatureAppearance', 'showNotificationDialog', 'signatureDialogSettings', 'signatureFieldSettings', 'signatureFitMode', 'stampSettings', 'stickyNotesSettings', 'strikethroughSettings', 'textFieldSettings', 'textSearchColorSettings', 'tileRenderingSettings', 'toolbarSettings', 'underlineSettings', 'volumeSettings', 'width', 'zoomMode', 'zoomValue', 'addSignature', 'ajaxRequestFailed', 'ajaxRequestInitiate', 'ajaxRequestSuccess', 'annotationAdd', 'annotationDoubleClick', 'annotationMouseLeave', 'annotationMouseover', 'annotationMove', 'annotationMoving', 'annotationPropertiesChange', 'annotationRemove', 'annotationResize', 'annotationSelect', 'annotationUnSelect', 'beforeAddFreeText', 'bookmarkClick', 'buttonFieldClick', 'commentAdd', 'commentDelete', 'commentEdit', 'commentSelect', 'commentStatusChanged', 'created', 'documentLoad', 'documentLoadFailed', 'documentUnload', 'downloadEnd', 'downloadStart', 'exportFailed', 'exportStart', 'exportSuccess', 'extractTextCompleted', 'formFieldAdd', 'formFieldClick', 'formFieldDoubleClick', 'formFieldFocusOut', 'formFieldMouseLeave', 'formFieldMouseover', 'formFieldMove', 'formFieldPropertiesChange', 'formFieldRemove', 'formFieldResize', 'formFieldSelect', 'formFieldUnselect', 'hyperlinkClick', 'hyperlinkMouseOver', 'importFailed', 'importStart', 'importSuccess', 'moveSignature', 'pageChange', 'pageClick', 'pageMouseover', 'printEnd', 'printStart', 'removeSignature', 'resizeSignature', 'signaturePropertiesChange', 'signatureSelect', 'textSearchComplete', 'textSearchHighlight', 'textSearchStart', 'textSelectionEnd', 'textSelectionStart', 'thumbnailClick', 'validateFormFields', 'zoomChange'];
|
|
24
25
|
export var modelProps = [];
|
|
26
|
+
export var testProp = getProps({ props: properties });
|
|
27
|
+
export var props = testProp[0];
|
|
28
|
+
export var watch = testProp[1];
|
|
29
|
+
export var emitProbs = Object.keys(watch);
|
|
30
|
+
emitProbs.push('modelchanged', 'update:modelValue');
|
|
31
|
+
for (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {
|
|
32
|
+
var props_1 = modelProps_1[_i];
|
|
33
|
+
emitProbs.push('update:' + props_1);
|
|
34
|
+
}
|
|
25
35
|
/**
|
|
26
36
|
* `ejs-pdfviewer` represents the VueJS PdfViewer Component.
|
|
27
37
|
* ```vue
|
|
@@ -38,6 +48,7 @@ var PdfViewerComponent = /** @class */ (function (_super) {
|
|
|
38
48
|
_this.hasInjectedModules = true;
|
|
39
49
|
_this.tagMapper = {};
|
|
40
50
|
_this.tagNameMapper = {};
|
|
51
|
+
_this.isVue3 = !isExecute;
|
|
41
52
|
_this.ej2Instances = new PdfViewer({});
|
|
42
53
|
_this.bindProperties();
|
|
43
54
|
_this.ej2Instances._setProperties = _this.ej2Instances.setProperties;
|
|
@@ -72,6 +83,9 @@ var PdfViewerComponent = /** @class */ (function (_super) {
|
|
|
72
83
|
};
|
|
73
84
|
PdfViewerComponent.prototype.setProperties = function (prop, muteOnChange) {
|
|
74
85
|
var _this = this;
|
|
86
|
+
if (this.isVue3) {
|
|
87
|
+
this.models = !this.models ? this.ej2Instances.referModels : this.models;
|
|
88
|
+
}
|
|
75
89
|
if (this.ej2Instances && this.ej2Instances._setProperties) {
|
|
76
90
|
this.ej2Instances._setProperties(prop, muteOnChange);
|
|
77
91
|
}
|
|
@@ -79,14 +93,25 @@ var PdfViewerComponent = /** @class */ (function (_super) {
|
|
|
79
93
|
Object.keys(prop).map(function (key) {
|
|
80
94
|
_this.models.map(function (model) {
|
|
81
95
|
if ((key === model) && !(/datasource/i.test(key))) {
|
|
82
|
-
_this
|
|
96
|
+
if (_this.isVue3) {
|
|
97
|
+
_this.ej2Instances.vueInstance.$emit('update:' + key, prop[key]);
|
|
98
|
+
}
|
|
99
|
+
else {
|
|
100
|
+
_this.$emit('update:' + key, prop[key]);
|
|
101
|
+
_this.$emit('modelchanged', prop[key]);
|
|
102
|
+
}
|
|
83
103
|
}
|
|
84
104
|
});
|
|
85
105
|
});
|
|
86
106
|
}
|
|
87
107
|
};
|
|
88
108
|
PdfViewerComponent.prototype.render = function (createElement) {
|
|
89
|
-
|
|
109
|
+
var h = !isExecute ? gh : createElement;
|
|
110
|
+
var slots = null;
|
|
111
|
+
if (!isNullOrUndefined(this.$slots.default)) {
|
|
112
|
+
slots = !isExecute ? this.$slots.default() : this.$slots.default;
|
|
113
|
+
}
|
|
114
|
+
return h('div', slots);
|
|
90
115
|
};
|
|
91
116
|
PdfViewerComponent.prototype.custom = function () {
|
|
92
117
|
this.updated();
|
|
@@ -121,11 +146,11 @@ var PdfViewerComponent = /** @class */ (function (_super) {
|
|
|
121
146
|
PdfViewerComponent.prototype.exportAnnotationsAsObject = function () {
|
|
122
147
|
return this.ej2Instances.exportAnnotationsAsObject();
|
|
123
148
|
};
|
|
124
|
-
PdfViewerComponent.prototype.exportFormFields = function (
|
|
125
|
-
return this.ej2Instances.exportFormFields(
|
|
149
|
+
PdfViewerComponent.prototype.exportFormFields = function (data, formFieldDataFormat) {
|
|
150
|
+
return this.ej2Instances.exportFormFields(data, formFieldDataFormat);
|
|
126
151
|
};
|
|
127
|
-
PdfViewerComponent.prototype.exportFormFieldsAsObject = function () {
|
|
128
|
-
return this.ej2Instances.exportFormFieldsAsObject();
|
|
152
|
+
PdfViewerComponent.prototype.exportFormFieldsAsObject = function (formFieldDataFormat) {
|
|
153
|
+
return this.ej2Instances.exportFormFieldsAsObject(formFieldDataFormat);
|
|
129
154
|
};
|
|
130
155
|
PdfViewerComponent.prototype.focusFormField = function (field) {
|
|
131
156
|
return this.ej2Instances.focusFormField(field);
|
|
@@ -136,8 +161,8 @@ var PdfViewerComponent = /** @class */ (function (_super) {
|
|
|
136
161
|
PdfViewerComponent.prototype.importAnnotation = function (importData, annotationDataFormat) {
|
|
137
162
|
return this.ej2Instances.importAnnotation(importData, annotationDataFormat);
|
|
138
163
|
};
|
|
139
|
-
PdfViewerComponent.prototype.importFormFields = function (
|
|
140
|
-
return this.ej2Instances.importFormFields(
|
|
164
|
+
PdfViewerComponent.prototype.importFormFields = function (data, formFieldDataFormat) {
|
|
165
|
+
return this.ej2Instances.importFormFields(data, formFieldDataFormat);
|
|
141
166
|
};
|
|
142
167
|
PdfViewerComponent.prototype.load = function (document, password) {
|
|
143
168
|
return this.ej2Instances.load(document, password);
|
|
@@ -184,6 +209,16 @@ var PdfViewerComponent = /** @class */ (function (_super) {
|
|
|
184
209
|
PdfViewerComponent = __decorate([
|
|
185
210
|
EJComponentDecorator({
|
|
186
211
|
props: properties
|
|
212
|
+
}, isExecute)
|
|
213
|
+
,Options({
|
|
214
|
+
props: props,
|
|
215
|
+
watch: watch,
|
|
216
|
+
emits: emitProbs,
|
|
217
|
+
provide: function provide() {
|
|
218
|
+
return {
|
|
219
|
+
custom: this.custom
|
|
220
|
+
};
|
|
221
|
+
}
|
|
187
222
|
})
|
|
188
223
|
], PdfViewerComponent);
|
|
189
224
|
return PdfViewerComponent;
|
|
@@ -2657,6 +2657,22 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2657
2657
|
min-height: 30px;
|
|
2658
2658
|
}
|
|
2659
2659
|
|
|
2660
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-clearbtn {
|
|
2661
|
+
float: left;
|
|
2662
|
+
height: 49px;
|
|
2663
|
+
min-height: 49px;
|
|
2664
|
+
}
|
|
2665
|
+
|
|
2666
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-cancelbtn {
|
|
2667
|
+
height: 49px;
|
|
2668
|
+
min-height: 49px;
|
|
2669
|
+
}
|
|
2670
|
+
|
|
2671
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-createbtn {
|
|
2672
|
+
height: 49px;
|
|
2673
|
+
min-height: 49px;
|
|
2674
|
+
}
|
|
2675
|
+
|
|
2660
2676
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-bold.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2661
2677
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-italic.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2662
2678
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-strikeout.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
package/styles/bootstrap.css
CHANGED
|
@@ -2663,6 +2663,22 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2663
2663
|
min-height: 30px;
|
|
2664
2664
|
}
|
|
2665
2665
|
|
|
2666
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-clearbtn {
|
|
2667
|
+
float: left;
|
|
2668
|
+
height: 49px;
|
|
2669
|
+
min-height: 49px;
|
|
2670
|
+
}
|
|
2671
|
+
|
|
2672
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-cancelbtn {
|
|
2673
|
+
height: 49px;
|
|
2674
|
+
min-height: 49px;
|
|
2675
|
+
}
|
|
2676
|
+
|
|
2677
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-createbtn {
|
|
2678
|
+
height: 49px;
|
|
2679
|
+
min-height: 49px;
|
|
2680
|
+
}
|
|
2681
|
+
|
|
2666
2682
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-bold.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2667
2683
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-italic.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2668
2684
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-strikeout.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
package/styles/bootstrap4.css
CHANGED
|
@@ -2941,6 +2941,22 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2941
2941
|
min-height: 30px;
|
|
2942
2942
|
}
|
|
2943
2943
|
|
|
2944
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-clearbtn {
|
|
2945
|
+
float: left;
|
|
2946
|
+
height: 49px;
|
|
2947
|
+
min-height: 49px;
|
|
2948
|
+
}
|
|
2949
|
+
|
|
2950
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-cancelbtn {
|
|
2951
|
+
height: 49px;
|
|
2952
|
+
min-height: 49px;
|
|
2953
|
+
}
|
|
2954
|
+
|
|
2955
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-createbtn {
|
|
2956
|
+
height: 49px;
|
|
2957
|
+
min-height: 49px;
|
|
2958
|
+
}
|
|
2959
|
+
|
|
2944
2960
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-bold.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2945
2961
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-italic.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2946
2962
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-strikeout.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
@@ -2876,6 +2876,22 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2876
2876
|
min-height: 30px;
|
|
2877
2877
|
}
|
|
2878
2878
|
|
|
2879
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-clearbtn {
|
|
2880
|
+
float: left;
|
|
2881
|
+
height: 49px;
|
|
2882
|
+
min-height: 49px;
|
|
2883
|
+
}
|
|
2884
|
+
|
|
2885
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-cancelbtn {
|
|
2886
|
+
height: 49px;
|
|
2887
|
+
min-height: 49px;
|
|
2888
|
+
}
|
|
2889
|
+
|
|
2890
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-createbtn {
|
|
2891
|
+
height: 49px;
|
|
2892
|
+
min-height: 49px;
|
|
2893
|
+
}
|
|
2894
|
+
|
|
2879
2895
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-bold.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2880
2896
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-italic.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2881
2897
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-strikeout.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
package/styles/bootstrap5.css
CHANGED
|
@@ -2876,6 +2876,22 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2876
2876
|
min-height: 30px;
|
|
2877
2877
|
}
|
|
2878
2878
|
|
|
2879
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-clearbtn {
|
|
2880
|
+
float: left;
|
|
2881
|
+
height: 49px;
|
|
2882
|
+
min-height: 49px;
|
|
2883
|
+
}
|
|
2884
|
+
|
|
2885
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-cancelbtn {
|
|
2886
|
+
height: 49px;
|
|
2887
|
+
min-height: 49px;
|
|
2888
|
+
}
|
|
2889
|
+
|
|
2890
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-createbtn {
|
|
2891
|
+
height: 49px;
|
|
2892
|
+
min-height: 49px;
|
|
2893
|
+
}
|
|
2894
|
+
|
|
2879
2895
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-bold.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2880
2896
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-italic.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2881
2897
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-strikeout.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
package/styles/fabric-dark.css
CHANGED
|
@@ -2665,6 +2665,22 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2665
2665
|
min-height: 30px;
|
|
2666
2666
|
}
|
|
2667
2667
|
|
|
2668
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-clearbtn {
|
|
2669
|
+
float: left;
|
|
2670
|
+
height: 49px;
|
|
2671
|
+
min-height: 49px;
|
|
2672
|
+
}
|
|
2673
|
+
|
|
2674
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-cancelbtn {
|
|
2675
|
+
height: 49px;
|
|
2676
|
+
min-height: 49px;
|
|
2677
|
+
}
|
|
2678
|
+
|
|
2679
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-createbtn {
|
|
2680
|
+
height: 49px;
|
|
2681
|
+
min-height: 49px;
|
|
2682
|
+
}
|
|
2683
|
+
|
|
2668
2684
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-bold.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2669
2685
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-italic.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2670
2686
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-strikeout.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
package/styles/fabric.css
CHANGED
|
@@ -2678,6 +2678,22 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2678
2678
|
min-height: 30px;
|
|
2679
2679
|
}
|
|
2680
2680
|
|
|
2681
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-clearbtn {
|
|
2682
|
+
float: left;
|
|
2683
|
+
height: 49px;
|
|
2684
|
+
min-height: 49px;
|
|
2685
|
+
}
|
|
2686
|
+
|
|
2687
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-cancelbtn {
|
|
2688
|
+
height: 49px;
|
|
2689
|
+
min-height: 49px;
|
|
2690
|
+
}
|
|
2691
|
+
|
|
2692
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-createbtn {
|
|
2693
|
+
height: 49px;
|
|
2694
|
+
min-height: 49px;
|
|
2695
|
+
}
|
|
2696
|
+
|
|
2681
2697
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-bold.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2682
2698
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-italic.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2683
2699
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-strikeout.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
package/styles/fluent-dark.css
CHANGED
|
@@ -2852,6 +2852,22 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2852
2852
|
min-height: 30px;
|
|
2853
2853
|
}
|
|
2854
2854
|
|
|
2855
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-clearbtn {
|
|
2856
|
+
float: left;
|
|
2857
|
+
height: 49px;
|
|
2858
|
+
min-height: 49px;
|
|
2859
|
+
}
|
|
2860
|
+
|
|
2861
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-cancelbtn {
|
|
2862
|
+
height: 49px;
|
|
2863
|
+
min-height: 49px;
|
|
2864
|
+
}
|
|
2865
|
+
|
|
2866
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-createbtn {
|
|
2867
|
+
height: 49px;
|
|
2868
|
+
min-height: 49px;
|
|
2869
|
+
}
|
|
2870
|
+
|
|
2855
2871
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-bold.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2856
2872
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-italic.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2857
2873
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-strikeout.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
package/styles/fluent.css
CHANGED
|
@@ -2852,6 +2852,22 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2852
2852
|
min-height: 30px;
|
|
2853
2853
|
}
|
|
2854
2854
|
|
|
2855
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-clearbtn {
|
|
2856
|
+
float: left;
|
|
2857
|
+
height: 49px;
|
|
2858
|
+
min-height: 49px;
|
|
2859
|
+
}
|
|
2860
|
+
|
|
2861
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-cancelbtn {
|
|
2862
|
+
height: 49px;
|
|
2863
|
+
min-height: 49px;
|
|
2864
|
+
}
|
|
2865
|
+
|
|
2866
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-createbtn {
|
|
2867
|
+
height: 49px;
|
|
2868
|
+
min-height: 49px;
|
|
2869
|
+
}
|
|
2870
|
+
|
|
2855
2871
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-bold.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2856
2872
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-italic.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2857
2873
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-strikeout.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
@@ -2655,6 +2655,22 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2655
2655
|
min-height: 30px;
|
|
2656
2656
|
}
|
|
2657
2657
|
|
|
2658
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-clearbtn {
|
|
2659
|
+
float: left;
|
|
2660
|
+
height: 49px;
|
|
2661
|
+
min-height: 49px;
|
|
2662
|
+
}
|
|
2663
|
+
|
|
2664
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-cancelbtn {
|
|
2665
|
+
height: 49px;
|
|
2666
|
+
min-height: 49px;
|
|
2667
|
+
}
|
|
2668
|
+
|
|
2669
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-createbtn {
|
|
2670
|
+
height: 49px;
|
|
2671
|
+
min-height: 49px;
|
|
2672
|
+
}
|
|
2673
|
+
|
|
2658
2674
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-bold.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2659
2675
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-italic.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2660
2676
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-strikeout.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
package/styles/highcontrast.css
CHANGED
|
@@ -2659,6 +2659,22 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2659
2659
|
min-height: 30px;
|
|
2660
2660
|
}
|
|
2661
2661
|
|
|
2662
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-clearbtn {
|
|
2663
|
+
float: left;
|
|
2664
|
+
height: 49px;
|
|
2665
|
+
min-height: 49px;
|
|
2666
|
+
}
|
|
2667
|
+
|
|
2668
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-cancelbtn {
|
|
2669
|
+
height: 49px;
|
|
2670
|
+
min-height: 49px;
|
|
2671
|
+
}
|
|
2672
|
+
|
|
2673
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-createbtn {
|
|
2674
|
+
height: 49px;
|
|
2675
|
+
min-height: 49px;
|
|
2676
|
+
}
|
|
2677
|
+
|
|
2662
2678
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-bold.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2663
2679
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-italic.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2664
2680
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-strikeout.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
package/styles/material-dark.css
CHANGED
|
@@ -2659,6 +2659,22 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2659
2659
|
min-height: 30px;
|
|
2660
2660
|
}
|
|
2661
2661
|
|
|
2662
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-clearbtn {
|
|
2663
|
+
float: left;
|
|
2664
|
+
height: 49px;
|
|
2665
|
+
min-height: 49px;
|
|
2666
|
+
}
|
|
2667
|
+
|
|
2668
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-cancelbtn {
|
|
2669
|
+
height: 49px;
|
|
2670
|
+
min-height: 49px;
|
|
2671
|
+
}
|
|
2672
|
+
|
|
2673
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-createbtn {
|
|
2674
|
+
height: 49px;
|
|
2675
|
+
min-height: 49px;
|
|
2676
|
+
}
|
|
2677
|
+
|
|
2662
2678
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-bold.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2663
2679
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-italic.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2664
2680
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-strikeout.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
package/styles/material.css
CHANGED
|
@@ -2659,6 +2659,22 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2659
2659
|
min-height: 30px;
|
|
2660
2660
|
}
|
|
2661
2661
|
|
|
2662
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-clearbtn {
|
|
2663
|
+
float: left;
|
|
2664
|
+
height: 49px;
|
|
2665
|
+
min-height: 49px;
|
|
2666
|
+
}
|
|
2667
|
+
|
|
2668
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-cancelbtn {
|
|
2669
|
+
height: 49px;
|
|
2670
|
+
min-height: 49px;
|
|
2671
|
+
}
|
|
2672
|
+
|
|
2673
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-createbtn {
|
|
2674
|
+
height: 49px;
|
|
2675
|
+
min-height: 49px;
|
|
2676
|
+
}
|
|
2677
|
+
|
|
2662
2678
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-bold.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2663
2679
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-italic.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2664
2680
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-strikeout.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
@@ -2657,6 +2657,22 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2657
2657
|
min-height: 30px;
|
|
2658
2658
|
}
|
|
2659
2659
|
|
|
2660
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-clearbtn {
|
|
2661
|
+
float: left;
|
|
2662
|
+
height: 49px;
|
|
2663
|
+
min-height: 49px;
|
|
2664
|
+
}
|
|
2665
|
+
|
|
2666
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-cancelbtn {
|
|
2667
|
+
height: 49px;
|
|
2668
|
+
min-height: 49px;
|
|
2669
|
+
}
|
|
2670
|
+
|
|
2671
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-createbtn {
|
|
2672
|
+
height: 49px;
|
|
2673
|
+
min-height: 49px;
|
|
2674
|
+
}
|
|
2675
|
+
|
|
2660
2676
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-bold.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2661
2677
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-italic.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2662
2678
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-strikeout.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
@@ -2663,6 +2663,22 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2663
2663
|
min-height: 30px;
|
|
2664
2664
|
}
|
|
2665
2665
|
|
|
2666
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-clearbtn {
|
|
2667
|
+
float: left;
|
|
2668
|
+
height: 49px;
|
|
2669
|
+
min-height: 49px;
|
|
2670
|
+
}
|
|
2671
|
+
|
|
2672
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-cancelbtn {
|
|
2673
|
+
height: 49px;
|
|
2674
|
+
min-height: 49px;
|
|
2675
|
+
}
|
|
2676
|
+
|
|
2677
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-createbtn {
|
|
2678
|
+
height: 49px;
|
|
2679
|
+
min-height: 49px;
|
|
2680
|
+
}
|
|
2681
|
+
|
|
2666
2682
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-bold.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2667
2683
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-italic.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2668
2684
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-strikeout.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
@@ -2941,6 +2941,22 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2941
2941
|
min-height: 30px;
|
|
2942
2942
|
}
|
|
2943
2943
|
|
|
2944
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-clearbtn {
|
|
2945
|
+
float: left;
|
|
2946
|
+
height: 49px;
|
|
2947
|
+
min-height: 49px;
|
|
2948
|
+
}
|
|
2949
|
+
|
|
2950
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-cancelbtn {
|
|
2951
|
+
height: 49px;
|
|
2952
|
+
min-height: 49px;
|
|
2953
|
+
}
|
|
2954
|
+
|
|
2955
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-createbtn {
|
|
2956
|
+
height: 49px;
|
|
2957
|
+
min-height: 49px;
|
|
2958
|
+
}
|
|
2959
|
+
|
|
2944
2960
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-bold.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2945
2961
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-italic.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2946
2962
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-strikeout.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
@@ -2876,6 +2876,22 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2876
2876
|
min-height: 30px;
|
|
2877
2877
|
}
|
|
2878
2878
|
|
|
2879
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-clearbtn {
|
|
2880
|
+
float: left;
|
|
2881
|
+
height: 49px;
|
|
2882
|
+
min-height: 49px;
|
|
2883
|
+
}
|
|
2884
|
+
|
|
2885
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-cancelbtn {
|
|
2886
|
+
height: 49px;
|
|
2887
|
+
min-height: 49px;
|
|
2888
|
+
}
|
|
2889
|
+
|
|
2890
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-createbtn {
|
|
2891
|
+
height: 49px;
|
|
2892
|
+
min-height: 49px;
|
|
2893
|
+
}
|
|
2894
|
+
|
|
2879
2895
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-bold.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2880
2896
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-italic.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2881
2897
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-strikeout.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
@@ -2876,6 +2876,22 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
|
|
|
2876
2876
|
min-height: 30px;
|
|
2877
2877
|
}
|
|
2878
2878
|
|
|
2879
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-clearbtn {
|
|
2880
|
+
float: left;
|
|
2881
|
+
height: 49px;
|
|
2882
|
+
min-height: 49px;
|
|
2883
|
+
}
|
|
2884
|
+
|
|
2885
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-cancelbtn {
|
|
2886
|
+
height: 49px;
|
|
2887
|
+
min-height: 49px;
|
|
2888
|
+
}
|
|
2889
|
+
|
|
2890
|
+
.e-bigger .e-pv-signature-dialog-height .e-pv-createbtn {
|
|
2891
|
+
height: 49px;
|
|
2892
|
+
min-height: 49px;
|
|
2893
|
+
}
|
|
2894
|
+
|
|
2879
2895
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-bold.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2880
2896
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-italic.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|
|
2881
2897
|
.e-tbar-btn.e-control.e-btn.e-lib.e-icon-btn.e-pv-strikeout.e-pv-tbar-btn.e-tooltip.textprop-option-active,
|