@syncfusion/ej2-bootstrap5-dark-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-dark-definition.scss +2 -1
- 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 +6 -2
- package/styles/inline-ai-assist/inline-ai-assist.css +6 -2
- 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-dark-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-dark-theme@34.1.
|
|
19
|
+
"_id": "@syncfusion/ej2-bootstrap5-dark-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
|
}
|
|
@@ -1441,6 +1441,27 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
1441
1441
|
display: -ms-flexbox;
|
|
1442
1442
|
display: flex;
|
|
1443
1443
|
}
|
|
1444
|
+
.e-de-loading-dots::after {
|
|
1445
|
+
content: "";
|
|
1446
|
+
animation: e-de-loading-dots-animation 1.5s steps(4, end) infinite;
|
|
1447
|
+
}
|
|
1448
|
+
@keyframes e-de-loading-dots-animation {
|
|
1449
|
+
0% {
|
|
1450
|
+
content: "";
|
|
1451
|
+
}
|
|
1452
|
+
25% {
|
|
1453
|
+
content: ".";
|
|
1454
|
+
}
|
|
1455
|
+
50% {
|
|
1456
|
+
content: "..";
|
|
1457
|
+
}
|
|
1458
|
+
75% {
|
|
1459
|
+
content: "...";
|
|
1460
|
+
}
|
|
1461
|
+
100% {
|
|
1462
|
+
content: "";
|
|
1463
|
+
}
|
|
1464
|
+
}
|
|
1444
1465
|
.e-dlg-spellcheck-listitem {
|
|
1445
1466
|
font-size: 15px !important;
|
|
1446
1467
|
}
|
|
@@ -1441,6 +1441,27 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
1441
1441
|
display: -ms-flexbox;
|
|
1442
1442
|
display: flex;
|
|
1443
1443
|
}
|
|
1444
|
+
.e-de-loading-dots::after {
|
|
1445
|
+
content: "";
|
|
1446
|
+
animation: e-de-loading-dots-animation 1.5s steps(4, end) infinite;
|
|
1447
|
+
}
|
|
1448
|
+
@keyframes e-de-loading-dots-animation {
|
|
1449
|
+
0% {
|
|
1450
|
+
content: "";
|
|
1451
|
+
}
|
|
1452
|
+
25% {
|
|
1453
|
+
content: ".";
|
|
1454
|
+
}
|
|
1455
|
+
50% {
|
|
1456
|
+
content: "..";
|
|
1457
|
+
}
|
|
1458
|
+
75% {
|
|
1459
|
+
content: "...";
|
|
1460
|
+
}
|
|
1461
|
+
100% {
|
|
1462
|
+
content: "";
|
|
1463
|
+
}
|
|
1464
|
+
}
|
|
1444
1465
|
.e-dlg-spellcheck-listitem {
|
|
1445
1466
|
font-size: 15px !important;
|
|
1446
1467
|
}
|
package/styles/grid/_theme.scss
CHANGED
|
@@ -3381,7 +3381,7 @@
|
|
|
3381
3381
|
background: rgb(60.2918918919, 67.6, 74.9081081081);
|
|
3382
3382
|
color: #0d6efd;
|
|
3383
3383
|
}
|
|
3384
|
-
.e-grid td:hover.e-cellselectionbackground {
|
|
3384
|
+
.e-grid.e-gridhover td:hover.e-cellselectionbackground {
|
|
3385
3385
|
background: #495057;
|
|
3386
3386
|
}
|
|
3387
3387
|
.e-grid .e-filterbarcell,
|
package/styles/grid/grid.css
CHANGED
|
@@ -3381,7 +3381,7 @@
|
|
|
3381
3381
|
background: rgb(60.2918918919, 67.6, 74.9081081081);
|
|
3382
3382
|
color: #0d6efd;
|
|
3383
3383
|
}
|
|
3384
|
-
.e-grid td:hover.e-cellselectionbackground {
|
|
3384
|
+
.e-grid.e-gridhover td:hover.e-cellselectionbackground {
|
|
3385
3385
|
background: #495057;
|
|
3386
3386
|
}
|
|
3387
3387
|
.e-grid .e-filterbarcell,
|
|
@@ -25,8 +25,9 @@ $inline-ai-assist-send-font-size: 14px !default;
|
|
|
25
25
|
$inline-ai-assist-popup-border: 1px solid $border-light !default;
|
|
26
26
|
$inline-ai-assist-response-text-color: $content-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: 0 32px 64px 0 rgba(0, 0, 0, .24), 0 0 8px 0 rgba(0, 0, 0, .2) !default;
|
|
@@ -119,6 +119,7 @@
|
|
|
119
119
|
}
|
|
120
120
|
.e-inlineaiassist .e-footer .e-footer-icons-wrapper .e-toolbar .e-tbar-btn:has(.e-inline-stop) .e-btn-icon {
|
|
121
121
|
min-width: 32px;
|
|
122
|
+
max-height: 32px;
|
|
122
123
|
}
|
|
123
124
|
.e-inlineaiassist .e-footer .e-footer-icons-wrapper .e-toolbar .e-toolbar-right .e-toolbar-item:last-child {
|
|
124
125
|
margin-right: 0;
|
|
@@ -249,6 +250,9 @@
|
|
|
249
250
|
.e-inlineaiassist .e-response-text {
|
|
250
251
|
color: #fff;
|
|
251
252
|
}
|
|
253
|
+
.e-inlineaiassist .e-assist-textarea {
|
|
254
|
+
color: #fff;
|
|
255
|
+
}
|
|
252
256
|
.e-inlineaiassist .e-toolbar-item::after {
|
|
253
257
|
background-color: transparent;
|
|
254
258
|
}
|
|
@@ -272,7 +276,7 @@
|
|
|
272
276
|
border-bottom-color: rgb(97, 97, 97);
|
|
273
277
|
}
|
|
274
278
|
.e-inlineaiassist .e-footer:not(.e-footer-template) .e-inline-send {
|
|
275
|
-
color:
|
|
279
|
+
color: #adb5bd;
|
|
276
280
|
}
|
|
277
281
|
.e-inlineaiassist .e-footer:not(.e-footer-template) .e-inline-send.disabled {
|
|
278
282
|
color: rgba(108, 117, 125, 0.65);
|
|
@@ -288,7 +292,7 @@
|
|
|
288
292
|
box-shadow: none;
|
|
289
293
|
}
|
|
290
294
|
.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 {
|
|
291
|
-
color:
|
|
295
|
+
color: #adb5bd;
|
|
292
296
|
}
|
|
293
297
|
.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 {
|
|
294
298
|
color: rgba(108, 117, 125, 0.65);
|
|
@@ -119,6 +119,7 @@
|
|
|
119
119
|
}
|
|
120
120
|
.e-inlineaiassist .e-footer .e-footer-icons-wrapper .e-toolbar .e-tbar-btn:has(.e-inline-stop) .e-btn-icon {
|
|
121
121
|
min-width: 32px;
|
|
122
|
+
max-height: 32px;
|
|
122
123
|
}
|
|
123
124
|
.e-inlineaiassist .e-footer .e-footer-icons-wrapper .e-toolbar .e-toolbar-right .e-toolbar-item:last-child {
|
|
124
125
|
margin-right: 0;
|
|
@@ -249,6 +250,9 @@
|
|
|
249
250
|
.e-inlineaiassist .e-response-text {
|
|
250
251
|
color: #fff;
|
|
251
252
|
}
|
|
253
|
+
.e-inlineaiassist .e-assist-textarea {
|
|
254
|
+
color: #fff;
|
|
255
|
+
}
|
|
252
256
|
.e-inlineaiassist .e-toolbar-item::after {
|
|
253
257
|
background-color: transparent;
|
|
254
258
|
}
|
|
@@ -272,7 +276,7 @@
|
|
|
272
276
|
border-bottom-color: rgb(97, 97, 97);
|
|
273
277
|
}
|
|
274
278
|
.e-inlineaiassist .e-footer:not(.e-footer-template) .e-inline-send {
|
|
275
|
-
color:
|
|
279
|
+
color: #adb5bd;
|
|
276
280
|
}
|
|
277
281
|
.e-inlineaiassist .e-footer:not(.e-footer-template) .e-inline-send.disabled {
|
|
278
282
|
color: rgba(108, 117, 125, 0.65);
|
|
@@ -288,7 +292,7 @@
|
|
|
288
292
|
box-shadow: none;
|
|
289
293
|
}
|
|
290
294
|
.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 {
|
|
291
|
-
color:
|
|
295
|
+
color: #adb5bd;
|
|
292
296
|
}
|
|
293
297
|
.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 {
|
|
294
298
|
color: rgba(108, 117, 125, 0.65);
|
|
@@ -899,8 +899,8 @@
|
|
|
899
899
|
color: #fff !important;
|
|
900
900
|
color: #e9ecef !important;
|
|
901
901
|
}
|
|
902
|
-
.e-pivotview .e-grid th.e-
|
|
903
|
-
|
|
902
|
+
.e-pivotview .e-grid th.e-leftfreeze {
|
|
903
|
+
border-left-width: 0 !important;
|
|
904
904
|
}
|
|
905
905
|
.e-pivotview .e-grid .e-pivot-content-loader {
|
|
906
906
|
position: absolute;
|
|
@@ -899,8 +899,8 @@
|
|
|
899
899
|
color: #fff !important;
|
|
900
900
|
color: #e9ecef !important;
|
|
901
901
|
}
|
|
902
|
-
.e-pivotview .e-grid th.e-
|
|
903
|
-
|
|
902
|
+
.e-pivotview .e-grid th.e-leftfreeze {
|
|
903
|
+
border-left-width: 0 !important;
|
|
904
904
|
}
|
|
905
905
|
.e-pivotview .e-grid .e-pivot-content-loader {
|
|
906
906
|
position: absolute;
|