@syncfusion/ej2-fabric-theme 34.1.30 → 34.1.33
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/compatibility/fabric.css +1 -1
- package/styles/document-editor/_theme.scss +48 -0
- package/styles/document-editor/document-editor-lite.css +43 -0
- package/styles/document-editor/document-editor.css +43 -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/_fabric-definition.scss +1 -0
- 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 +4 -0
- package/styles/inline-ai-assist/inline-ai-assist.css +4 -0
- package/styles/mention/_layout.scss +3 -4
- package/styles/mention/mention.css +3 -0
- package/styles/pivotview/_theme.scss +2 -2
- package/styles/pivotview/pivotview-lite.css +2 -2
- package/styles/pivotview/pivotview.css +2 -2
- package/styles/progress-button/_layout.scss +0 -1
- package/styles/progress-button/progress-button-lite.css +0 -1
- package/styles/progress-button/progress-button.css +0 -1
- package/styles/rich-text-editor/_layout.scss +1 -0
- package/styles/rich-text-editor/rich-text-editor-lite.css +1 -0
- package/styles/rich-text-editor/rich-text-editor.css +1 -0
|
@@ -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
|
}
|
|
@@ -2560,6 +2586,28 @@
|
|
|
2560
2586
|
margin-top: -8px;
|
|
2561
2587
|
}
|
|
2562
2588
|
}
|
|
2589
|
+
.e-de-image-property-input {
|
|
2590
|
+
width: 100%;
|
|
2591
|
+
}
|
|
2592
|
+
.e-de-cell-margin-input {
|
|
2593
|
+
width: 48px;
|
|
2594
|
+
}
|
|
2595
|
+
.e-de-border-style-svg {
|
|
2596
|
+
width: 98%;
|
|
2597
|
+
}
|
|
2598
|
+
.e-de-cell-margin-textbox {
|
|
2599
|
+
width: 100%;
|
|
2600
|
+
}
|
|
2601
|
+
.e-de-gallery-normal {
|
|
2602
|
+
font-family: Calibri;
|
|
2603
|
+
font-size: 11pt;
|
|
2604
|
+
}
|
|
2605
|
+
.e-de-gallery-heading1 {
|
|
2606
|
+
font-family: 'Calibri Light';
|
|
2607
|
+
font-size: 16pt;
|
|
2608
|
+
color: rgb(47, 84, 150);
|
|
2609
|
+
font-weight: bold;
|
|
2610
|
+
}
|
|
2563
2611
|
.e-de-cp-option.e-btn.e-icon-btn span {
|
|
2564
2612
|
margin-top: $de-cp-option-margin-top;
|
|
2565
2613
|
background: $de-op-bg-color;
|
|
@@ -1914,6 +1914,27 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
1914
1914
|
display: -ms-flexbox;
|
|
1915
1915
|
display: flex;
|
|
1916
1916
|
}
|
|
1917
|
+
.e-de-loading-dots::after {
|
|
1918
|
+
content: "";
|
|
1919
|
+
animation: e-de-loading-dots-animation 1.5s steps(4, end) infinite;
|
|
1920
|
+
}
|
|
1921
|
+
@keyframes e-de-loading-dots-animation {
|
|
1922
|
+
0% {
|
|
1923
|
+
content: "";
|
|
1924
|
+
}
|
|
1925
|
+
25% {
|
|
1926
|
+
content: ".";
|
|
1927
|
+
}
|
|
1928
|
+
50% {
|
|
1929
|
+
content: "..";
|
|
1930
|
+
}
|
|
1931
|
+
75% {
|
|
1932
|
+
content: "...";
|
|
1933
|
+
}
|
|
1934
|
+
100% {
|
|
1935
|
+
content: "";
|
|
1936
|
+
}
|
|
1937
|
+
}
|
|
1917
1938
|
.e-dlg-spellcheck-listitem {
|
|
1918
1939
|
font-size: 15px !important;
|
|
1919
1940
|
}
|
|
@@ -2894,6 +2915,28 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2894
2915
|
padding: 0;
|
|
2895
2916
|
width: auto;
|
|
2896
2917
|
}
|
|
2918
|
+
.e-de-image-property-input {
|
|
2919
|
+
width: 100%;
|
|
2920
|
+
}
|
|
2921
|
+
.e-de-cell-margin-input {
|
|
2922
|
+
width: 48px;
|
|
2923
|
+
}
|
|
2924
|
+
.e-de-border-style-svg {
|
|
2925
|
+
width: 98%;
|
|
2926
|
+
}
|
|
2927
|
+
.e-de-cell-margin-textbox {
|
|
2928
|
+
width: 100%;
|
|
2929
|
+
}
|
|
2930
|
+
.e-de-gallery-normal {
|
|
2931
|
+
font-family: Calibri;
|
|
2932
|
+
font-size: 11pt;
|
|
2933
|
+
}
|
|
2934
|
+
.e-de-gallery-heading1 {
|
|
2935
|
+
font-family: "Calibri Light";
|
|
2936
|
+
font-size: 16pt;
|
|
2937
|
+
color: rgb(47, 84, 150);
|
|
2938
|
+
font-weight: bold;
|
|
2939
|
+
}
|
|
2897
2940
|
.e-de-cp-option.e-btn.e-icon-btn span {
|
|
2898
2941
|
margin-top: 0;
|
|
2899
2942
|
background: #fff;
|
|
@@ -1914,6 +1914,27 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
1914
1914
|
display: -ms-flexbox;
|
|
1915
1915
|
display: flex;
|
|
1916
1916
|
}
|
|
1917
|
+
.e-de-loading-dots::after {
|
|
1918
|
+
content: "";
|
|
1919
|
+
animation: e-de-loading-dots-animation 1.5s steps(4, end) infinite;
|
|
1920
|
+
}
|
|
1921
|
+
@keyframes e-de-loading-dots-animation {
|
|
1922
|
+
0% {
|
|
1923
|
+
content: "";
|
|
1924
|
+
}
|
|
1925
|
+
25% {
|
|
1926
|
+
content: ".";
|
|
1927
|
+
}
|
|
1928
|
+
50% {
|
|
1929
|
+
content: "..";
|
|
1930
|
+
}
|
|
1931
|
+
75% {
|
|
1932
|
+
content: "...";
|
|
1933
|
+
}
|
|
1934
|
+
100% {
|
|
1935
|
+
content: "";
|
|
1936
|
+
}
|
|
1937
|
+
}
|
|
1917
1938
|
.e-dlg-spellcheck-listitem {
|
|
1918
1939
|
font-size: 15px !important;
|
|
1919
1940
|
}
|
|
@@ -2894,6 +2915,28 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2894
2915
|
padding: 0;
|
|
2895
2916
|
width: auto;
|
|
2896
2917
|
}
|
|
2918
|
+
.e-de-image-property-input {
|
|
2919
|
+
width: 100%;
|
|
2920
|
+
}
|
|
2921
|
+
.e-de-cell-margin-input {
|
|
2922
|
+
width: 48px;
|
|
2923
|
+
}
|
|
2924
|
+
.e-de-border-style-svg {
|
|
2925
|
+
width: 98%;
|
|
2926
|
+
}
|
|
2927
|
+
.e-de-cell-margin-textbox {
|
|
2928
|
+
width: 100%;
|
|
2929
|
+
}
|
|
2930
|
+
.e-de-gallery-normal {
|
|
2931
|
+
font-family: Calibri;
|
|
2932
|
+
font-size: 11pt;
|
|
2933
|
+
}
|
|
2934
|
+
.e-de-gallery-heading1 {
|
|
2935
|
+
font-family: "Calibri Light";
|
|
2936
|
+
font-size: 16pt;
|
|
2937
|
+
color: rgb(47, 84, 150);
|
|
2938
|
+
font-weight: bold;
|
|
2939
|
+
}
|
|
2897
2940
|
.e-de-cp-option.e-btn.e-icon-btn span {
|
|
2898
2941
|
margin-top: 0;
|
|
2899
2942
|
background: #fff;
|
package/styles/grid/_theme.scss
CHANGED
|
@@ -3698,7 +3698,7 @@
|
|
|
3698
3698
|
background: rgb(208.9, 234.7504672897, 255);
|
|
3699
3699
|
color: #333;
|
|
3700
3700
|
}
|
|
3701
|
-
.e-grid td:hover.e-cellselectionbackground {
|
|
3701
|
+
.e-grid.e-gridhover td:hover.e-cellselectionbackground {
|
|
3702
3702
|
background: rgb(183.4, 223.5495327103, 255);
|
|
3703
3703
|
}
|
|
3704
3704
|
.e-grid .e-filterbarcell,
|
package/styles/grid/grid.css
CHANGED
|
@@ -3698,7 +3698,7 @@
|
|
|
3698
3698
|
background: rgb(208.9, 234.7504672897, 255);
|
|
3699
3699
|
color: #333;
|
|
3700
3700
|
}
|
|
3701
|
-
.e-grid td:hover.e-cellselectionbackground {
|
|
3701
|
+
.e-grid.e-gridhover td:hover.e-cellselectionbackground {
|
|
3702
3702
|
background: rgb(183.4, 223.5495327103, 255);
|
|
3703
3703
|
}
|
|
3704
3704
|
.e-grid .e-filterbarcell,
|
|
@@ -25,6 +25,7 @@ $inline-ai-assist-send-font-size: 12px !default;
|
|
|
25
25
|
$inline-ai-assist-popup-border: 1px solid $neutral-tertiary-alt !default;
|
|
26
26
|
$inline-ai-assist-response-text-color: $theme-light-font !default;
|
|
27
27
|
$inline-ai-assist-textarea-placeholder-color: $neutral-tertiary !default;
|
|
28
|
+
$inline-ai-assist-textarea-color: $theme-light-font !default;
|
|
28
29
|
$inline-ai-assist-footer-focused-border-color: rgba(97, 97, 97, 1) !default;
|
|
29
30
|
$inline-ai-assist-send-color: $neutral-light-font !default;
|
|
30
31
|
$inline-ai-assist-send-disabled-color: $neutral-tertiary-alt !default;
|
|
@@ -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: #333;
|
|
263
264
|
}
|
|
265
|
+
.e-inlineaiassist .e-assist-textarea {
|
|
266
|
+
color: #333;
|
|
267
|
+
}
|
|
264
268
|
.e-inlineaiassist .e-toolbar-item::after {
|
|
265
269
|
background-color: transparent;
|
|
266
270
|
}
|
|
@@ -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: #333;
|
|
263
264
|
}
|
|
265
|
+
.e-inlineaiassist .e-assist-textarea {
|
|
266
|
+
color: #333;
|
|
267
|
+
}
|
|
264
268
|
.e-inlineaiassist .e-toolbar-item::after {
|
|
265
269
|
background-color: transparent;
|
|
266
270
|
}
|
|
@@ -1022,8 +1022,8 @@
|
|
|
1022
1022
|
.e-pivotview .e-grid .e-rowsheader.e-active .e-icons {
|
|
1023
1023
|
color: #666 !important;
|
|
1024
1024
|
}
|
|
1025
|
-
.e-pivotview .e-grid th.e-
|
|
1026
|
-
|
|
1025
|
+
.e-pivotview .e-grid th.e-leftfreeze {
|
|
1026
|
+
border-left-width: 0 !important;
|
|
1027
1027
|
}
|
|
1028
1028
|
.e-pivotview .e-grid .e-pivot-content-loader {
|
|
1029
1029
|
position: absolute;
|
|
@@ -1022,8 +1022,8 @@
|
|
|
1022
1022
|
.e-pivotview .e-grid .e-rowsheader.e-active .e-icons {
|
|
1023
1023
|
color: #666 !important;
|
|
1024
1024
|
}
|
|
1025
|
-
.e-pivotview .e-grid th.e-
|
|
1026
|
-
|
|
1025
|
+
.e-pivotview .e-grid th.e-leftfreeze {
|
|
1026
|
+
border-left-width: 0 !important;
|
|
1027
1027
|
}
|
|
1028
1028
|
.e-pivotview .e-grid .e-pivot-content-loader {
|
|
1029
1029
|
position: absolute;
|