@syncfusion/ej2-bootstrap5.3-theme 34.1.30 → 34.1.32
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/package.json +2 -2
- package/styles/button/_mixin.scss +1 -0
- package/styles/document-editor/_theme.scss +26 -0
- package/styles/document-editor/document-editor-lite.css +21 -0
- package/styles/document-editor/document-editor.css +21 -0
- package/styles/grid/_theme.scss +1 -1
- package/styles/grid/grid-lite.css +1 -1
- package/styles/grid/grid.css +1 -1
- package/styles/inline-ai-assist/_bootstrap5.3-definition.scss +3 -2
- package/styles/inline-ai-assist/_layout.scss +1 -0
- package/styles/inline-ai-assist/_theme.scss +4 -0
- package/styles/inline-ai-assist/inline-ai-assist-lite.css +7 -3
- package/styles/inline-ai-assist/inline-ai-assist.css +7 -3
- package/styles/pivotview/_theme.scss +2 -2
- package/styles/pivotview/pivotview-lite.css +2 -2
- package/styles/pivotview/pivotview.css +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncfusion/ej2-bootstrap5.3-theme",
|
|
3
|
-
"version": "34.1.
|
|
3
|
+
"version": "34.1.32",
|
|
4
4
|
"description": "A modern JavaScript UI toolkit that has been built from the ground up to be lightweight, responsive, modular and touch friendly. It is written in TypeScript and has no external dependencies.",
|
|
5
5
|
"author": "Syncfusion Inc.",
|
|
6
6
|
"license": "SEE LICENSE IN license",
|
|
@@ -16,5 +16,5 @@
|
|
|
16
16
|
"url": "https://github.com/syncfusion/ej2-javascript-ui-controls"
|
|
17
17
|
},
|
|
18
18
|
"typings": "index.d.ts",
|
|
19
|
-
"_id": "@syncfusion/ej2-bootstrap5.3-theme@34.1.
|
|
19
|
+
"_id": "@syncfusion/ej2-bootstrap5.3-theme@34.1.32"
|
|
20
20
|
}
|
|
@@ -362,6 +362,7 @@
|
|
|
362
362
|
background: $btn-outline-disabled-bgcolor !important; /* stylelint-disable-line declaration-no-important */
|
|
363
363
|
border-color: $btn-outline-disabled-border-color !important; /* stylelint-disable-line declaration-no-important */
|
|
364
364
|
color: $btn-outline-disabled-color !important; /* stylelint-disable-line declaration-no-important */
|
|
365
|
+
outline: none !important; /* stylelint-disable-line declaration-no-important */
|
|
365
366
|
}
|
|
366
367
|
@else if $skin-name == 'tailwind3' {
|
|
367
368
|
border: 1px solid $secondary-border-color-disabled;
|
|
@@ -1383,6 +1383,32 @@
|
|
|
1383
1383
|
margin-bottom: $de-spellcheck-container-gap;
|
|
1384
1384
|
display: flex;
|
|
1385
1385
|
}
|
|
1386
|
+
.e-de-loading-dots::after {
|
|
1387
|
+
content: '';
|
|
1388
|
+
animation: e-de-loading-dots-animation 1.5s steps(4, end) infinite;
|
|
1389
|
+
}
|
|
1390
|
+
|
|
1391
|
+
@keyframes e-de-loading-dots-animation {
|
|
1392
|
+
0% {
|
|
1393
|
+
content: '';
|
|
1394
|
+
}
|
|
1395
|
+
|
|
1396
|
+
25% {
|
|
1397
|
+
content: '.';
|
|
1398
|
+
}
|
|
1399
|
+
|
|
1400
|
+
50% {
|
|
1401
|
+
content: '..';
|
|
1402
|
+
}
|
|
1403
|
+
|
|
1404
|
+
75% {
|
|
1405
|
+
content: '...';
|
|
1406
|
+
}
|
|
1407
|
+
|
|
1408
|
+
100% {
|
|
1409
|
+
content: '';
|
|
1410
|
+
}
|
|
1411
|
+
}
|
|
1386
1412
|
.e-dlg-spellcheck-listitem {
|
|
1387
1413
|
font-size: $de-spellcheck--listitem-font-size !important;
|
|
1388
1414
|
}
|
|
@@ -2023,6 +2023,27 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2023
2023
|
display: -ms-flexbox;
|
|
2024
2024
|
display: flex;
|
|
2025
2025
|
}
|
|
2026
|
+
.e-de-loading-dots::after {
|
|
2027
|
+
content: "";
|
|
2028
|
+
animation: e-de-loading-dots-animation 1.5s steps(4, end) infinite;
|
|
2029
|
+
}
|
|
2030
|
+
@keyframes e-de-loading-dots-animation {
|
|
2031
|
+
0% {
|
|
2032
|
+
content: "";
|
|
2033
|
+
}
|
|
2034
|
+
25% {
|
|
2035
|
+
content: ".";
|
|
2036
|
+
}
|
|
2037
|
+
50% {
|
|
2038
|
+
content: "..";
|
|
2039
|
+
}
|
|
2040
|
+
75% {
|
|
2041
|
+
content: "...";
|
|
2042
|
+
}
|
|
2043
|
+
100% {
|
|
2044
|
+
content: "";
|
|
2045
|
+
}
|
|
2046
|
+
}
|
|
2026
2047
|
.e-dlg-spellcheck-listitem {
|
|
2027
2048
|
font-size: 15px !important;
|
|
2028
2049
|
}
|
|
@@ -2023,6 +2023,27 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2023
2023
|
display: -ms-flexbox;
|
|
2024
2024
|
display: flex;
|
|
2025
2025
|
}
|
|
2026
|
+
.e-de-loading-dots::after {
|
|
2027
|
+
content: "";
|
|
2028
|
+
animation: e-de-loading-dots-animation 1.5s steps(4, end) infinite;
|
|
2029
|
+
}
|
|
2030
|
+
@keyframes e-de-loading-dots-animation {
|
|
2031
|
+
0% {
|
|
2032
|
+
content: "";
|
|
2033
|
+
}
|
|
2034
|
+
25% {
|
|
2035
|
+
content: ".";
|
|
2036
|
+
}
|
|
2037
|
+
50% {
|
|
2038
|
+
content: "..";
|
|
2039
|
+
}
|
|
2040
|
+
75% {
|
|
2041
|
+
content: "...";
|
|
2042
|
+
}
|
|
2043
|
+
100% {
|
|
2044
|
+
content: "";
|
|
2045
|
+
}
|
|
2046
|
+
}
|
|
2026
2047
|
.e-dlg-spellcheck-listitem {
|
|
2027
2048
|
font-size: 15px !important;
|
|
2028
2049
|
}
|
package/styles/grid/_theme.scss
CHANGED
|
@@ -3699,7 +3699,7 @@
|
|
|
3699
3699
|
background: linear-gradient(0deg, var(--color-sf-table-bg-color-selected), var(--color-sf-table-bg-color-selected)), linear-gradient(0deg, var(--color-sf-content-bg-color), var(--color-sf-content-bg-color));
|
|
3700
3700
|
color: var(--color-sf-content-bg-color-selected);
|
|
3701
3701
|
}
|
|
3702
|
-
.e-grid td:hover.e-cellselectionbackground {
|
|
3702
|
+
.e-grid.e-gridhover td:hover.e-cellselectionbackground {
|
|
3703
3703
|
background: rgb(214, 214, 214);
|
|
3704
3704
|
}
|
|
3705
3705
|
.e-grid .e-filterbarcell,
|
package/styles/grid/grid.css
CHANGED
|
@@ -3699,7 +3699,7 @@
|
|
|
3699
3699
|
background: linear-gradient(0deg, var(--color-sf-table-bg-color-selected), var(--color-sf-table-bg-color-selected)), linear-gradient(0deg, var(--color-sf-content-bg-color), var(--color-sf-content-bg-color));
|
|
3700
3700
|
color: var(--color-sf-content-bg-color-selected);
|
|
3701
3701
|
}
|
|
3702
|
-
.e-grid td:hover.e-cellselectionbackground {
|
|
3702
|
+
.e-grid.e-gridhover td:hover.e-cellselectionbackground {
|
|
3703
3703
|
background: rgb(214, 214, 214);
|
|
3704
3704
|
}
|
|
3705
3705
|
.e-grid .e-filterbarcell,
|
|
@@ -6,7 +6,7 @@ $inline-ai-assist-content-padding: 8px 8px 12px 8px !default;
|
|
|
6
6
|
$inline-ai-assist-content-border-radius: 8px 8px 0 0 !default;
|
|
7
7
|
$inline-ai-assist-response-line-height: 22px !default;
|
|
8
8
|
$inline-ai-assist-response-font-size: 14px !default;
|
|
9
|
-
$inline-ai-assist-tbar-btn-padding: 0
|
|
9
|
+
$inline-ai-assist-tbar-btn-padding: 0 4px !default;
|
|
10
10
|
$inline-ai-assist-footer-padding: 5px 0 5px 5px !default;
|
|
11
11
|
$inline-ai-assist-stop-line-height: 14px !default;
|
|
12
12
|
$inline-ai-assist-stop-font-size: 14px !default;
|
|
@@ -25,8 +25,9 @@ $inline-ai-assist-send-font-size: 14px !default;
|
|
|
25
25
|
$inline-ai-assist-popup-border: 1px solid $border !default;
|
|
26
26
|
$inline-ai-assist-response-text-color: $flyout-text-color !default;
|
|
27
27
|
$inline-ai-assist-textarea-placeholder-color: $placeholder-text-color !default;
|
|
28
|
+
$inline-ai-assist-textarea-color: $content-text-color !default;
|
|
28
29
|
$inline-ai-assist-footer-focused-border-color: rgba(97, 97, 97, 1) !default;
|
|
29
|
-
$inline-ai-assist-send-color: $
|
|
30
|
+
$inline-ai-assist-send-color: $icon-color !default;
|
|
30
31
|
$inline-ai-assist-send-disabled-color: $secondary-bg-color-disabled !default;
|
|
31
32
|
$inline-ai-assist-content-bg: $flyout-bg-color !default;
|
|
32
33
|
$inline-ai-assist-popup-box-shadow: $shadow-lg !default;
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
cursor: pointer;
|
|
55
55
|
}
|
|
56
56
|
.e-inlineaiassist .e-toolbar .e-toolbar-items .e-tbar-btn:hover, .e-inlineaiassist .e-toolbar .e-toolbar-items .e-tbar-btn:focus, .e-inlineaiassist .e-toolbar .e-toolbar-items .e-tbar-btn:active {
|
|
57
|
-
padding: 0
|
|
57
|
+
padding: 0 4px;
|
|
58
58
|
}
|
|
59
59
|
.e-inlineaiassist .e-footer {
|
|
60
60
|
position: relative;
|
|
@@ -131,6 +131,7 @@
|
|
|
131
131
|
}
|
|
132
132
|
.e-inlineaiassist .e-footer .e-footer-icons-wrapper .e-toolbar .e-tbar-btn:has(.e-inline-stop) .e-btn-icon {
|
|
133
133
|
min-width: 32px;
|
|
134
|
+
max-height: 32px;
|
|
134
135
|
}
|
|
135
136
|
.e-inlineaiassist .e-footer .e-footer-icons-wrapper .e-toolbar .e-toolbar-right .e-toolbar-item:last-child {
|
|
136
137
|
margin-right: 0;
|
|
@@ -261,6 +262,9 @@
|
|
|
261
262
|
.e-inlineaiassist .e-response-text {
|
|
262
263
|
color: var(--color-sf-flyout-text-color);
|
|
263
264
|
}
|
|
265
|
+
.e-inlineaiassist .e-assist-textarea {
|
|
266
|
+
color: var(--color-sf-content-text-color);
|
|
267
|
+
}
|
|
264
268
|
.e-inlineaiassist .e-toolbar-item::after {
|
|
265
269
|
background-color: transparent;
|
|
266
270
|
}
|
|
@@ -284,7 +288,7 @@
|
|
|
284
288
|
border-bottom-color: rgb(97, 97, 97);
|
|
285
289
|
}
|
|
286
290
|
.e-inlineaiassist .e-footer:not(.e-footer-template) .e-inline-send {
|
|
287
|
-
color: var(--color-sf-
|
|
291
|
+
color: var(--color-sf-icon-color);
|
|
288
292
|
}
|
|
289
293
|
.e-inlineaiassist .e-footer:not(.e-footer-template) .e-inline-send.disabled {
|
|
290
294
|
color: var(--color-sf-secondary-bg-color-disabled);
|
|
@@ -300,7 +304,7 @@
|
|
|
300
304
|
box-shadow: none;
|
|
301
305
|
}
|
|
302
306
|
.e-inlineaiassist .e-footer .e-footer-icons-wrapper .e-toolbar .e-toolbar-item .e-tbar-btn:hover:not(:focus-visible) .e-icons, .e-inlineaiassist .e-footer .e-footer-icons-wrapper .e-toolbar .e-toolbar-item .e-tbar-btn:active .e-icons {
|
|
303
|
-
color: var(--color-sf-
|
|
307
|
+
color: var(--color-sf-icon-color);
|
|
304
308
|
}
|
|
305
309
|
.e-inlineaiassist .e-footer .e-footer-icons-wrapper .e-toolbar .e-toolbar-item .e-tbar-btn:hover:not(:focus-visible) .e-icons.disabled, .e-inlineaiassist .e-footer .e-footer-icons-wrapper .e-toolbar .e-toolbar-item .e-tbar-btn:active .e-icons.disabled {
|
|
306
310
|
color: var(--color-sf-secondary-bg-color-disabled);
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
cursor: pointer;
|
|
55
55
|
}
|
|
56
56
|
.e-inlineaiassist .e-toolbar .e-toolbar-items .e-tbar-btn:hover, .e-inlineaiassist .e-toolbar .e-toolbar-items .e-tbar-btn:focus, .e-inlineaiassist .e-toolbar .e-toolbar-items .e-tbar-btn:active {
|
|
57
|
-
padding: 0
|
|
57
|
+
padding: 0 4px;
|
|
58
58
|
}
|
|
59
59
|
.e-inlineaiassist .e-footer {
|
|
60
60
|
position: relative;
|
|
@@ -131,6 +131,7 @@
|
|
|
131
131
|
}
|
|
132
132
|
.e-inlineaiassist .e-footer .e-footer-icons-wrapper .e-toolbar .e-tbar-btn:has(.e-inline-stop) .e-btn-icon {
|
|
133
133
|
min-width: 32px;
|
|
134
|
+
max-height: 32px;
|
|
134
135
|
}
|
|
135
136
|
.e-inlineaiassist .e-footer .e-footer-icons-wrapper .e-toolbar .e-toolbar-right .e-toolbar-item:last-child {
|
|
136
137
|
margin-right: 0;
|
|
@@ -261,6 +262,9 @@
|
|
|
261
262
|
.e-inlineaiassist .e-response-text {
|
|
262
263
|
color: var(--color-sf-flyout-text-color);
|
|
263
264
|
}
|
|
265
|
+
.e-inlineaiassist .e-assist-textarea {
|
|
266
|
+
color: var(--color-sf-content-text-color);
|
|
267
|
+
}
|
|
264
268
|
.e-inlineaiassist .e-toolbar-item::after {
|
|
265
269
|
background-color: transparent;
|
|
266
270
|
}
|
|
@@ -284,7 +288,7 @@
|
|
|
284
288
|
border-bottom-color: rgb(97, 97, 97);
|
|
285
289
|
}
|
|
286
290
|
.e-inlineaiassist .e-footer:not(.e-footer-template) .e-inline-send {
|
|
287
|
-
color: var(--color-sf-
|
|
291
|
+
color: var(--color-sf-icon-color);
|
|
288
292
|
}
|
|
289
293
|
.e-inlineaiassist .e-footer:not(.e-footer-template) .e-inline-send.disabled {
|
|
290
294
|
color: var(--color-sf-secondary-bg-color-disabled);
|
|
@@ -300,7 +304,7 @@
|
|
|
300
304
|
box-shadow: none;
|
|
301
305
|
}
|
|
302
306
|
.e-inlineaiassist .e-footer .e-footer-icons-wrapper .e-toolbar .e-toolbar-item .e-tbar-btn:hover:not(:focus-visible) .e-icons, .e-inlineaiassist .e-footer .e-footer-icons-wrapper .e-toolbar .e-toolbar-item .e-tbar-btn:active .e-icons {
|
|
303
|
-
color: var(--color-sf-
|
|
307
|
+
color: var(--color-sf-icon-color);
|
|
304
308
|
}
|
|
305
309
|
.e-inlineaiassist .e-footer .e-footer-icons-wrapper .e-toolbar .e-toolbar-item .e-tbar-btn:hover:not(:focus-visible) .e-icons.disabled, .e-inlineaiassist .e-footer .e-footer-icons-wrapper .e-toolbar .e-toolbar-item .e-tbar-btn:active .e-icons.disabled {
|
|
306
310
|
color: var(--color-sf-secondary-bg-color-disabled);
|
|
@@ -1025,8 +1025,8 @@
|
|
|
1025
1025
|
.e-pivotview .e-grid .e-rowsheader.e-active .e-icons {
|
|
1026
1026
|
color: var(--color-sf-secondary-text-color) !important;
|
|
1027
1027
|
}
|
|
1028
|
-
.e-pivotview .e-grid th.e-
|
|
1029
|
-
|
|
1028
|
+
.e-pivotview .e-grid th.e-leftfreeze {
|
|
1029
|
+
border-left-width: 0 !important;
|
|
1030
1030
|
}
|
|
1031
1031
|
.e-pivotview .e-grid :is([class*=format]).e-cellselectionbackground {
|
|
1032
1032
|
background: var(--color-sf-table-bg-color-selected);
|
|
@@ -1025,8 +1025,8 @@
|
|
|
1025
1025
|
.e-pivotview .e-grid .e-rowsheader.e-active .e-icons {
|
|
1026
1026
|
color: var(--color-sf-secondary-text-color) !important;
|
|
1027
1027
|
}
|
|
1028
|
-
.e-pivotview .e-grid th.e-
|
|
1029
|
-
|
|
1028
|
+
.e-pivotview .e-grid th.e-leftfreeze {
|
|
1029
|
+
border-left-width: 0 !important;
|
|
1030
1030
|
}
|
|
1031
1031
|
.e-pivotview .e-grid :is([class*=format]).e-cellselectionbackground {
|
|
1032
1032
|
background: var(--color-sf-table-bg-color-selected);
|