@syncfusion/ej2-material3-dark-theme 34.2.2 → 34.2.3
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/customized/material3-dark.css +11 -0
- package/styles/offline-theme/material3-dark.css +11 -0
- package/styles/pivotview/_theme.scss +12 -0
- package/styles/pivotview/pivotview-lite.css +8 -0
- package/styles/pivotview/pivotview.css +8 -0
- package/styles/toolbar/_layout.scss +4 -0
- package/styles/toolbar/toolbar-lite.css +3 -0
- package/styles/toolbar/toolbar.css +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncfusion/ej2-material3-dark-theme",
|
|
3
|
-
"version": "34.2.
|
|
3
|
+
"version": "34.2.3",
|
|
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-material3-dark-theme@34.2.
|
|
19
|
+
"_id": "@syncfusion/ej2-material3-dark-theme@34.2.3"
|
|
20
20
|
}
|
|
@@ -34094,6 +34094,9 @@ span.e-input-group.e-multi-line-input.e-adornment-flow-horizontal.e-adornment-or
|
|
|
34094
34094
|
white-space: nowrap;
|
|
34095
34095
|
overflow: hidden;
|
|
34096
34096
|
}
|
|
34097
|
+
.e-toolbar:not(.e-rtl) {
|
|
34098
|
+
text-align: left;
|
|
34099
|
+
}
|
|
34097
34100
|
.e-toolbar.e-spacer-toolbar .e-toolbar-items {
|
|
34098
34101
|
display: -ms-flexbox;
|
|
34099
34102
|
display: flex;
|
|
@@ -85817,6 +85820,14 @@ span.e-pv-redaction-opactity-value {
|
|
|
85817
85820
|
padding-left: 8px !important;
|
|
85818
85821
|
padding-right: 8px !important;
|
|
85819
85822
|
}
|
|
85823
|
+
.e-pivotview .e-grid .e-headercelldiv {
|
|
85824
|
+
width: 100% !important;
|
|
85825
|
+
padding-left: 8px !important;
|
|
85826
|
+
padding-right: 8px !important;
|
|
85827
|
+
}
|
|
85828
|
+
.e-pivotview .e-grid th.e-headercell:not(.e-stackedheadercell) {
|
|
85829
|
+
padding: 0 !important;
|
|
85830
|
+
}
|
|
85820
85831
|
.e-pivotview .sf-grid .e-spinner-pane {
|
|
85821
85832
|
z-index: 1 !important;
|
|
85822
85833
|
}
|
|
@@ -34094,6 +34094,9 @@ span.e-input-group.e-multi-line-input.e-adornment-flow-horizontal.e-adornment-or
|
|
|
34094
34094
|
white-space: nowrap;
|
|
34095
34095
|
overflow: hidden;
|
|
34096
34096
|
}
|
|
34097
|
+
.e-toolbar:not(.e-rtl) {
|
|
34098
|
+
text-align: left;
|
|
34099
|
+
}
|
|
34097
34100
|
.e-toolbar.e-spacer-toolbar .e-toolbar-items {
|
|
34098
34101
|
display: -ms-flexbox;
|
|
34099
34102
|
display: flex;
|
|
@@ -85817,6 +85820,14 @@ span.e-pv-redaction-opactity-value {
|
|
|
85817
85820
|
padding-left: 8px !important;
|
|
85818
85821
|
padding-right: 8px !important;
|
|
85819
85822
|
}
|
|
85823
|
+
.e-pivotview .e-grid .e-headercelldiv {
|
|
85824
|
+
width: 100% !important;
|
|
85825
|
+
padding-left: 8px !important;
|
|
85826
|
+
padding-right: 8px !important;
|
|
85827
|
+
}
|
|
85828
|
+
.e-pivotview .e-grid th.e-headercell:not(.e-stackedheadercell) {
|
|
85829
|
+
padding: 0 !important;
|
|
85830
|
+
}
|
|
85820
85831
|
.e-pivotview .sf-grid .e-spinner-pane {
|
|
85821
85832
|
z-index: 1 !important;
|
|
85822
85833
|
}
|
|
@@ -498,6 +498,18 @@
|
|
|
498
498
|
}
|
|
499
499
|
}
|
|
500
500
|
|
|
501
|
+
.e-grid {
|
|
502
|
+
.e-headercelldiv {
|
|
503
|
+
width: 100% !important;
|
|
504
|
+
padding-left: $pivotgrid-padding-8 !important;
|
|
505
|
+
padding-right: $pivotgrid-padding-8 !important;
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
th.e-headercell:not(.e-stackedheadercell) {
|
|
509
|
+
padding: $pivotgrid-padding-0 !important;
|
|
510
|
+
}
|
|
511
|
+
}
|
|
512
|
+
|
|
501
513
|
.sf-grid .e-spinner-pane {
|
|
502
514
|
z-index: 1 !important;
|
|
503
515
|
}
|
|
@@ -985,6 +985,14 @@
|
|
|
985
985
|
padding-left: 8px !important;
|
|
986
986
|
padding-right: 8px !important;
|
|
987
987
|
}
|
|
988
|
+
.e-pivotview .e-grid .e-headercelldiv {
|
|
989
|
+
width: 100% !important;
|
|
990
|
+
padding-left: 8px !important;
|
|
991
|
+
padding-right: 8px !important;
|
|
992
|
+
}
|
|
993
|
+
.e-pivotview .e-grid th.e-headercell:not(.e-stackedheadercell) {
|
|
994
|
+
padding: 0 !important;
|
|
995
|
+
}
|
|
988
996
|
.e-pivotview .sf-grid .e-spinner-pane {
|
|
989
997
|
z-index: 1 !important;
|
|
990
998
|
}
|
|
@@ -985,6 +985,14 @@
|
|
|
985
985
|
padding-left: 8px !important;
|
|
986
986
|
padding-right: 8px !important;
|
|
987
987
|
}
|
|
988
|
+
.e-pivotview .e-grid .e-headercelldiv {
|
|
989
|
+
width: 100% !important;
|
|
990
|
+
padding-left: 8px !important;
|
|
991
|
+
padding-right: 8px !important;
|
|
992
|
+
}
|
|
993
|
+
.e-pivotview .e-grid th.e-headercell:not(.e-stackedheadercell) {
|
|
994
|
+
padding: 0 !important;
|
|
995
|
+
}
|
|
988
996
|
.e-pivotview .sf-grid .e-spinner-pane {
|
|
989
997
|
z-index: 1 !important;
|
|
990
998
|
}
|