@syncfusion/ej2-angular-inplace-editor 20.2.36 → 20.2.37-ngcc
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/@syncfusion/ej2-angular-inplace-editor.es5.js +275 -0
- package/@syncfusion/ej2-angular-inplace-editor.es5.js.map +1 -0
- package/@syncfusion/ej2-angular-inplace-editor.js +256 -0
- package/@syncfusion/ej2-angular-inplace-editor.js.map +1 -0
- package/CHANGELOG.md +246 -0
- package/dist/ej2-angular-inplace-editor.umd.js +350 -0
- package/dist/ej2-angular-inplace-editor.umd.js.map +1 -0
- package/dist/ej2-angular-inplace-editor.umd.min.js +11 -0
- package/dist/ej2-angular-inplace-editor.umd.min.js.map +1 -0
- package/ej2-angular-inplace-editor.d.ts +5 -0
- package/ej2-angular-inplace-editor.metadata.json +1 -0
- package/package.json +20 -34
- package/postinstall/tagchange.js +18 -0
- package/schematics/collection.json +35 -0
- package/schematics/generators/inplaceeditor-inline/index.d.ts +3 -0
- package/schematics/generators/inplaceeditor-inline/index.js +8 -0
- package/schematics/generators/inplaceeditor-inline/sample-details.d.ts +5 -0
- package/schematics/generators/inplaceeditor-inline/sample-details.js +7 -0
- package/schematics/generators/inplaceeditor-inline/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +3 -0
- package/schematics/generators/inplaceeditor-inline/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +5 -0
- package/schematics/generators/inplaceeditor-inline/schema.d.ts +3 -0
- package/schematics/generators/inplaceeditor-inline/schema.js +2 -0
- package/schematics/generators/inplaceeditor-inline/schema.json +125 -0
- package/schematics/generators/inplaceeditor-popup/index.d.ts +3 -0
- package/schematics/generators/inplaceeditor-popup/index.js +8 -0
- package/schematics/generators/inplaceeditor-popup/sample-details.d.ts +5 -0
- package/schematics/generators/inplaceeditor-popup/sample-details.js +7 -0
- package/schematics/generators/inplaceeditor-popup/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +3 -0
- package/schematics/generators/inplaceeditor-popup/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +5 -0
- package/schematics/generators/inplaceeditor-popup/schema.d.ts +3 -0
- package/schematics/generators/inplaceeditor-popup/schema.js +2 -0
- package/schematics/generators/inplaceeditor-popup/schema.json +125 -0
- package/schematics/generators/inplaceeditor-popup-position/index.d.ts +3 -0
- package/schematics/generators/inplaceeditor-popup-position/index.js +8 -0
- package/schematics/generators/inplaceeditor-popup-position/sample-details.d.ts +5 -0
- package/schematics/generators/inplaceeditor-popup-position/sample-details.js +7 -0
- package/schematics/generators/inplaceeditor-popup-position/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +3 -0
- package/schematics/generators/inplaceeditor-popup-position/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +5 -0
- package/schematics/generators/inplaceeditor-popup-position/schema.d.ts +3 -0
- package/schematics/generators/inplaceeditor-popup-position/schema.js +2 -0
- package/schematics/generators/inplaceeditor-popup-position/schema.json +125 -0
- package/schematics/generators/inplaceeditor-template/index.d.ts +3 -0
- package/schematics/generators/inplaceeditor-template/index.js +8 -0
- package/schematics/generators/inplaceeditor-template/sample-details.d.ts +5 -0
- package/schematics/generators/inplaceeditor-template/sample-details.js +7 -0
- package/schematics/generators/inplaceeditor-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +3 -0
- package/schematics/generators/inplaceeditor-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +8 -0
- package/schematics/generators/inplaceeditor-template/schema.d.ts +3 -0
- package/schematics/generators/inplaceeditor-template/schema.js +2 -0
- package/schematics/generators/inplaceeditor-template/schema.json +125 -0
- package/schematics/generators/inplaceeditor-validation/index.d.ts +3 -0
- package/schematics/generators/inplaceeditor-validation/index.js +8 -0
- package/schematics/generators/inplaceeditor-validation/sample-details.d.ts +5 -0
- package/schematics/generators/inplaceeditor-validation/sample-details.js +7 -0
- package/schematics/generators/inplaceeditor-validation/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +3 -0
- package/schematics/generators/inplaceeditor-validation/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +5 -0
- package/schematics/generators/inplaceeditor-validation/schema.d.ts +3 -0
- package/schematics/generators/inplaceeditor-validation/schema.js +2 -0
- package/schematics/generators/inplaceeditor-validation/schema.json +125 -0
- package/schematics/ng-add/index.d.ts +3 -0
- package/schematics/ng-add/index.js +9 -0
- package/schematics/ng-add/schema.d.ts +13 -0
- package/schematics/ng-add/schema.js +2 -0
- package/schematics/ng-add/schema.json +34 -0
- package/schematics/tsconfig.json +25 -0
- package/schematics/utils/lib-details.d.ts +4 -0
- package/schematics/utils/lib-details.js +6 -0
- package/schematics/utils/lib-details.ts +2 -2
- package/src/inplace-editor/inplaceeditor-all.module.d.ts +0 -6
- package/src/inplace-editor/inplaceeditor.component.d.ts +0 -3
- package/src/inplace-editor/inplaceeditor.module.d.ts +0 -6
- package/styles/inplace-editor/bootstrap-dark.scss +1 -26
- package/styles/inplace-editor/bootstrap.scss +1 -26
- package/styles/inplace-editor/bootstrap4.scss +1 -26
- package/styles/inplace-editor/bootstrap5-dark.scss +1 -26
- package/styles/inplace-editor/bootstrap5.scss +1 -26
- package/styles/inplace-editor/fabric-dark.scss +1 -26
- package/styles/inplace-editor/fabric.scss +1 -26
- package/styles/inplace-editor/fluent-dark.scss +1 -26
- package/styles/inplace-editor/fluent.scss +1 -26
- package/styles/inplace-editor/highcontrast-light.scss +1 -26
- package/styles/inplace-editor/highcontrast.scss +1 -26
- package/styles/inplace-editor/material-dark.scss +1 -26
- package/styles/inplace-editor/material.scss +1 -26
- package/styles/inplace-editor/tailwind-dark.scss +1 -26
- package/styles/inplace-editor/tailwind.scss +1 -26
- package/esm2020/public_api.mjs +0 -3
- package/esm2020/src/index.mjs +0 -5
- package/esm2020/src/inplace-editor/inplaceeditor-all.module.mjs +0 -50
- package/esm2020/src/inplace-editor/inplaceeditor.component.mjs +0 -146
- package/esm2020/src/inplace-editor/inplaceeditor.module.mjs +0 -25
- package/esm2020/syncfusion-ej2-angular-inplace-editor.mjs +0 -5
- package/fesm2015/syncfusion-ej2-angular-inplace-editor.mjs +0 -221
- package/fesm2015/syncfusion-ej2-angular-inplace-editor.mjs.map +0 -1
- package/fesm2020/syncfusion-ej2-angular-inplace-editor.mjs +0 -221
- package/fesm2020/syncfusion-ej2-angular-inplace-editor.mjs.map +0 -1
- package/styles/inplace-editor/_all.scss +0 -2
- package/styles/inplace-editor/_bootstrap-dark-definition.scss +0 -75
- package/styles/inplace-editor/_bootstrap-definition.scss +0 -76
- package/styles/inplace-editor/_bootstrap4-definition.scss +0 -76
- package/styles/inplace-editor/_bootstrap5-dark-definition.scss +0 -1
- package/styles/inplace-editor/_bootstrap5-definition.scss +0 -68
- package/styles/inplace-editor/_fabric-dark-definition.scss +0 -75
- package/styles/inplace-editor/_fabric-definition.scss +0 -76
- package/styles/inplace-editor/_fluent-dark-definition.scss +0 -1
- package/styles/inplace-editor/_fluent-definition.scss +0 -69
- package/styles/inplace-editor/_fusionnew-definition.scss +0 -68
- package/styles/inplace-editor/_highcontrast-definition.scss +0 -75
- package/styles/inplace-editor/_highcontrast-light-definition.scss +0 -75
- package/styles/inplace-editor/_layout.scss +0 -659
- package/styles/inplace-editor/_material-dark-definition.scss +0 -76
- package/styles/inplace-editor/_material-definition.scss +0 -76
- package/styles/inplace-editor/_material3-definition.scss +0 -68
- package/styles/inplace-editor/_tailwind-dark-definition.scss +0 -1
- package/styles/inplace-editor/_tailwind-definition.scss +0 -69
- package/styles/inplace-editor/_theme.scss +0 -250
- package/styles/inplace-editor/icons/_bootstrap-dark.scss +0 -19
- package/styles/inplace-editor/icons/_bootstrap.scss +0 -19
- package/styles/inplace-editor/icons/_bootstrap4.scss +0 -19
- package/styles/inplace-editor/icons/_bootstrap5-dark.scss +0 -1
- package/styles/inplace-editor/icons/_bootstrap5.scss +0 -19
- package/styles/inplace-editor/icons/_fabric-dark.scss +0 -19
- package/styles/inplace-editor/icons/_fabric.scss +0 -19
- package/styles/inplace-editor/icons/_fluent-dark.scss +0 -1
- package/styles/inplace-editor/icons/_fluent.scss +0 -19
- package/styles/inplace-editor/icons/_fusionnew.scss +0 -19
- package/styles/inplace-editor/icons/_highcontrast-light.scss +0 -19
- package/styles/inplace-editor/icons/_highcontrast.scss +0 -19
- package/styles/inplace-editor/icons/_material-dark.scss +0 -19
- package/styles/inplace-editor/icons/_material.scss +0 -19
- package/styles/inplace-editor/icons/_material3.scss +0 -19
- package/styles/inplace-editor/icons/_tailwind-dark.scss +0 -1
- package/styles/inplace-editor/icons/_tailwind.scss +0 -19
- package/syncfusion-ej2-angular-inplace-editor.d.ts +0 -5
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
/*! Fabric theme definitions and variables */
|
|
2
|
-
/*! Value element styles */
|
|
3
|
-
$inplace-skin: 'fabric' !default;
|
|
4
|
-
$black-color: rgba(0, 0, 0, .25) !default;
|
|
5
|
-
$editor-big-overlay-icon-size: 16px !default;
|
|
6
|
-
$editor-nrml-overlay-icon-size: 14px !default;
|
|
7
|
-
$editor-big-value-text-font-size: 15px !default;
|
|
8
|
-
$editor-nrml-value-text-font-size: 14px !default;
|
|
9
|
-
$editor-big-value-container-padding: 8px 12px !default;
|
|
10
|
-
$editor-nrml-value-container-padding: 6px 10px !default;
|
|
11
|
-
$editor-big-value-container-spin-padding: 12px !default;
|
|
12
|
-
$editor-nrml-value-container-spin-padding: 10px !default;
|
|
13
|
-
$editor-big-value-margin: 0 32px 0 0 !default;
|
|
14
|
-
$editor-nrml-value-margin: 0 30px 0 0 !default;
|
|
15
|
-
$editor-rtl-big-value-margin: 0 0 0 32px !default;
|
|
16
|
-
$editor-rtl-nrml-value-margin: 0 0 0 30px !default;
|
|
17
|
-
$editor-big-overlay-icon-container-size: 20px !default;
|
|
18
|
-
$editor-nrml-overlay-icon-container-size: 18px !default;
|
|
19
|
-
$editor-big-overlay-icon-left-right: 12px !default;
|
|
20
|
-
$editor-nrml-overlay-icon-left-right: 10px !default;
|
|
21
|
-
$editor-value-hover-bg: $neutral-lighter !default;
|
|
22
|
-
$editor-value-text-color: $neutral-light-font !default;
|
|
23
|
-
$editor-overlay-icon-color: $neutral-light-font !default;
|
|
24
|
-
$editor-value-text-border: 1px dashed $editor-value-text-color !default;
|
|
25
|
-
$editable-overlay-icon-height: inherit !default;
|
|
26
|
-
$editable-overlay-icon: 0 !default;
|
|
27
|
-
|
|
28
|
-
/*! Tooltip styles */
|
|
29
|
-
$editor-tip-border: 1px solid $neutral-quintenary !default;
|
|
30
|
-
$editor-tip-bg: $neutral-white !default;
|
|
31
|
-
$editor-tip-arrow-icon-color: $neutral-white !default;
|
|
32
|
-
$editor-tip-title-arrow-icon-color: $neutral-light !default;
|
|
33
|
-
$editor-tip-arrow-bdr-color: $neutral-quintenary !default;
|
|
34
|
-
$editor-tip-title-arrow-bdr-color: $neutral-quintenary !default;
|
|
35
|
-
$editor-tip-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .26) !default;
|
|
36
|
-
|
|
37
|
-
/*! Tip Content styles */
|
|
38
|
-
$editor-tip-content-bdr-radius: 0 !default;
|
|
39
|
-
$editor-popup-tip-content-bdr-radius: 0 !default;
|
|
40
|
-
|
|
41
|
-
/*! Title styles */
|
|
42
|
-
$editor-tip-title-font-weight: 600 !default;
|
|
43
|
-
$editor-big-tip-title-font-size: 14px !default;
|
|
44
|
-
$editor-nrml-tip-title-font-size: 13px !default;
|
|
45
|
-
$editor-big-tip-title-padding: 0 0 0 12px !default;
|
|
46
|
-
$editor-nrml-tip-title-padding: 0 0 0 12px !default;
|
|
47
|
-
$editor-rtl-big-tip-title-padding: 0 12px 0 0 !default;
|
|
48
|
-
$editor-rtl-nrml-tip-title-padding: 0 12px 0 0 !default;
|
|
49
|
-
$editor-big-tip-title-container-size: 36px !default;
|
|
50
|
-
$editor-nrml-tip-title-container-size: 30px !default;
|
|
51
|
-
$editor-tio-title-border-bottom: 0 !default;
|
|
52
|
-
$editor-tip-title-bg: $neutral-light !default;
|
|
53
|
-
$editor-tip-title-color: $neutral-light-font !default;
|
|
54
|
-
|
|
55
|
-
/*! Wrapper styles */
|
|
56
|
-
$editor-big-tip-wrapper-padding: 12px !default;
|
|
57
|
-
$editor-nrml-tip-wrapper-padding: 12px !default;
|
|
58
|
-
$editor-big-wrapper-title-with-padding: 10px 12px 12px 12px !default;
|
|
59
|
-
$editor-nrml-wrapper-title-with-padding: 10px 12px 12px 12px !default;
|
|
60
|
-
|
|
61
|
-
/*! Component group styles */
|
|
62
|
-
$editor-component-bottom-margin: 4px !default;
|
|
63
|
-
|
|
64
|
-
/*! Button styles */
|
|
65
|
-
$editor-buttons-top-margin: 4px !default;
|
|
66
|
-
$editor-btn-save-icon-size: 16px !default;
|
|
67
|
-
$editor-btn-cancel-icon-size: 16px !default;
|
|
68
|
-
$editor-big-btn-save-margin: 0 4px 0 0 !default;
|
|
69
|
-
$editor-nrml-btn-save-margin: 0 4px 0 0 !default;
|
|
70
|
-
$editor-big-btn-cancel-margin: 0 0 0 4px !default;
|
|
71
|
-
$editor-nrml-btn-cancel-margin: 0 0 0 4px !default;
|
|
72
|
-
$editor-rtl-big-btn-save-margin: 0 0 0 4px !default;
|
|
73
|
-
$editor-rtl-nrml-btn-save-margin: 0 0 0 4px !default;
|
|
74
|
-
$editor-rtl-big-btn-cancel-margin: 0 4px 0 0 !default;
|
|
75
|
-
$editor-rtl-nrml-btn-cancel-margin: 0 4px 0 0 !default;
|
|
76
|
-
$editor-btn-icon-color: $neutral-light-font !default;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@import './fluent-definition.scss';
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
$inplace-skin: 'FluentUI' !default;
|
|
2
|
-
//Layout Variable Start
|
|
3
|
-
$editor-big-value-text-font-size: $text-base !default;
|
|
4
|
-
$editor-nrml-value-text-font-size: $text-sm !default;
|
|
5
|
-
$editor-big-value-container-padding: 7px 12px 9px 12px !default;
|
|
6
|
-
$editor-nrml-value-container-padding: 4px 8px 6px 8px !default;
|
|
7
|
-
$editor-big-value-container-spin-padding: 12px !default;
|
|
8
|
-
$editor-nrml-value-container-spin-padding: 10px !default;
|
|
9
|
-
$editor-big-value-margin: 0 32px 0 0 !default;
|
|
10
|
-
$editor-nrml-value-margin: 0 30px 0 0 !default;
|
|
11
|
-
$editor-rtl-big-value-margin: 0 0 0 32px !default;
|
|
12
|
-
$editor-rtl-nrml-value-margin: 0 0 0 30px !default;
|
|
13
|
-
$editor-big-overlay-icon-size: $text-base !default;
|
|
14
|
-
$editor-nrml-overlay-icon-size: $text-sm !default;
|
|
15
|
-
$editor-big-overlay-icon-container-size: 20px !default;
|
|
16
|
-
$editor-nrml-overlay-icon-container-size: 20px !default;
|
|
17
|
-
$editor-big-overlay-icon-left-right: 12px !default;
|
|
18
|
-
$editor-nrml-overlay-icon-left-right: 8px !default;
|
|
19
|
-
$editor-tip-content-bdr-radius: $model-radius !default;
|
|
20
|
-
$editor-popup-tip-content-bdr-radius: 0 !default;
|
|
21
|
-
$editor-popup-tip-wrapper-bdr-radius: 0 !default;
|
|
22
|
-
$editor-tip-title-font-weight: $font-weight-medium !default;
|
|
23
|
-
$editor-big-tip-title-font-size: $text-lg !default;
|
|
24
|
-
$editor-nrml-tip-title-font-size: $text-base !default;
|
|
25
|
-
$editor-big-tip-title-padding: 8px 16px 0 16px !default;
|
|
26
|
-
$editor-nrml-tip-title-padding: 6px 12px 0 12px !default;
|
|
27
|
-
$editor-rtl-big-tip-title-padding: 8px 16px 0 16px !default;
|
|
28
|
-
$editor-rtl-nrml-tip-title-padding: 6px 12px 0 12px !default;
|
|
29
|
-
$editor-big-tip-title-container-size: 28px !default;
|
|
30
|
-
$editor-nrml-tip-title-container-size: 24px !default;
|
|
31
|
-
$editor-big-tip-wrapper-padding: 25px 16px 16px 16px !default;
|
|
32
|
-
$editor-nrml-tip-wrapper-padding: 18px 12px 12px 12px !default;
|
|
33
|
-
$editor-big-wrapper-title-with-padding: 25px 16px 16px 16px !default;
|
|
34
|
-
$editor-nrml-wrapper-title-with-padding: 18px 12px 12px 12px !default;
|
|
35
|
-
$editor-component-bottom-margin: 4px !default;
|
|
36
|
-
$editor-buttons-top-margin: 4px !default;
|
|
37
|
-
$editor-btn-save-icon-size: 12px !default;
|
|
38
|
-
$editor-btn-cancel-icon-size: 12px !default;
|
|
39
|
-
$editor-big-btn-save-margin: 0 6px 0 0 !default;
|
|
40
|
-
$editor-nrml-btn-save-margin: 0 4px 0 0 !default;
|
|
41
|
-
$editor-big-btn-cancel-margin: 0 0 0 6px !default;
|
|
42
|
-
$editor-nrml-btn-cancel-margin: 0 0 0 4px !default;
|
|
43
|
-
$editor-rtl-big-btn-save-margin: 0 0 0 6px !default;
|
|
44
|
-
$editor-rtl-nrml-btn-save-margin: 0 0 0 4px !default;
|
|
45
|
-
$editor-rtl-big-btn-cancel-margin: 0 6px 0 0 !default;
|
|
46
|
-
$editor-rtl-nrml-btn-cancel-margin: 0 4px 0 0 !default;
|
|
47
|
-
//Layout Variable End
|
|
48
|
-
|
|
49
|
-
//Theme Variable Start
|
|
50
|
-
$editor-value-hover-bg: $content-bg-color-alt2 !default;
|
|
51
|
-
$editor-value-text-color: $content-text-color !default;
|
|
52
|
-
$editor-overlay-icon-color: $icon-color !default;
|
|
53
|
-
$editor-value-text-border: 1px dashed $content-text-color !default;
|
|
54
|
-
$editor-background-color: $transparent !default;
|
|
55
|
-
$wrapper-background-color: $flyout-bg-color !default;
|
|
56
|
-
$editor-tip-border: none !default;
|
|
57
|
-
$editor-tip-bg: $flyout-bg-color !default;
|
|
58
|
-
$editor-tip-arrow-icon-color: $tooltip-bg-color !default;
|
|
59
|
-
$editor-tip-title-arrow-icon-color: $content-bg-color !default;
|
|
60
|
-
$editor-tip-arrow-bdr-color: $content-bg-color-alt1 !default;
|
|
61
|
-
$editor-tip-title-arrow-bdr-color: $border !default;
|
|
62
|
-
$editor-tip-box-shadow: $shadow-xl !default;
|
|
63
|
-
$editor-tip-title-bg: $content-bg-color !default;
|
|
64
|
-
$editor-tio-title-border-bottom: 0 !default;
|
|
65
|
-
$editor-tip-title-color: $content-text-color !default;
|
|
66
|
-
$editable-overlay-icon-height: inherit !default;
|
|
67
|
-
$editable-overlay-icon: 0 !default;
|
|
68
|
-
$editor-btn-icon-color: $icon-color !default;
|
|
69
|
-
//Theme Variable End
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
$inplace-skin: 'bootstrap5' !default;
|
|
2
|
-
//Layout Variable Start
|
|
3
|
-
$editor-big-value-text-font-size: $text-base !default;
|
|
4
|
-
$editor-nrml-value-text-font-size: $text-sm !default;
|
|
5
|
-
$editor-big-value-container-padding: 7px 12px 7px 12px !default;
|
|
6
|
-
$editor-nrml-value-container-padding: 3px 8px 5px 8px !default;
|
|
7
|
-
$editor-big-value-container-spin-padding: 8px !default;
|
|
8
|
-
$editor-nrml-value-container-spin-padding: 8px !default;
|
|
9
|
-
$editor-big-value-margin: 0 30px 0 0 !default;
|
|
10
|
-
$editor-nrml-value-margin: 0 28px 0 0 !default;
|
|
11
|
-
$editor-rtl-big-value-margin: 0 0 0 30px !default;
|
|
12
|
-
$editor-rtl-nrml-value-margin: 0 0 0 28px !default;
|
|
13
|
-
$editor-big-overlay-icon-size: $text-base !default;
|
|
14
|
-
$editor-nrml-overlay-icon-size: $text-sm !default;
|
|
15
|
-
$editor-big-overlay-icon-container-size: 20px !default;
|
|
16
|
-
$editor-nrml-overlay-icon-container-size: 20px !default;
|
|
17
|
-
$editor-big-overlay-icon-left-right: 8px !default;
|
|
18
|
-
$editor-nrml-overlay-icon-left-right: 8px !default;
|
|
19
|
-
$editor-tip-content-bdr-radius: 4px !default;
|
|
20
|
-
$editor-popup-tip-content-bdr-radius: 4px !default;
|
|
21
|
-
$editor-tip-title-font-weight: $font-weight-medium !default;
|
|
22
|
-
$editor-big-tip-title-font-size: $text-sm !default;
|
|
23
|
-
$editor-nrml-tip-title-font-size: $text-xs !default;
|
|
24
|
-
$editor-big-tip-title-padding: 12px 16px 12px 16px !default;
|
|
25
|
-
$editor-nrml-tip-title-padding: 9px 12px 9px 12px !default;
|
|
26
|
-
$editor-rtl-big-tip-title-padding: 12px 16px 12px 16px !default;
|
|
27
|
-
$editor-rtl-nrml-tip-title-padding: 9px 12px 9px 12px !default;
|
|
28
|
-
$editor-big-tip-title-container-size: 46px !default;
|
|
29
|
-
$editor-nrml-tip-title-container-size: 36px !default;
|
|
30
|
-
$editor-big-tip-wrapper-padding: 16px !default;
|
|
31
|
-
$editor-nrml-tip-wrapper-padding: 12px !default;
|
|
32
|
-
$editor-big-wrapper-title-with-padding: 16px !default;
|
|
33
|
-
$editor-nrml-wrapper-title-with-padding: 12px !default;
|
|
34
|
-
$editor-component-bottom-margin: 4px !default;
|
|
35
|
-
$editor-buttons-top-margin: 4px !default;
|
|
36
|
-
$editor-btn-save-icon-size: 16px !default;
|
|
37
|
-
$editor-btn-cancel-icon-size: 16px !default;
|
|
38
|
-
$editor-big-btn-save-margin: 0 4px 0 0 !default;
|
|
39
|
-
$editor-nrml-btn-save-margin: 0 4px 0 0 !default;
|
|
40
|
-
$editor-big-btn-cancel-margin: 0 0 0 4px !default;
|
|
41
|
-
$editor-nrml-btn-cancel-margin: 0 0 0 4px !default;
|
|
42
|
-
$editor-rtl-big-btn-save-margin: 0 0 0 4px !default;
|
|
43
|
-
$editor-rtl-nrml-btn-save-margin: 0 0 0 4px !default;
|
|
44
|
-
$editor-rtl-big-btn-cancel-margin: 0 4px 0 0 !default;
|
|
45
|
-
$editor-rtl-nrml-btn-cancel-margin: 0 4px 0 0 !default;
|
|
46
|
-
//Layout Variable End
|
|
47
|
-
|
|
48
|
-
//Theme Variable Start
|
|
49
|
-
$editor-value-hover-bg: $content-bg-color-alt2 !default;
|
|
50
|
-
$editor-value-text-color: $content-text-color !default;
|
|
51
|
-
$editor-overlay-icon-color: $icon-color !default;
|
|
52
|
-
$editor-value-text-border: 1px dashed $content-text-color !default;
|
|
53
|
-
$editor-background-color: $transparent !default;
|
|
54
|
-
$wrapper-background-color: $flyout-bg-color !default;
|
|
55
|
-
$editor-tip-border: 1px solid $border !default;
|
|
56
|
-
$editor-tip-bg: $content-bg-color !default;
|
|
57
|
-
$editor-tip-arrow-icon-color: $content-bg-color-alt1 !default;
|
|
58
|
-
$editor-tip-title-arrow-icon-color: $content-bg-color-alt1 !default;
|
|
59
|
-
$editor-tip-arrow-bdr-color: $content-bg-color-alt1 !default;
|
|
60
|
-
$editor-tip-title-arrow-bdr-color: $border !default;
|
|
61
|
-
$editor-tip-box-shadow: $shadow-lg !default;
|
|
62
|
-
$editor-tip-title-bg: $content-bg-color-alt1 !default;
|
|
63
|
-
$editor-tio-title-border-bottom: 0 !default;
|
|
64
|
-
$editor-tip-title-color: $content-text-color !default;
|
|
65
|
-
$editable-overlay-icon-height: inherit !default;
|
|
66
|
-
$editable-overlay-icon: 0 !default;
|
|
67
|
-
$editor-btn-icon-color: $icon-color !default;
|
|
68
|
-
//Theme Variable End
|
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
/*! High contrast theme definitions and variables */
|
|
2
|
-
/*! Value element styles */
|
|
3
|
-
$inplace-skin: 'highcontrast' !default;
|
|
4
|
-
$editor-big-value-text-font-size: 15px !default;
|
|
5
|
-
$editor-nrml-value-text-font-size: 14px !default;
|
|
6
|
-
$editor-big-value-container-padding: 8px 12px !default;
|
|
7
|
-
$editor-nrml-value-container-padding: 6px 10px !default;
|
|
8
|
-
$editor-big-value-container-spin-padding: 12px !default;
|
|
9
|
-
$editor-nrml-value-container-spin-padding: 10px !default;
|
|
10
|
-
$editor-big-value-margin: 0 32px 0 0 !default;
|
|
11
|
-
$editor-nrml-value-margin: 0 30px 0 0 !default;
|
|
12
|
-
$editor-rtl-big-value-margin: 0 0 0 32px !default;
|
|
13
|
-
$editor-rtl-nrml-value-margin: 0 0 0 30px !default;
|
|
14
|
-
$editor-big-overlay-icon-size: 16px !default;
|
|
15
|
-
$editor-nrml-overlay-icon-size: 14px !default;
|
|
16
|
-
$editor-big-overlay-icon-container-size: 20px !default;
|
|
17
|
-
$editor-nrml-overlay-icon-container-size: 18px !default;
|
|
18
|
-
$editor-big-overlay-icon-left-right: 12px !default;
|
|
19
|
-
$editor-nrml-overlay-icon-left-right: 10px !default;
|
|
20
|
-
$editor-value-hover-bg: $hover-bg !default;
|
|
21
|
-
$editor-value-text-color: $content-font !default;
|
|
22
|
-
$editor-overlay-icon-color: $content-font !default;
|
|
23
|
-
$editor-value-text-border: 1px dashed $editor-value-text-color !default;
|
|
24
|
-
$editable-overlay-icon-height: inherit !default;
|
|
25
|
-
$editable-overlay-icon: 0 !default;
|
|
26
|
-
|
|
27
|
-
/*! Tooltip styles */
|
|
28
|
-
$editor-tip-bg: $bg-base-0 !default;
|
|
29
|
-
$editor-tip-border: 1px solid $border-fg !default;
|
|
30
|
-
$editor-tip-arrow-icon-color: $bg-base-0 !default;
|
|
31
|
-
$editor-tip-title-arrow-icon-color: $bg-base-0 !default;
|
|
32
|
-
$editor-tip-arrow-bdr-color: $border-fg !default;
|
|
33
|
-
$editor-tip-title-arrow-bdr-color: $border-fg !default;
|
|
34
|
-
$editor-tip-box-shadow: none !default;
|
|
35
|
-
|
|
36
|
-
/*! Tip Content styles */
|
|
37
|
-
$editor-tip-content-bdr-radius: 0 !default;
|
|
38
|
-
$editor-popup-tip-content-bdr-radius: 0 !default;
|
|
39
|
-
|
|
40
|
-
/*! Title styles */
|
|
41
|
-
$editor-tip-title-font-weight: 600 !default;
|
|
42
|
-
$editor-big-tip-title-font-size: 14px !default;
|
|
43
|
-
$editor-nrml-tip-title-font-size: 13px !default;
|
|
44
|
-
$editor-big-tip-title-padding: 0 0 0 12px !default;
|
|
45
|
-
$editor-nrml-tip-title-padding: 0 0 0 12px !default;
|
|
46
|
-
$editor-rtl-big-tip-title-padding: 0 12px 0 0 !default;
|
|
47
|
-
$editor-rtl-nrml-tip-title-padding: 0 12px 0 0 !default;
|
|
48
|
-
$editor-big-tip-title-container-size: 36px !default;
|
|
49
|
-
$editor-nrml-tip-title-container-size: 30px !default;
|
|
50
|
-
$editor-tip-title-bg: transparent !default;
|
|
51
|
-
$editor-tip-title-color: $header-font !default;
|
|
52
|
-
$editor-tio-title-border-bottom: 1px solid $border-fg !default;
|
|
53
|
-
|
|
54
|
-
/*! Wrapper styles */
|
|
55
|
-
$editor-big-tip-wrapper-padding: 12px !default;
|
|
56
|
-
$editor-nrml-tip-wrapper-padding: 12px !default;
|
|
57
|
-
$editor-big-wrapper-title-with-padding: 10px 12px 12px 12px !default;
|
|
58
|
-
$editor-nrml-wrapper-title-with-padding: 10px 12px 12px 12px !default;
|
|
59
|
-
|
|
60
|
-
/*! Component group styles */
|
|
61
|
-
$editor-component-bottom-margin: 4px !default;
|
|
62
|
-
|
|
63
|
-
/*! Button styles */
|
|
64
|
-
$editor-buttons-top-margin: 4px !default;
|
|
65
|
-
$editor-btn-save-icon-size: 16px !default;
|
|
66
|
-
$editor-btn-cancel-icon-size: 16px !default;
|
|
67
|
-
$editor-big-btn-save-margin: 0 4px 0 0 !default;
|
|
68
|
-
$editor-nrml-btn-save-margin: 0 4px 0 0 !default;
|
|
69
|
-
$editor-big-btn-cancel-margin: 0 0 0 4px !default;
|
|
70
|
-
$editor-nrml-btn-cancel-margin: 0 0 0 4px !default;
|
|
71
|
-
$editor-rtl-big-btn-save-margin: 0 0 0 4px !default;
|
|
72
|
-
$editor-rtl-nrml-btn-save-margin: 0 0 0 4px !default;
|
|
73
|
-
$editor-rtl-big-btn-cancel-margin: 0 4px 0 0 !default;
|
|
74
|
-
$editor-rtl-nrml-btn-cancel-margin: 0 4px 0 0 !default;
|
|
75
|
-
$editor-btn-icon-color: $content-font !default;
|
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
/*! High contrast light theme definitions and variables */
|
|
2
|
-
/*! Value element styles */
|
|
3
|
-
$inplace-skin: 'highcontrast-light' !default;
|
|
4
|
-
$editor-big-value-text-font-size: 15px !default;
|
|
5
|
-
$editor-nrml-value-text-font-size: 14px !default;
|
|
6
|
-
$editor-big-value-container-padding: 8px 12px !default;
|
|
7
|
-
$editor-nrml-value-container-padding: 6px 10px !default;
|
|
8
|
-
$editor-big-value-container-spin-padding: 12px !default;
|
|
9
|
-
$editor-nrml-value-container-spin-padding: 10px !default;
|
|
10
|
-
$editor-big-value-margin: 0 32px 0 0 !default;
|
|
11
|
-
$editor-nrml-value-margin: 0 30px 0 0 !default;
|
|
12
|
-
$editor-rtl-big-value-margin: 0 0 0 32px !default;
|
|
13
|
-
$editor-rtl-nrml-value-margin: 0 0 0 30px !default;
|
|
14
|
-
$editor-big-overlay-icon-size: 16px !default;
|
|
15
|
-
$editor-nrml-overlay-icon-size: 14px !default;
|
|
16
|
-
$editor-big-overlay-icon-container-size: 20px !default;
|
|
17
|
-
$editor-nrml-overlay-icon-container-size: 18px !default;
|
|
18
|
-
$editor-big-overlay-icon-left-right: 12px !default;
|
|
19
|
-
$editor-nrml-overlay-icon-left-right: 10px !default;
|
|
20
|
-
$editor-value-hover-bg: $hover-bg !default;
|
|
21
|
-
$editor-value-text-color: $content-font !default;
|
|
22
|
-
$editor-overlay-icon-color: $content-font !default;
|
|
23
|
-
$editor-value-text-border: 1px dashed $editor-value-text-color !default;
|
|
24
|
-
$editable-overlay-icon-height: inherit !default;
|
|
25
|
-
$editable-overlay-icon: 0 !default;
|
|
26
|
-
|
|
27
|
-
/*! Tooltip styles */
|
|
28
|
-
$editor-tip-bg: $bg-base-0 !default;
|
|
29
|
-
$editor-tip-border: 1px solid $border-fg !default;
|
|
30
|
-
$editor-tip-arrow-icon-color: $bg-base-0 !default;
|
|
31
|
-
$editor-tip-title-arrow-icon-color: $bg-base-0 !default;
|
|
32
|
-
$editor-tip-arrow-bdr-color: $border-fg !default;
|
|
33
|
-
$editor-tip-title-arrow-bdr-color: $border-fg !default;
|
|
34
|
-
$editor-tip-box-shadow: none !default;
|
|
35
|
-
|
|
36
|
-
/*! Tip Content styles */
|
|
37
|
-
$editor-tip-content-bdr-radius: 0 !default;
|
|
38
|
-
$editor-popup-tip-content-bdr-radius: 0 !default;
|
|
39
|
-
|
|
40
|
-
/*! Title styles */
|
|
41
|
-
$editor-tip-title-font-weight: 600 !default;
|
|
42
|
-
$editor-big-tip-title-font-size: 14px !default;
|
|
43
|
-
$editor-nrml-tip-title-font-size: 13px !default;
|
|
44
|
-
$editor-big-tip-title-padding: 0 0 0 12px !default;
|
|
45
|
-
$editor-nrml-tip-title-padding: 0 0 0 12px !default;
|
|
46
|
-
$editor-rtl-big-tip-title-padding: 0 12px 0 0 !default;
|
|
47
|
-
$editor-rtl-nrml-tip-title-padding: 0 12px 0 0 !default;
|
|
48
|
-
$editor-big-tip-title-container-size: 36px !default;
|
|
49
|
-
$editor-nrml-tip-title-container-size: 30px !default;
|
|
50
|
-
$editor-tip-title-bg: transparent !default;
|
|
51
|
-
$editor-tip-title-color: $header-font !default;
|
|
52
|
-
$editor-tio-title-border-bottom: 1px solid $border-fg !default;
|
|
53
|
-
|
|
54
|
-
/*! Wrapper styles */
|
|
55
|
-
$editor-big-tip-wrapper-padding: 12px !default;
|
|
56
|
-
$editor-nrml-tip-wrapper-padding: 12px !default;
|
|
57
|
-
$editor-big-wrapper-title-with-padding: 10px 12px 12px 12px !default;
|
|
58
|
-
$editor-nrml-wrapper-title-with-padding: 10px 12px 12px 12px !default;
|
|
59
|
-
|
|
60
|
-
/*! Component group styles */
|
|
61
|
-
$editor-component-bottom-margin: 4px !default;
|
|
62
|
-
|
|
63
|
-
/*! Button styles */
|
|
64
|
-
$editor-buttons-top-margin: 4px !default;
|
|
65
|
-
$editor-btn-save-icon-size: 16px !default;
|
|
66
|
-
$editor-btn-cancel-icon-size: 16px !default;
|
|
67
|
-
$editor-big-btn-save-margin: 0 4px 0 0 !default;
|
|
68
|
-
$editor-nrml-btn-save-margin: 0 4px 0 0 !default;
|
|
69
|
-
$editor-big-btn-cancel-margin: 0 0 0 4px !default;
|
|
70
|
-
$editor-nrml-btn-cancel-margin: 0 0 0 4px !default;
|
|
71
|
-
$editor-rtl-big-btn-save-margin: 0 0 0 4px !default;
|
|
72
|
-
$editor-rtl-nrml-btn-save-margin: 0 0 0 4px !default;
|
|
73
|
-
$editor-rtl-big-btn-cancel-margin: 0 4px 0 0 !default;
|
|
74
|
-
$editor-rtl-nrml-btn-cancel-margin: 0 4px 0 0 !default;
|
|
75
|
-
$editor-btn-icon-color: $content-font !default;
|