@syncfusion/ej2-angular-documenteditor 21.2.10 → 22.1.34
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/README.md +45 -137
- package/esm2020/src/document-editor/documenteditor-all.module.mjs +4 -7
- package/esm2020/src/document-editor/documenteditor.component.mjs +4 -11
- package/esm2020/src/document-editor-container/documenteditorcontainer.component.mjs +4 -4
- package/esm2020/src/index.mjs +2 -2
- package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs +10 -20
- package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs.map +1 -1
- package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs +10 -20
- package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs.map +1 -1
- package/license +10 -0
- package/package.json +18 -8
- package/schematics/utils/lib-details.ts +2 -2
- package/src/document-editor/documenteditor-all.module.d.ts +0 -1
- package/src/document-editor/documenteditor.component.d.ts +1 -2
- package/src/document-editor-container/documenteditorcontainer.component.d.ts +1 -2
- package/src/index.d.ts +1 -1
- package/styles/bootstrap-dark.css +102 -37
- package/styles/bootstrap.css +106 -37
- package/styles/bootstrap4.css +110 -37
- package/styles/bootstrap5-dark.css +102 -37
- package/styles/bootstrap5.css +102 -37
- package/styles/document-editor/_material3-dark-definition.scss +1 -0
- package/styles/document-editor/_material3-definition.scss +560 -0
- package/styles/document-editor/_theme.scss +68 -3
- package/styles/document-editor/bootstrap-dark.css +6 -0
- package/styles/document-editor/bootstrap.css +10 -0
- package/styles/document-editor/bootstrap4.css +14 -0
- package/styles/document-editor/bootstrap5-dark.css +6 -0
- package/styles/document-editor/bootstrap5.css +6 -0
- package/styles/document-editor/fabric-dark.css +6 -0
- package/styles/document-editor/fabric.css +10 -0
- package/styles/document-editor/fluent-dark.css +6 -0
- package/styles/document-editor/fluent.css +6 -0
- package/styles/document-editor/highcontrast.css +6 -0
- package/styles/document-editor/icons/_material3-dark.scss +1 -0
- package/styles/document-editor/icons/_material3.scss +6 -6
- package/styles/document-editor/material-dark.css +6 -0
- package/styles/document-editor/material.css +6 -0
- package/styles/document-editor/material3-dark.css +3971 -0
- package/styles/document-editor/material3-dark.scss +5 -0
- package/styles/document-editor/material3.css +4027 -0
- package/styles/document-editor/material3.scss +5 -0
- package/styles/document-editor/tailwind-dark.css +6 -0
- package/styles/document-editor/tailwind.css +6 -0
- package/styles/document-editor-container/_bootstrap-dark-definition.scss +1 -0
- package/styles/document-editor-container/_bootstrap-definition.scss +1 -0
- package/styles/document-editor-container/_bootstrap4-definition.scss +1 -0
- package/styles/document-editor-container/_bootstrap5-definition.scss +1 -0
- package/styles/document-editor-container/_fabric-dark-definition.scss +1 -0
- package/styles/document-editor-container/_fabric-definition.scss +1 -0
- package/styles/document-editor-container/_fluent-definition.scss +1 -0
- package/styles/document-editor-container/_fusionnew-definition.scss +1 -0
- package/styles/document-editor-container/_highcontrast-definition.scss +1 -0
- package/styles/document-editor-container/_highcontrast-light-definition.scss +1 -0
- package/styles/document-editor-container/_material-dark-definition.scss +2 -1
- package/styles/document-editor-container/_material-definition.scss +1 -0
- package/styles/document-editor-container/_material3-dark-definition.scss +1 -0
- package/styles/document-editor-container/_material3-definition.scss +163 -0
- package/styles/document-editor-container/_tailwind-definition.scss +1 -0
- package/styles/document-editor-container/_theme.scss +271 -52
- package/styles/document-editor-container/bootstrap-dark.css +96 -37
- package/styles/document-editor-container/bootstrap.css +96 -37
- package/styles/document-editor-container/bootstrap4.css +96 -37
- package/styles/document-editor-container/bootstrap5-dark.css +96 -37
- package/styles/document-editor-container/bootstrap5.css +96 -37
- package/styles/document-editor-container/fabric-dark.css +96 -37
- package/styles/document-editor-container/fabric.css +96 -37
- package/styles/document-editor-container/fluent-dark.css +96 -37
- package/styles/document-editor-container/fluent.css +96 -37
- package/styles/document-editor-container/highcontrast-light.css +96 -37
- package/styles/document-editor-container/highcontrast.css +96 -37
- package/styles/document-editor-container/icons/_bootstrap-dark.scss +15 -0
- package/styles/document-editor-container/icons/_bootstrap.scss +15 -0
- package/styles/document-editor-container/icons/_bootstrap4.scss +15 -0
- package/styles/document-editor-container/icons/_bootstrap5.scss +15 -0
- package/styles/document-editor-container/icons/_fabric-dark.scss +15 -0
- package/styles/document-editor-container/icons/_fabric.scss +15 -0
- package/styles/document-editor-container/icons/_fluent.scss +15 -0
- package/styles/document-editor-container/icons/_fusionnew.scss +15 -0
- package/styles/document-editor-container/icons/_highcontrast-light.scss +15 -0
- package/styles/document-editor-container/icons/_highcontrast.scss +15 -0
- package/styles/document-editor-container/icons/_material-dark.scss +15 -0
- package/styles/document-editor-container/icons/_material.scss +15 -0
- package/styles/document-editor-container/icons/_material3-dark.scss +1 -0
- package/styles/document-editor-container/icons/_material3.scss +29 -15
- package/styles/document-editor-container/icons/_tailwind-dark.scss +15 -0
- package/styles/document-editor-container/icons/_tailwind.scss +15 -0
- package/styles/document-editor-container/material-dark.css +101 -42
- package/styles/document-editor-container/material.css +97 -37
- package/styles/document-editor-container/material3-dark.css +2178 -0
- package/styles/document-editor-container/material3-dark.scss +6 -0
- package/styles/document-editor-container/material3.css +2234 -0
- package/styles/document-editor-container/material3.scss +6 -0
- package/styles/document-editor-container/tailwind-dark.css +95 -36
- package/styles/document-editor-container/tailwind.css +95 -36
- package/styles/fabric-dark.css +102 -37
- package/styles/fabric.css +106 -37
- package/styles/fluent-dark.css +102 -37
- package/styles/fluent.css +102 -37
- package/styles/highcontrast-light.css +96 -37
- package/styles/highcontrast.css +102 -37
- package/styles/material-dark.css +107 -42
- package/styles/material.css +103 -37
- package/styles/material3-dark.css +6094 -0
- package/styles/material3-dark.scss +4 -0
- package/styles/material3.css +6150 -0
- package/styles/material3.scss +4 -0
- package/styles/tailwind-dark.css +101 -36
- package/styles/tailwind.css +101 -36
- package/schematics/collection.json +0 -15
- package/schematics/generators/documenteditorcontainer-default/index.d.ts +0 -3
- package/schematics/generators/documenteditorcontainer-default/index.js +0 -8
- package/schematics/generators/documenteditorcontainer-default/sample-details.d.ts +0 -5
- package/schematics/generators/documenteditorcontainer-default/sample-details.js +0 -7
- package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
- package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -8
- package/schematics/generators/documenteditorcontainer-default/schema.d.ts +0 -3
- package/schematics/generators/documenteditorcontainer-default/schema.js +0 -2
- package/schematics/generators/documenteditorcontainer-default/schema.json +0 -125
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
|
@@ -0,0 +1,560 @@
|
|
|
1
|
+
$de-padding-half: 10px;
|
|
2
|
+
$de-padding-half-bigger: 10px;
|
|
3
|
+
$de-padding-full: 16px;
|
|
4
|
+
$de-padding-full-bigger: 20px;
|
|
5
|
+
|
|
6
|
+
$de-cmt-author-nme-padding-left: 8px;
|
|
7
|
+
$de-cmt-author-nme-padding-left-big: 12px;
|
|
8
|
+
$de-cmt-textbox-top-margin: 12px;
|
|
9
|
+
$de-cmt-textbox-top-margin-big: 16px;
|
|
10
|
+
$de-cmt-sub-container-padding: 8px;
|
|
11
|
+
$de-cmt-sub-container-padding-big: 12px;
|
|
12
|
+
$de-cmt-sub-container-padding-left: 10px;
|
|
13
|
+
$de-cmt-sub-container-padding-left-big: 14px;
|
|
14
|
+
$de-cmt-sub-container-hover-padding-left: 11px;
|
|
15
|
+
$de-cmt-sub-container-hover-padding-left-big: 15px;
|
|
16
|
+
$de-cmt-avatar-height: 24px;
|
|
17
|
+
$de-cmt-avatar-width: 24px;
|
|
18
|
+
$de-rp-sub-div-padding: 12px;
|
|
19
|
+
$de-rp-sub-div-padding-big: $de-rp-sub-div-padding;
|
|
20
|
+
$de-rp-whole-header-padding: 12px;
|
|
21
|
+
$de-rp-whole-header-padding-big: $de-rp-whole-header-padding;
|
|
22
|
+
$de-rp-enforce-padding: 12px;
|
|
23
|
+
$de-rp-enforce-padding-big: $de-rp-enforce-padding;
|
|
24
|
+
$de-rp-close-icon-right: -12px;
|
|
25
|
+
$de-rp-close-icon-right-bigger: -17px;
|
|
26
|
+
$de-rp-close-icon-top-bigger: -9px;
|
|
27
|
+
$de-rp-close-icon-right-rtl: 12px;
|
|
28
|
+
$de-rp-close-icon-right-bigger-rtl: 17px;
|
|
29
|
+
$de-table-row-height-padding: 24px;
|
|
30
|
+
$de-table-alignment-icon-width: 54px;
|
|
31
|
+
$de-table-alignment-icon-height: 54px;
|
|
32
|
+
$de-table-alignment-icon-margin: 2px;
|
|
33
|
+
$de-table-dia-align-height: 60px;
|
|
34
|
+
$de-table-dia-align-width: 60px;
|
|
35
|
+
$de-table-dia-align-icon-height: 52px;
|
|
36
|
+
$de-border-dlg-clr-padding-right: 19px;
|
|
37
|
+
$de-border-dlg-clr-padding-bottom: 6px;
|
|
38
|
+
$de-td-table-border-left: 5px;
|
|
39
|
+
$de-border-dlg-preview-padding-left: 50px;
|
|
40
|
+
$de-tbl-dlg-align-padding-bottom: 3px;
|
|
41
|
+
|
|
42
|
+
// Hyperlink dialog
|
|
43
|
+
$de-hyperlink-dlg-margin-top: 0 !default;
|
|
44
|
+
$de-bigger-padding: 16px !default;
|
|
45
|
+
|
|
46
|
+
$search-result-item-padding-top: 12px !default;
|
|
47
|
+
$search-result-item-padding-bottom: 12px !default;
|
|
48
|
+
$de-spellcheck-container-height: 140px !default;
|
|
49
|
+
$de-spellcheck-container-gap: 16px !default;
|
|
50
|
+
$de-para-dlg-heading-font-size: $text-sm !default;
|
|
51
|
+
$de-para-dlg-small-heading-font-size: $text-xs !default;
|
|
52
|
+
$de-para-dlg-heading-font-weight: $font-weight-medium !default;
|
|
53
|
+
$de-insert-spellchecker-height: 360px !default;
|
|
54
|
+
$de-insert-spellchecker-width: 513px !default;
|
|
55
|
+
$de-insert-big-spellchecker-width: 600px !default;
|
|
56
|
+
$de-spellcheck-listview-height: 122px !default;
|
|
57
|
+
$de-para-title-bottom-margin: 0 !default;
|
|
58
|
+
$de-para-dlg-height: auto !default;
|
|
59
|
+
$de-para-dlg-width: auto !default;
|
|
60
|
+
$de-toc-dlg-right-container-left: 1px !default;
|
|
61
|
+
$de-toc-dlg-heading-font-size: $text-sm !default;
|
|
62
|
+
$de-toc-dlg-heading-font-weight: $font-weight-medium !default;
|
|
63
|
+
$de-toc-dlg-main-heading-font-weight: $font-weight-medium !default;
|
|
64
|
+
$de-toc-title-bottom-margin: 8px !default;
|
|
65
|
+
$de-title-bottom-margin: 8px !default;
|
|
66
|
+
$de-toc-dlg-height: 454px !default;
|
|
67
|
+
$de-toc-dlg-container-margin: 6px !default;
|
|
68
|
+
$de-toc-dlg-width: 550px !default;
|
|
69
|
+
$de-toc-sub-container-bottom: 8px !default;
|
|
70
|
+
$de-toc-reset-button-margin-top: 10px !default;
|
|
71
|
+
$de-toc-modify-button-margin-top: 10px !default;
|
|
72
|
+
$de-toc-list-view-font-size: $text-xs !default;
|
|
73
|
+
$de-toc-list-view-height: 186px !default;
|
|
74
|
+
$de-toc-dlg-sub-margin: 5px 15px 5px 15px !default;
|
|
75
|
+
$de-toc-dlg-style-label-left: 42px !default;
|
|
76
|
+
$de-toc-dlg-style-label-top: 35px !default;
|
|
77
|
+
$de-para-sub-title-bottom-margin: 4px !default;
|
|
78
|
+
$de-para-sub-title-top-margin: 0 !default;
|
|
79
|
+
$de-para-sub-container-bottom: 20px !default;
|
|
80
|
+
$de-hyperlink-dlg-margin-bottom: 3px !default;
|
|
81
|
+
$de-hyperlink-dlg-input-bottom: 8px !default;
|
|
82
|
+
$de-hyperlink-dlg-input-width: 240px !default;
|
|
83
|
+
$de-hyperlink-dlg-input-height: 32px !default;
|
|
84
|
+
$de-font-dlg-header-margin-bottom: 4px !default;
|
|
85
|
+
$de-font-dlg-main-header-margin-right: 17px !default;
|
|
86
|
+
$e-de-font-dlg-cb-margin-right: 12px !default;
|
|
87
|
+
$de-dropdown-margin-right: 20px !default;
|
|
88
|
+
$de-op-padding-left: 12px !default;
|
|
89
|
+
$de-op-padding-top: 12px !default;
|
|
90
|
+
$de-op-header-font-family: inherit !default;
|
|
91
|
+
$de-op-header-font-weight: $font-weight-medium !default;
|
|
92
|
+
$de-op-header-bottm-margin: 1px !default;
|
|
93
|
+
$de-op-header-padding-top: 12px !default;
|
|
94
|
+
$de-op-tab-height: 40px !default;
|
|
95
|
+
$de-layout-margin-dlg-padding-top: 10px !default;
|
|
96
|
+
$de-op-close-icon-width: 20px !default;
|
|
97
|
+
$de-op-close-button-top: 18px !default;
|
|
98
|
+
$de-cell-margin-dia-common-font: $text-xs !default;
|
|
99
|
+
$de-cell-margin-dia-common-margin-bottom: 4px !default;
|
|
100
|
+
$de-cell-margin-dia-common-margin-top: 0 !default;
|
|
101
|
+
$de-cell-margin-dia-common-width: 150px !default;
|
|
102
|
+
$de-cell-margin-dia-options-font: $text-sm !default;
|
|
103
|
+
$de-border-dlg-border-label-fontsize: $text-sm !default;
|
|
104
|
+
$de-border-dlg-border-label-fontweight: 500 !default;
|
|
105
|
+
$de-border-dlg-border-preview-div-width: 1px !default;
|
|
106
|
+
$de-border-dlg-border-label-paddingbottom: 16px !default;
|
|
107
|
+
$de-border-dlg-setting-label-fontsize: $text-xs !default;
|
|
108
|
+
$de-border-dlg-setting-label-paddingbottom: 4px !default;
|
|
109
|
+
$de-border-dlg-settinglabels-fontsize: 13 !default;
|
|
110
|
+
$de-border-dlg-preview-inside-divs-opacity: .54 !default;
|
|
111
|
+
$de-table-align-border-width: 1px !default;
|
|
112
|
+
$de-table-align-height: 60px !default;
|
|
113
|
+
$de-table-align-margin-right: 11px !default;
|
|
114
|
+
$de-table-align-width: 60px !default;
|
|
115
|
+
$de-table-alignment-label-font-size: $text-xs !default;
|
|
116
|
+
$de-table-alignment-label-margin-top: 4px !default;
|
|
117
|
+
$de-table-alignment-label-margin-left: 62px !default;
|
|
118
|
+
$de-table-separator-line-height: 1px !default;
|
|
119
|
+
$de-table-separator-line-left: 1px !default;
|
|
120
|
+
$de-table-separator-line-opacity: .12 !default;
|
|
121
|
+
$de-table-separtor-line-top: 59px !default;
|
|
122
|
+
$de-table-separtor-line-top-touch: 62px !default;
|
|
123
|
+
$de-table-separator-line-width: 100% !default;
|
|
124
|
+
$de-table-options-font-size: $text-xs !default;
|
|
125
|
+
$de-table-options-padding-bottom: 8px !default;
|
|
126
|
+
$de-table-options-padding-top: 16px !default;
|
|
127
|
+
$de-page-setup-dlg-width: 380px !default;
|
|
128
|
+
$de-page-setup-dlg-height: auto !default;
|
|
129
|
+
$de-page-setup-ppty-tab-border: 0 !default;
|
|
130
|
+
$de-page-setup-sub-container-bottom: 12px !default;
|
|
131
|
+
$de-page-setup-sub-container-port-bottom: 0 !default;
|
|
132
|
+
$de-page-setup-dlg-left-container-top: 0 !default;
|
|
133
|
+
$de-page-setup-dlg-right-container-top: 0 !default;
|
|
134
|
+
$de-page-setup-margin-dia-common-font: $text-xs !default;
|
|
135
|
+
$de-page-setup-margin-dia-common-margin-bottom: 2px !default;
|
|
136
|
+
$de-page-setup-margin-dia-common-margin-top: 16px !default;
|
|
137
|
+
$de-page-setup-common-margin-top: 12px !default;
|
|
138
|
+
$de-page-setup-sub-container-height-style: auto !default;
|
|
139
|
+
$de-page-setup-dlg-sub-label-font-size: $text-sm !default;
|
|
140
|
+
$de-page-setup-dlg-sub-label-font-weight: $font-weight-medium !default;
|
|
141
|
+
$de-page-setup-dlg-orientation-prop-margin-top: 6px !default;
|
|
142
|
+
$de-page-setup-sub-size-container-height: 73px !default;
|
|
143
|
+
$de-page-setup-sub-size-container-bottom: 12px !default;
|
|
144
|
+
$de-page-setup-layout-sub-container-height: auto !default;
|
|
145
|
+
$de-page-setup-layout-sub-container-bottom: 12px !default;
|
|
146
|
+
$de-page-setup-layout-sub-container-top: 12px !default;
|
|
147
|
+
$de-page-setup-checkbox-label-font-size: $text-xs !default;
|
|
148
|
+
$de-page-setup-dlg-layout-container-top: 0 !default;
|
|
149
|
+
$de-list-dlg-header-font-weight: $font-weight-medium !default;
|
|
150
|
+
$de-list-dlg-header-margin-bottom: 8px !default;
|
|
151
|
+
$de-list-dlg-header-margin-top: 12px !default;
|
|
152
|
+
$de-tbl-dlg-footer: 23px !default;
|
|
153
|
+
$de-row-ht-padding-top: 13px !default;
|
|
154
|
+
$de-cell-width-padding-top: 9px !default;
|
|
155
|
+
$de-tbl-opt-btn-left: 440px !default;
|
|
156
|
+
$de-tbl-opt-btn-top: 285px !default;
|
|
157
|
+
$de-list-dlg-subheader-font-weight: $font-weight-medium !default;
|
|
158
|
+
$de-list-dlg-subheader-margin-bottom: 4px !default;
|
|
159
|
+
$de-list-dlg-subheader-margin-top: 12px !default;
|
|
160
|
+
$e-de-list-subdiv-margin-top: 40px !default;
|
|
161
|
+
$e-de-list-div-margin-top: 36px !default;
|
|
162
|
+
$de-ok-insert-button-margin-right: 8px !default;
|
|
163
|
+
$de-options-buttons-left: 339px !default;
|
|
164
|
+
$de-tooltip-shadow: 0 3px 8px 0 rgba(0, 0, 0, .26) !default;
|
|
165
|
+
$de-dlg-btn-height: 32px !default;
|
|
166
|
+
$de-dlg-header-font-size: $text-base !default;
|
|
167
|
+
$de-dlg-header-font-weight: $font-weight-medium !default;
|
|
168
|
+
$de-dlg-header-margin-top: 4px !default;
|
|
169
|
+
$de-dlg-footer-margin-top: 8px !default;
|
|
170
|
+
$de-dlg-footer-padding-top: 7px !default;
|
|
171
|
+
$de-dlg-header-content-padding: 15px 15px 5px 15px !default;
|
|
172
|
+
$de-dlg-content-padding: 20px 15px 5px 15px !default;
|
|
173
|
+
$de-dlg-footer-padding-right: 15px !default;
|
|
174
|
+
$de-dlg-footer-content-padding-top: 1px !default;
|
|
175
|
+
$de-dlg-close-font-size: $text-xs !default;
|
|
176
|
+
$e-de-dlg-border-radius: 1px !default;
|
|
177
|
+
$de-dlg-close-icon-left: -1px !default;
|
|
178
|
+
$de-dlg-clr-pkr-top: 160px !default;
|
|
179
|
+
$de-op-result-container-margin-top: 12px !default;
|
|
180
|
+
$de-op-tab-header-margin-bottom: 0 !default;
|
|
181
|
+
$de-op-tab-header-margin-top: 0 !default;
|
|
182
|
+
$de-icon-table-row-above-top: 10px !default;
|
|
183
|
+
$de-icon-table-row-below-top: 49px !default;
|
|
184
|
+
$de-icon-table-column-left-top: 89px !default;
|
|
185
|
+
$de-icon-table-column-right-top: 127px !default;
|
|
186
|
+
$de-icon-table-delete-top: 10px !default;
|
|
187
|
+
$de-icon-table-row-delete-top: 49px !default;
|
|
188
|
+
$de-icon-table-column-delete-top: 89px !default;
|
|
189
|
+
$de-cell-options-left: 336px !default;
|
|
190
|
+
$de-cell-options-top: 272px !default;
|
|
191
|
+
$de-font-color-margin-bottom: 8px !default;
|
|
192
|
+
$de-font-color-margin-top: 12px !default;
|
|
193
|
+
$de-font-dlg-effect-margin-left: 15px !default;
|
|
194
|
+
$de-font-dlg-margin-right: 10px !default;
|
|
195
|
+
$de-font-dlg-color-margin-right: 8px !default;
|
|
196
|
+
$de-font-dlg-color-margin-top: 5px !default;
|
|
197
|
+
$de-font-content-checkbox-left: 46px !default;
|
|
198
|
+
$de-font-content-checkbox-left-bg: 64px !default;
|
|
199
|
+
$de-font-content-checkbox-right: 41px !default;
|
|
200
|
+
$de-font-content-checkbox-right-bg: 64px !default;
|
|
201
|
+
$de-font-checkbox-left: 58px !default;
|
|
202
|
+
$de-font-dlg-margin-top: 12px !default;
|
|
203
|
+
$de-table-container-margin-top: 11px !default;
|
|
204
|
+
$de-table-header-padding-top: 0 !default;
|
|
205
|
+
$de-table-subheader-padding-top: 16px !default;
|
|
206
|
+
$de-cell-subheader-top: 57px !default;
|
|
207
|
+
$de-cell-margin-header-left: -26px !default;
|
|
208
|
+
$de-cell-margin-header-top: 274px !default;
|
|
209
|
+
$de-tbl-margin-sub-header: 10px !default;
|
|
210
|
+
$de-tbl-btn-separator: 60% !default;
|
|
211
|
+
$de-save-dlg-format-type-padding: 1px !default;
|
|
212
|
+
$de-op-search-tab-content-margin-top: 12px !default;
|
|
213
|
+
$de-op-search-tab-content-margin-top-bigger: 14px !default;
|
|
214
|
+
$de-op-search-text-box-container-width: 275px !default;
|
|
215
|
+
$de-font-dlg-height: 245px !default;
|
|
216
|
+
$de-font-dlg-width: max-content !default;
|
|
217
|
+
$de-hyper-link-height: auto !default;
|
|
218
|
+
$de-hyper-link-width: 240px !default;
|
|
219
|
+
$de-insert-table-height: auto !default;
|
|
220
|
+
$de-insert-table-width: auto !default;
|
|
221
|
+
$de-insert-footnote-height: auto !default;
|
|
222
|
+
$de-insert-footnote-width: 280px !default;
|
|
223
|
+
$de-insert-table-title-bottom-margin: 4px !default;
|
|
224
|
+
$de-insert-table-title-top-margin: 0 !default;
|
|
225
|
+
$de-insert-table-dlg-input-bottom: 16px !default;
|
|
226
|
+
$de-list-dlg-height: 405px !default;
|
|
227
|
+
$de-list-dlg-width: 400px !default;
|
|
228
|
+
$de-save-dlg-height: 135px !default;
|
|
229
|
+
$de-save-dlg-width: 230px !default;
|
|
230
|
+
$de-table-ppty-dlg-height: 367px !default;
|
|
231
|
+
$de-table-ppty-dlg-width: 430px !default;
|
|
232
|
+
$de-table-border-shading-dlg-height: 438px !default;
|
|
233
|
+
$de-table-border-shading-dlg-width: 440px !default;
|
|
234
|
+
$de-table-cell-margin-dlg-height: auto !default;
|
|
235
|
+
$de-table-cell-margin-dlg-width: 412px !default;
|
|
236
|
+
$de-table-options-dlg-height: auto !default;
|
|
237
|
+
$de-table-options-dlg-width: 395px !default;
|
|
238
|
+
$de-table-border-none-top: 30px !default;
|
|
239
|
+
$de-table-border-box-top: 95px !default;
|
|
240
|
+
$de-table-border-all-top: 165px !default;
|
|
241
|
+
$de-table-border-custom-top: 235px !default;
|
|
242
|
+
$de-table-shading-preview-top: 385px !default;
|
|
243
|
+
$de-checkbox-height: 18px !default;
|
|
244
|
+
$de-checkbox-line-height: $leading-normal !default;
|
|
245
|
+
$de-checkbox-width: 18px !default;
|
|
246
|
+
$de-op-dlg-footer-margin-top: 18px !default;
|
|
247
|
+
$de-op-dlg-footer-margin-top-bigger: 16px !default;
|
|
248
|
+
$de-op-search-input-width: 204px !default;
|
|
249
|
+
$de-op-replacewith-width: 98% !default;
|
|
250
|
+
$de-table-ppty-tab-border: 0 !default;
|
|
251
|
+
$de-list-info-btn-padding: 3px 0 0 0 !default;
|
|
252
|
+
$de-table-border-dlg-alignments-left: 48% !default;
|
|
253
|
+
$de-table-border-preview-top: 59% !default;
|
|
254
|
+
$de-table-border-dlg-alignments-transform: translate(-50%, -50%) !default;
|
|
255
|
+
$de-style-dialog-height: 352px !default;
|
|
256
|
+
$de-style-dialog-width: 443px !default;
|
|
257
|
+
$de-style-heading-font-size: $text-sm !default;
|
|
258
|
+
$de-style-heading-font-weight: $font-weight-medium !default;
|
|
259
|
+
$de-style-dialog-style-ppties-bottom-margin: 12px !default;
|
|
260
|
+
$de-style-dialog-style-formatting-bottom-margin: 8px !default;
|
|
261
|
+
$de-style-paragraph-width: 182px !default;
|
|
262
|
+
$de-style-name-input-top: 109px !default;
|
|
263
|
+
$de-style-type-div-top: 155px !default;
|
|
264
|
+
$de-style-based-on-div-top: 202px !default;
|
|
265
|
+
$de-style-paragraph-div-top: 249px !default;
|
|
266
|
+
$de-style-font-margin-right: 20px !default;
|
|
267
|
+
$de-style-font-margin-left: 20px !default;
|
|
268
|
+
$de-style-para-margin-right: 20px !default;
|
|
269
|
+
$de-style-para-margin-left: 20px !default;
|
|
270
|
+
$de-style-list-margin-left: 20px !default;
|
|
271
|
+
$de-style-template-top: 410px !default;
|
|
272
|
+
$de-style-dialog-style-left-div-right-margin: 20px !default;
|
|
273
|
+
$de-style-dialog-option-div-bottom-margin: 12px !default;
|
|
274
|
+
$de-style-dialog-style-name-type-div-bottom-margin: 20px !default;
|
|
275
|
+
$de-style-dialog-style-based-para-div-bottom-margin: 12px !default;
|
|
276
|
+
$de-style-dialog-label-bottom-margin: 8px !default;
|
|
277
|
+
$e-de-style-input-text-height: 32px !default;
|
|
278
|
+
$de-font-checkbox-label-font-size: $text-sm !default;
|
|
279
|
+
$de-op-icon-font-size: $text-sm !default;
|
|
280
|
+
$de-op-close-icon-size: $text-sm !default;
|
|
281
|
+
$de-op-close-icon-margin-left: -4px !default;
|
|
282
|
+
$de-table-alignment-font-size: $text-5xl !default;
|
|
283
|
+
$de-table-alignment-top: 126px !default;
|
|
284
|
+
$de-tablecell-alignment-font-size: $text-5xl !default;
|
|
285
|
+
$de-border-none-setting-font-size: $text-5xl !default;
|
|
286
|
+
$de-border-setting-font-size: 46px !default;
|
|
287
|
+
$de-td-table-border-top: 2px !default;
|
|
288
|
+
$de-hyperlink-bookmark-check-margin-top: 8px !default;
|
|
289
|
+
$de-table-ppty-dlg-measure-div-margin-left: 12px !default;
|
|
290
|
+
$de-table-ppty-dlg-measure-div-margin-top: 6px !default;
|
|
291
|
+
$de-table-ppty-dlg-left-indent-container-margin-right: 110px !default;
|
|
292
|
+
$de-tbl-dlg-border-btn-margin-right: 120px !default;
|
|
293
|
+
$de-tbl-dlg-border-btn-margin-top: 24px !default;
|
|
294
|
+
$de-tbl-dlg-border-btn-margin-bottom: 20px !default;
|
|
295
|
+
$de-table-subheader-div-margin-top: -40px !default;
|
|
296
|
+
$de-table-subheader-div-margin-right: 140px !default;
|
|
297
|
+
$de-table-ppty-dlg-row-height-label-margin-top: -62px !default;
|
|
298
|
+
$de-table-ppty-dlg-row-height-label-margin-right: 184px !default;
|
|
299
|
+
$de-table-ppty-dlg-preferred-width-margin-top: 6px !default;
|
|
300
|
+
$de-table-ppty-dlg-preferred-width-margin-left: 12px !default;
|
|
301
|
+
$de-table-ppty-options-break-margin-bottom: 8px !default;
|
|
302
|
+
$de-table-ppty-dlg-table-header-padding-left: 15px !default;
|
|
303
|
+
$de-table-ppty-dlg-table-header-padding: 12px !default;
|
|
304
|
+
$de-table-ppty-dlg-cell-tab-measure-label-margin-right: 190px !default;
|
|
305
|
+
$de-table-ppty-dlg-cell-tab-measure-label-margin-top: -58px !default;
|
|
306
|
+
$de-border-dlg-border-label-font-weight: 500 !default;
|
|
307
|
+
$de-toc-dlg-build-table-margin-top: 12px !default;
|
|
308
|
+
$de-toc-styles-table-div-margin-top: 10px !default;
|
|
309
|
+
$de-toc-table-div-width: 100% !default;
|
|
310
|
+
$de-toc-dlg-right-sub-container-margin-right: 2px !default;
|
|
311
|
+
$de-toc-dlg-styles-margin-bottom: 11px !default;
|
|
312
|
+
$de-toc-dlg-styles-margin-left: 38px !default;
|
|
313
|
+
$de-toc-dlg-styles-margin-top: 12px !default;
|
|
314
|
+
$de-toc-list-view-width: 100% !default;
|
|
315
|
+
$de-toc-table-list-view-height: 183px !default;
|
|
316
|
+
$de-toc-styles-table-div-border-radius: 3px !default;
|
|
317
|
+
$de-toc-modify-button-margin-left: 156px !default;
|
|
318
|
+
$de-toc-dlg-outline-levels-width: 150px !default;
|
|
319
|
+
$de-bookmark-content-margin-top: 20px !default;
|
|
320
|
+
$de-bookmark-textbox-margin-bottom: 8px !default;
|
|
321
|
+
$de-bookmark-textbox-height: 32px !default;
|
|
322
|
+
$de-bookmark-custom-btn-width: 70px !default;
|
|
323
|
+
$de-bookmark-custom-btn-height: 32px !default;
|
|
324
|
+
$de-bookmark-button-div-top-position: 0 !default;
|
|
325
|
+
$de-toc-dlg-style-input-margin-bottom: 3px !default;
|
|
326
|
+
$de-toc-dlg-style-input-margin-left: 38px !default;
|
|
327
|
+
$de-toc-dlg-style-input-width: 210px !default;
|
|
328
|
+
$de-toc-list-view-margin-left: 3px !default;
|
|
329
|
+
$e-de-toc-table-div-height: 143px !default;
|
|
330
|
+
$de-toc-dlg-showlevel-div-margin-left: 276px !default;
|
|
331
|
+
$de-toc-dlg-show-level-div-margin-left: 275px !default;
|
|
332
|
+
$de-op-input-group-height: auto !default;
|
|
333
|
+
$de-op-tab-header-padding-left: 15px !default;
|
|
334
|
+
$de-op-tab-header-padding: 12px !default;
|
|
335
|
+
$de-list-dlg-font-margin-left: 1px !default;
|
|
336
|
+
$de-bookmark-list-view-border-radius: 4px !default;
|
|
337
|
+
$de-bookmark-listview-margin-right: 12px !default;
|
|
338
|
+
$de-bookmark-dlgfields-margin-bottom: 4px !default;
|
|
339
|
+
$de-table-ppty-dlg-tabs-height: 280px !default;
|
|
340
|
+
$de-toc-dlg-toc-level-margin-left: 36px !default;
|
|
341
|
+
$de-table-options-font-weight: $font-weight-medium !default;
|
|
342
|
+
$de-cell-width-top-margin-left: 20px !default;
|
|
343
|
+
$de-cell-width-top-margin-top: -23px !default;
|
|
344
|
+
$de-table-cell-subheader-div-margin-right: 125px !default;
|
|
345
|
+
$de-table-cell-subheader-div-margin-top: -37px !default;
|
|
346
|
+
$e-de-table-ppty-dlg-left-indent-container-bottom: 5px !default;
|
|
347
|
+
$de-cell-options-rtl: 123px !default;
|
|
348
|
+
$de-font-checkbox-ltr: 58px !default;
|
|
349
|
+
$de-font-content-label-width: 90px !default;
|
|
350
|
+
$de-font-label-width: 125px !default;
|
|
351
|
+
$de-font-label-width-bg: 154px !default;
|
|
352
|
+
$de-toc-dlg-right-sub-container-margin-top: 122px !default;
|
|
353
|
+
$e-de-list-div-margin-top-rtl: -125px !default;
|
|
354
|
+
$e-de-list-subdiv-margin-top-rtl: -121px !default;
|
|
355
|
+
$de-toc-modify-button-margin-rtl: 156px !default;
|
|
356
|
+
$de-hght-type-top: -22px !default;
|
|
357
|
+
$de-bigger-style-button-height: 37px !default;
|
|
358
|
+
$de-bigger-style-button-width: 88px !default;
|
|
359
|
+
$de-table-border-margin-right: 15px !default;
|
|
360
|
+
$de-table-border-margin-top: 5px !default;
|
|
361
|
+
$de-table-dlg-separator-line-top: 5px !default;
|
|
362
|
+
$de-toggle-btn-border: none !default;
|
|
363
|
+
$de-btn-font-size: $text-sm;
|
|
364
|
+
$e-de-style-input-text-height-bigger: 40px !default;
|
|
365
|
+
$de-bookmark-list-margin-right: 12px !default;
|
|
366
|
+
$de-bkmrk-list-margin-left: 12px !default;
|
|
367
|
+
$de-paradialog-dir-div: .4 !default;
|
|
368
|
+
$de-cmt-opt-size: 18px !default;
|
|
369
|
+
$de-cmt-post-btn-ht: 32px !default;
|
|
370
|
+
$de-cmt-post-btn-wt: 38px !default;
|
|
371
|
+
$de-cmt-post-btn-wt-big: 50px !default;
|
|
372
|
+
$de-cmt-post-btn-ht-big: auto !default;
|
|
373
|
+
$de-reply-footer-margin-top: 8px !default;
|
|
374
|
+
$de-rp-btn-enforce-margin: 12px !default;
|
|
375
|
+
$de-rp-btn-enforce-padding-big: 10px !default;
|
|
376
|
+
$e-de-cmt-textarea-padding-top: 7px !default;
|
|
377
|
+
$e-de-cmt-textarea-padding-top-big: 4px !default;
|
|
378
|
+
$de-dlg-table-options-content-div: 504px !default;
|
|
379
|
+
$dialog-headericon-border-radius: 50% !default;
|
|
380
|
+
$e-de-close-icon-cursor: default !default;
|
|
381
|
+
$de-check-exactnumbr-width: 130px !default;
|
|
382
|
+
$de-tc-btn-padding: 4px !default;
|
|
383
|
+
$de-tc-tlbr-padding-btm: 3px !default;
|
|
384
|
+
$de-font-style-margin: 8px !default;
|
|
385
|
+
$de-font-dlg-font-size: $text-xs !default;
|
|
386
|
+
$de-font-dlg-width-big: max-content !default;
|
|
387
|
+
$de-tbl-measure-lbl-font-size: $text-xs !default;
|
|
388
|
+
$de-style-font-size: $text-xs !default;
|
|
389
|
+
$de-toc-lbl-mrgn-left: 0 !default;
|
|
390
|
+
$de-toc-lbl-mrgn-rgt: 0 !default;
|
|
391
|
+
$de-floating-menu-width: 64px !default;
|
|
392
|
+
$de-floating-menu-height: 64px !default;
|
|
393
|
+
$de-floating-menu-padding: 8px 10px 8px 10px !default;
|
|
394
|
+
$de-cmt-container-padding: 0 8px !default;
|
|
395
|
+
$de-cmt-sub-container-margin: 0 !default;
|
|
396
|
+
$de-rply-cmt-sub-container-margin: 12px 8px 0 8px !default;
|
|
397
|
+
$de-cmt-view-mrgn-top: 12px !default;
|
|
398
|
+
$de-ui-floating-menu-padding: 0 !default;
|
|
399
|
+
$de-ui-list-header-presetmenu-min-width: 40px;
|
|
400
|
+
$de-ui-wfloating-menu: 0 8px 8px 0;
|
|
401
|
+
$de-bullet-number-width: 300px;
|
|
402
|
+
$de-rp-content-ln-ht: $leading-normal;
|
|
403
|
+
$de-rp-font-size: $text-xs;
|
|
404
|
+
$de-rp-format-font-size: $text-sm;
|
|
405
|
+
$de-header-font-weight: $font-weight-normal;
|
|
406
|
+
$de-dlg-bkm-fld-fnt-size: $text-xs;
|
|
407
|
+
$de-ff-dlg-hdg-small-mrgn-btm: 4px;
|
|
408
|
+
$de-ff-seperate-div-mrgn-btm: 12px;
|
|
409
|
+
$de-ff-dlg-heading-mrgn-btm: 6px;
|
|
410
|
+
$de-ff-radio-div-mrgn-btm: 16px;
|
|
411
|
+
$de-ff-radio-scnd-div-mrgn-btm: 0;
|
|
412
|
+
$de-fnt-dlg-header-effects-mrgn-btm: 0;
|
|
413
|
+
$de-para-dlg-cs-check-box-mrgn-btm: 0;
|
|
414
|
+
$de-bullet-numbered-dlg-width: 300px;
|
|
415
|
+
$de-bullet-numbered-dlg-height: 172px;
|
|
416
|
+
$de-tbl-indent-lb-fnt-size: $text-xs;
|
|
417
|
+
$de-font-clr-div-mrgn-top: 12px;
|
|
418
|
+
$de-para-dlg-cs-check-box-mrgn-top: 12px;
|
|
419
|
+
$de-insert-footnote-dlg-header-mrg-btm: 12px;
|
|
420
|
+
$de-table-options-dlg-div-mrgn-btm: 16px;
|
|
421
|
+
$de-tbl-indent-lbl-mrgn-btm: 0;
|
|
422
|
+
$de-tbl-indent-lbl-top: 6px;
|
|
423
|
+
$de-cmt-date-fnt-size: $text-xs;
|
|
424
|
+
$de-cmt-author-nme-fnt-size: $text-sm;
|
|
425
|
+
$de-cmt-date-mrgn-top: 8px;
|
|
426
|
+
$de-ff-drpdwn-dlg-scndiv-mrgn-botton: 4px;
|
|
427
|
+
$de-drp-dwn-frst-div-mrgn-btm: 8px;
|
|
428
|
+
$de-ff-dlg-lft-hlf-mrgn-rgt: 12px;
|
|
429
|
+
$de-ff-dlg-lft-hlf-wdth: 50.5%;
|
|
430
|
+
$de-para-dlg-cs-check-box: 12px;
|
|
431
|
+
$de-op-close-button-top: 8px;
|
|
432
|
+
$de-table-row-cell-pdng: 12px;
|
|
433
|
+
$de-table-prop-left-indnt-cntr-pos: 46px;
|
|
434
|
+
$de-avatar-width: 95%;
|
|
435
|
+
$de-op-more-less-mrgn-top: 16px;
|
|
436
|
+
$de-enforce-dlg-title-mrgn-top: 0 !default;
|
|
437
|
+
$de-enforce-dlg-title-fnt-size: $text-xs;
|
|
438
|
+
$de-enforce-btn-mrng-btm: 12px;
|
|
439
|
+
$de-unprotect-dlg-title-fnt-size: $text-xs;
|
|
440
|
+
$de-unprotect-dlg-title-mrgn-btm: 4px;
|
|
441
|
+
$de-user-dlg-textbox-input-mrgn-right: 24px !default;
|
|
442
|
+
$de-user-dlg-list-mrgn-btm: 12px !default;
|
|
443
|
+
$de-user-dlg-user-mrgn-btm: 8px !default;
|
|
444
|
+
$de-trckchanges-inner-mrgn: 0 !default;
|
|
445
|
+
$de-rp-width: 280px !default;
|
|
446
|
+
$de-rp-close-icon-top: -5px;
|
|
447
|
+
$de-rp-btn-enforce-prtct-margin: 0 65px;
|
|
448
|
+
$de-rp-nav-lbl: 0 16px;
|
|
449
|
+
$de-rp-nav-btn-mrgn: 0 24px;
|
|
450
|
+
$de-para-dlg-right-sub-container-top-margin: 0;
|
|
451
|
+
|
|
452
|
+
//New Implementation
|
|
453
|
+
|
|
454
|
+
$de-par-dlg-hdr-weight: 500 !default;
|
|
455
|
+
$de-para-dlg-hdr-margin-bottom: 0 !default;
|
|
456
|
+
$de-para-dlg-hdr-margin-top: 12px !default;
|
|
457
|
+
$de-dlg-heading-opacity: 87% !default;
|
|
458
|
+
$de-para-dlg-right-contaner-top: 0 !default;
|
|
459
|
+
$de-para-dlg-sub-title-bottom-margin: 10px !default;
|
|
460
|
+
$de-para-dlg-sub-title-top-margin: 8px !default;
|
|
461
|
+
$de-para-dlg-rtl-btn-margin-right: 24px !default;
|
|
462
|
+
$de-para-dlg-rtl-btn-font-size: $text-xs !default;
|
|
463
|
+
$de-para-dlg-rtl-btn-width: 100px !default;
|
|
464
|
+
$de-de-rtl-btn-div-e-de-rtl-margin-right: 24px !default;
|
|
465
|
+
$de-de-rtl-btn-div-e-de-rtl-margin-left: 20px !default;
|
|
466
|
+
$de-para-dlg-spacing-div-mrgn-left: 40px !default;
|
|
467
|
+
|
|
468
|
+
// Color variable
|
|
469
|
+
$de-background: $content-bg-color-alt1 !default;
|
|
470
|
+
$search-result-highlight-bg-color: $transparent !default;
|
|
471
|
+
$search-result-hightlight-bdr-clr-hvr: rgba($primary) !default;
|
|
472
|
+
$search-result-hightlight-bdr-clr: rgba($primary) !default;
|
|
473
|
+
$search-icon-bdr-clr: rgba($icon-color-pressed) !default;
|
|
474
|
+
$search-icon-hvr: rgba($border-light) !default;
|
|
475
|
+
$spin-down-bdr-clr: rgba($border-light) !default;
|
|
476
|
+
$spin-down-hvr: rgba($border-light) !default;
|
|
477
|
+
$spin-up-bdr-clr: rgba($border-light) !default;
|
|
478
|
+
$spin-up-hvr: rgba($border-light) !default;
|
|
479
|
+
$de-spellcheck-listview-border-color: rgba($border-light);
|
|
480
|
+
$de-spellcheck-list-width: 100% !default;
|
|
481
|
+
$de-spellcheck-btn-container-width: 100% !default;
|
|
482
|
+
$de-spellcheck-btn-width: 100% !default;
|
|
483
|
+
$de-dlg-heading-main-header: rgba($content-text-color-alt1) !default;
|
|
484
|
+
$de-toc-list-view-border-color: rgba($border) !default;
|
|
485
|
+
$de-op-title-clr: rgba($content-text-color) !default;
|
|
486
|
+
$de-op-icon-color: rgba($icon-color) !default;
|
|
487
|
+
$de-op-close-icon-clr: rgba($icon-color) !default;
|
|
488
|
+
$search-result-hightlight-bdr-item: rgba($border-light) !default;
|
|
489
|
+
$de-table-align-border-color: rgba($border) !default;
|
|
490
|
+
$de-table-separator-line-color: rgba($border) !default;
|
|
491
|
+
$de-tooltip-bg-clr: rgba($content-bg-color) !default;
|
|
492
|
+
$de-op-btn-icon-active-clr: rgba($icon-color, .5) !default;
|
|
493
|
+
$de-op-btn-icon-bg: $transparent !default;
|
|
494
|
+
$de-op-btn-icon-border: $transparent !default;
|
|
495
|
+
$de-input-color: rgba($content-text-color) !default;
|
|
496
|
+
$de-op-bg-color: $content-bg-color-alt1 !default;
|
|
497
|
+
$de-font-color-border: 1px $content-bg-color-alt1 !default;
|
|
498
|
+
$de-font-color-border-radius: 4px !default;
|
|
499
|
+
$de-bullet-list-hover-color: rgba(0, 0, 0, .12) !default;
|
|
500
|
+
$de-number-list-hover-color: rgba(0, 0, 0, .12) !default;
|
|
501
|
+
$de-multilevel-list-hover-color: rgba(0, 0, 0, .12) !default;
|
|
502
|
+
$de-list-dialog-hover-color: rgba(0, 0, 0, .12) !default;
|
|
503
|
+
$de-op-container-messagediv-color: rgba($content-text-color) !default;
|
|
504
|
+
$de-checkbox-wrapper-color: rgba($content-text-color) !default;
|
|
505
|
+
$bookmark-listview-border-color: rgba($border) !default;
|
|
506
|
+
$de-style-btn-active-bg-border-color: rgba($content-bg-color-selected) !default;
|
|
507
|
+
$de-style-btn-active-text-color: rgba($content-text-color) !default;
|
|
508
|
+
$de-style-toggle-btn-color: rgba($border-light) !default;
|
|
509
|
+
$de-table-align-hover-color: rgba($primary) !default;
|
|
510
|
+
$de-table-tab-hover-color: $de-table-align-hover-color !default;
|
|
511
|
+
$de-cell-align-hover-color: $de-table-align-hover-color !default;
|
|
512
|
+
$de-table-align-active-color: rgba($primary) !default;
|
|
513
|
+
$de-table-setting-hover-color: $de-table-align-hover-color !default;
|
|
514
|
+
$de-table-preview-hover-color: $de-table-setting-hover-color !default;
|
|
515
|
+
$de-table-setting-color: $de-table-align-active-color !default;
|
|
516
|
+
$de-table-preview-setting-color: $de-table-setting-color !default;
|
|
517
|
+
$de-border-dlg-border-setting-inside-border: rgba($border-light) !default;
|
|
518
|
+
$de-border-dlg-border-setting-divs-color: rgba($border-light) !default;
|
|
519
|
+
$de-border-dlg-border-preview-divs-color: rgba($icon-color) !default;
|
|
520
|
+
$de-numbering-list-line-color: rgba($icon-color) !default;
|
|
521
|
+
$de-numbering-list-span-color: rgba($icon-color) !default;
|
|
522
|
+
$de-numbering-list-border-color: rgba($border) !default;
|
|
523
|
+
$de-numbering-list-background-color: rgba($content-bg-color) !default;
|
|
524
|
+
$de-style-btn-bg-color: $secondary-bg-color !default;
|
|
525
|
+
$de-prop-btn-icon-clr: rgba($icon-color) !default;
|
|
526
|
+
$de-cmt-selection: rgba($primary) !default;
|
|
527
|
+
$de-cmt-selection-rslv: ($de-cmt-selection, .5) !default;
|
|
528
|
+
$de-cmt-pant-content-font: rgba($content-text-color) !default;
|
|
529
|
+
$de-list-view: rgba($border-light) !default;
|
|
530
|
+
$dialog-btn-bg-color: $transparent !default;
|
|
531
|
+
$dialog-btn-border-color: $transparent !default;
|
|
532
|
+
$dialog-closeicon-btn-active-color: $transparent !default;
|
|
533
|
+
$dialog-closeicon-btn-hover-color: $transparent !default;
|
|
534
|
+
$dialog-active-icon-color: rgba($icon-color-hover) !default;
|
|
535
|
+
$dialog-btn-clr: rgba($icon-color) !default;
|
|
536
|
+
$de-tooltip-color: rgba($content-text-color) !default;
|
|
537
|
+
$de-blink-cursor-clr: rgba($black) !default;
|
|
538
|
+
$de-avatar-clr: rgba($white) !default;
|
|
539
|
+
$de-pane-color-border: rgba($primary) !default;
|
|
540
|
+
$de-rp-btn-bg-color: '';
|
|
541
|
+
$de-rp-btn-nav-box-shadow: $shadow-md !default;
|
|
542
|
+
$de-rp-btn-nav-box-shadow-next: $shadow-md !default;
|
|
543
|
+
$de-rp-btn-enforce-bx-shadow: $de-rp-btn-nav-box-shadow !default;
|
|
544
|
+
$de-track-chngs-sucs-bg-color: rgba($success-bg-color) !default;
|
|
545
|
+
$de-track-chngs-rejct-bg-color: rgba($danger-bg-color) !default;
|
|
546
|
+
$de-op-border-clr: rgba($border-light) !default;
|
|
547
|
+
$de-op-search-txt: rgba($primary) !default;
|
|
548
|
+
$de-border-dlg-border-preview-div-opacity: rgba(0, 0, 0, .54) !default;
|
|
549
|
+
$de-op-btn-icon-hover-clr: rgba(0, 0, 0, .75) !default;
|
|
550
|
+
$de-cmt-separator: rgba($border-light) !default;
|
|
551
|
+
$de-style-btn-color: rgba($icon-color) !default;
|
|
552
|
+
$de-style-btn-hover-color: rgba($white) !default;
|
|
553
|
+
$de-style-dlg-btn-border-color: rgba($border-light) !default;
|
|
554
|
+
$de-style-dlg-btn-bg-color: $content-bg-color-alt3 !default;
|
|
555
|
+
|
|
556
|
+
// Table properties
|
|
557
|
+
$de-row-height-bottom-margin: 4px;
|
|
558
|
+
|
|
559
|
+
//Columns Dialog
|
|
560
|
+
$de-column-presets-font-size: 60px !default;
|
|
@@ -903,6 +903,12 @@
|
|
|
903
903
|
.e-de-bookmark {
|
|
904
904
|
margin-top: 0 !important;
|
|
905
905
|
}
|
|
906
|
+
.e-de-bookmark .e-bookmark-textbox-input {
|
|
907
|
+
box-sizing: border-box !important;
|
|
908
|
+
}
|
|
909
|
+
.e-de-cp-option {
|
|
910
|
+
background: transparent;
|
|
911
|
+
}
|
|
906
912
|
|
|
907
913
|
.e-styles-common {
|
|
908
914
|
padding-top: $de-style-list-top;
|
|
@@ -1740,6 +1746,23 @@
|
|
|
1740
1746
|
.e-de-hyperlink {
|
|
1741
1747
|
width: $de-hyper-link-width;
|
|
1742
1748
|
}
|
|
1749
|
+
@if $skin-name =='Material3'{
|
|
1750
|
+
.e-de-table-border-shading-dlg {
|
|
1751
|
+
.e-de-dlg-row .e-de-dlg-row label {
|
|
1752
|
+
margin-left: 10px;
|
|
1753
|
+
}
|
|
1754
|
+
}
|
|
1755
|
+
.e-de-table-setting-heading {
|
|
1756
|
+
line-height: 22px;
|
|
1757
|
+
letter-spacing: 0.30000001192092896px;
|
|
1758
|
+
}
|
|
1759
|
+
.e-de-rp-btn-enforce {
|
|
1760
|
+
border-radius: 4px !important;
|
|
1761
|
+
}
|
|
1762
|
+
.e-de-track-toolbar .e-de-track-pane-drop-btn, #e-de-menu-option {
|
|
1763
|
+
background: none;
|
|
1764
|
+
}
|
|
1765
|
+
}
|
|
1743
1766
|
.e-bigger {
|
|
1744
1767
|
.e-de-hyperlink {
|
|
1745
1768
|
@if $skin-name=='Material3' {
|
|
@@ -2133,7 +2156,43 @@
|
|
|
2133
2156
|
}
|
|
2134
2157
|
}
|
|
2135
2158
|
|
|
2159
|
+
.e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog {
|
|
2160
|
+
.e-de-style-font-group-button,
|
|
2161
|
+
.e-style-paragraph {
|
|
2162
|
+
button {
|
|
2163
|
+
@if $skin-name =='Material3' {
|
|
2164
|
+
height: 40px !important;
|
|
2165
|
+
width: 44px !important;
|
|
2166
|
+
}
|
|
2167
|
+
}
|
|
2168
|
+
}
|
|
2169
|
+
.e-de-style-font-color-picker button {
|
|
2170
|
+
height: 40px !important;
|
|
2171
|
+
width: auto !important;
|
|
2172
|
+
}
|
|
2173
|
+
}
|
|
2174
|
+
|
|
2136
2175
|
@if $skin-name =='Material3' {
|
|
2176
|
+
.e-bigger {
|
|
2177
|
+
.e-rtl {
|
|
2178
|
+
.e-de-style-font-group-button,
|
|
2179
|
+
.e-de-style-paragraph-indent-group-button,
|
|
2180
|
+
.e-de-style-paragraph-group-button {
|
|
2181
|
+
button {
|
|
2182
|
+
height: 40px !important;
|
|
2183
|
+
width: 44px !important;
|
|
2184
|
+
}
|
|
2185
|
+
}
|
|
2186
|
+
}
|
|
2187
|
+
.e-de-style-font-group-button,
|
|
2188
|
+
.e-de-style-paragraph-indent-group-button,
|
|
2189
|
+
.e-de-style-paragraph-group-button {
|
|
2190
|
+
button {
|
|
2191
|
+
height: 40px !important;
|
|
2192
|
+
width: 44px !important;
|
|
2193
|
+
}
|
|
2194
|
+
}
|
|
2195
|
+
}
|
|
2137
2196
|
.e-de-style-font-group-button button,
|
|
2138
2197
|
.e-de-style-paragraph-indent-group-button button,
|
|
2139
2198
|
.e-de-style-paragraph-group-button button {
|
|
@@ -2145,7 +2204,7 @@
|
|
|
2145
2204
|
}
|
|
2146
2205
|
.e-de-style-bold-button-size {
|
|
2147
2206
|
margin-left: $de-style-dialog-label-bottom-margin;
|
|
2148
|
-
@if $skin-name !='tailwind' and $skin-name !='bootstrap5' and $skin-name != 'FluentUI'
|
|
2207
|
+
@if $skin-name !='tailwind' and $skin-name !='bootstrap5' and $skin-name != 'FluentUI' {
|
|
2149
2208
|
margin-right: 8px;
|
|
2150
2209
|
height: 31px;
|
|
2151
2210
|
}
|
|
@@ -2978,7 +3037,7 @@
|
|
|
2978
3037
|
padding-left: 0px;
|
|
2979
3038
|
padding-right: 0px;
|
|
2980
3039
|
@if $skin-name =='Material3' {
|
|
2981
|
-
padding-top: 10px;
|
|
3040
|
+
padding-top: 10px !important;
|
|
2982
3041
|
}
|
|
2983
3042
|
@else {
|
|
2984
3043
|
padding-top: 5px;
|
|
@@ -2986,6 +3045,11 @@
|
|
|
2986
3045
|
font-size: 13px;
|
|
2987
3046
|
font-weight: $de-header-font-weight;
|
|
2988
3047
|
}
|
|
3048
|
+
@if ($skin-name =='fabric' or $skin-name =='bootstrap') {
|
|
3049
|
+
.e-de-track-toolbar .e-de-track-pane-drop-btn {
|
|
3050
|
+
padding-top: 4px !important;
|
|
3051
|
+
}
|
|
3052
|
+
}
|
|
2989
3053
|
}
|
|
2990
3054
|
.e-toolbar-item.e-de-track-toolbar-overlay.e-template.e-overlay {
|
|
2991
3055
|
opacity: 1;
|
|
@@ -3079,6 +3143,7 @@
|
|
|
3079
3143
|
}
|
|
3080
3144
|
.e-de-cp-option.e-btn.e-icon-btn span {
|
|
3081
3145
|
margin-top: 0px;
|
|
3146
|
+
background: $de-op-bg-color;
|
|
3082
3147
|
}
|
|
3083
3148
|
.e-de-cmt-view:hover {
|
|
3084
3149
|
.e-de-cp-option {
|
|
@@ -3413,7 +3478,7 @@
|
|
|
3413
3478
|
}
|
|
3414
3479
|
.e-de-table-setting-labels-heading {
|
|
3415
3480
|
margin-left: 0;
|
|
3416
|
-
margin-right:
|
|
3481
|
+
margin-right: 10px;
|
|
3417
3482
|
}
|
|
3418
3483
|
}
|
|
3419
3484
|
.e-bigger {
|