@syncfusion/ej2-angular-spreadsheet 20.2.45-ngcc → 20.2.46
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/esm2020/public_api.mjs +3 -0
- package/esm2020/src/index.mjs +14 -0
- package/esm2020/src/spreadsheet/cells.directive.mjs +71 -0
- package/esm2020/src/spreadsheet/chart.directive.mjs +46 -0
- package/esm2020/src/spreadsheet/columns.directive.mjs +61 -0
- package/esm2020/src/spreadsheet/conditionalformats.directive.mjs +61 -0
- package/esm2020/src/spreadsheet/definednames.directive.mjs +58 -0
- package/esm2020/src/spreadsheet/image.directive.mjs +46 -0
- package/esm2020/src/spreadsheet/ranges.directive.mjs +69 -0
- package/esm2020/src/spreadsheet/rows.directive.mjs +65 -0
- package/esm2020/src/spreadsheet/sheets.directive.mjs +68 -0
- package/esm2020/src/spreadsheet/spreadsheet-all.module.mjs +80 -0
- package/esm2020/src/spreadsheet/spreadsheet.component.mjs +202 -0
- package/esm2020/src/spreadsheet/spreadsheet.module.mjs +106 -0
- package/esm2020/syncfusion-ej2-angular-spreadsheet.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs +886 -0
- package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs +886 -0
- package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs.map +1 -0
- package/package.json +29 -15
- package/src/spreadsheet/cells.directive.d.ts +5 -0
- package/src/spreadsheet/chart.directive.d.ts +5 -0
- package/src/spreadsheet/columns.directive.d.ts +5 -0
- package/src/spreadsheet/conditionalformats.directive.d.ts +5 -0
- package/src/spreadsheet/definednames.directive.d.ts +5 -0
- package/src/spreadsheet/image.directive.d.ts +5 -0
- package/src/spreadsheet/ranges.directive.d.ts +5 -0
- package/src/spreadsheet/rows.directive.d.ts +5 -0
- package/src/spreadsheet/sheets.directive.d.ts +5 -0
- package/src/spreadsheet/spreadsheet-all.module.d.ts +6 -0
- package/src/spreadsheet/spreadsheet.component.d.ts +3 -0
- package/src/spreadsheet/spreadsheet.module.d.ts +15 -0
- package/styles/bootstrap-dark.css +34 -36
- package/styles/bootstrap.css +34 -36
- package/styles/bootstrap4.css +34 -36
- package/styles/bootstrap5-dark.css +38 -37
- package/styles/bootstrap5.css +38 -37
- package/styles/fabric-dark.css +34 -36
- package/styles/fabric.css +34 -36
- package/styles/fluent-dark.css +39 -41
- package/styles/fluent.css +39 -41
- package/styles/highcontrast-light.css +34 -36
- package/styles/highcontrast.css +34 -36
- package/styles/material-dark.css +34 -38
- package/styles/material.css +33 -37
- package/styles/ribbon/_all.scss +2 -0
- package/styles/ribbon/_bootstrap-dark-definition.scss +13 -0
- package/styles/ribbon/_bootstrap-definition.scss +12 -0
- package/styles/ribbon/_bootstrap4-definition.scss +13 -0
- package/styles/ribbon/_bootstrap5-dark-definition.scss +1 -0
- package/styles/ribbon/_bootstrap5-definition.scss +14 -0
- package/styles/ribbon/_fabric-dark-definition.scss +14 -0
- package/styles/ribbon/_fabric-definition.scss +14 -0
- package/styles/ribbon/_fluent-dark-definition.scss +1 -0
- package/styles/ribbon/_fluent-definition.scss +14 -0
- package/styles/ribbon/_fusionnew-definition.scss +14 -0
- package/styles/ribbon/_highcontrast-definition.scss +12 -0
- package/styles/ribbon/_highcontrast-light-definition.scss +12 -0
- package/styles/ribbon/_layout.scss +241 -0
- package/styles/ribbon/_material-dark-definition.scss +15 -0
- package/styles/ribbon/_material-definition.scss +12 -0
- package/styles/ribbon/_material3-definition.scss +15 -0
- package/styles/ribbon/_mixin.scss +89 -0
- package/styles/ribbon/_tailwind-dark-definition.scss +1 -0
- package/styles/ribbon/_tailwind-definition.scss +13 -0
- package/styles/ribbon/_theme.scss +115 -0
- package/styles/ribbon/bootstrap-dark.css +1 -1
- package/styles/ribbon/bootstrap-dark.scss +4 -1
- package/styles/ribbon/bootstrap.css +1 -1
- package/styles/ribbon/bootstrap.scss +4 -1
- package/styles/ribbon/bootstrap4.css +1 -1
- package/styles/ribbon/bootstrap4.scss +4 -1
- package/styles/ribbon/bootstrap5-dark.css +1 -1
- package/styles/ribbon/bootstrap5-dark.scss +4 -1
- package/styles/ribbon/bootstrap5.css +1 -1
- package/styles/ribbon/bootstrap5.scss +4 -1
- package/styles/ribbon/fabric-dark.css +1 -1
- package/styles/ribbon/fabric-dark.scss +4 -1
- package/styles/ribbon/fabric.css +1 -1
- package/styles/ribbon/fabric.scss +4 -1
- package/styles/ribbon/fluent-dark.css +1 -1
- package/styles/ribbon/fluent-dark.scss +4 -1
- package/styles/ribbon/fluent.css +1 -1
- package/styles/ribbon/fluent.scss +4 -1
- package/styles/ribbon/highcontrast-light.css +1 -1
- package/styles/ribbon/highcontrast-light.scss +3 -1
- package/styles/ribbon/highcontrast.css +1 -1
- package/styles/ribbon/highcontrast.scss +4 -1
- package/styles/ribbon/icons/_bootstrap-dark.scss +15 -0
- package/styles/ribbon/icons/_bootstrap.scss +15 -0
- package/styles/ribbon/icons/_bootstrap4.scss +9 -0
- package/styles/ribbon/icons/_bootstrap5-dark.scss +1 -0
- package/styles/ribbon/icons/_bootstrap5.scss +15 -0
- package/styles/ribbon/icons/_fabric-dark.scss +9 -0
- package/styles/ribbon/icons/_fabric.scss +9 -0
- package/styles/ribbon/icons/_fluent-dark.scss +1 -0
- package/styles/ribbon/icons/_fluent.scss +15 -0
- package/styles/ribbon/icons/_fusionnew.scss +15 -0
- package/styles/ribbon/icons/_highcontrast.scss +9 -0
- package/styles/ribbon/icons/_material-dark.scss +15 -0
- package/styles/ribbon/icons/_material.scss +15 -0
- package/styles/ribbon/icons/_material3.scss +15 -0
- package/styles/ribbon/icons/_tailwind-dark.scss +15 -0
- package/styles/ribbon/icons/_tailwind.scss +15 -0
- package/styles/ribbon/material-dark.css +1 -1
- package/styles/ribbon/material-dark.scss +4 -1
- package/styles/ribbon/material.css +1 -1
- package/styles/ribbon/material.scss +4 -1
- package/styles/ribbon/tailwind-dark.css +1 -1
- package/styles/ribbon/tailwind-dark.scss +4 -1
- package/styles/ribbon/tailwind.css +1 -1
- package/styles/ribbon/tailwind.scss +4 -1
- package/styles/spreadsheet/_all.scss +2 -0
- package/styles/spreadsheet/_bootstrap-dark-definition.scss +149 -0
- package/styles/spreadsheet/_bootstrap-definition.scss +149 -0
- package/styles/spreadsheet/_bootstrap4-definition.scss +148 -0
- package/styles/spreadsheet/_bootstrap5-dark-definition.scss +1 -0
- package/styles/spreadsheet/_bootstrap5-definition.scss +151 -0
- package/styles/spreadsheet/_fabric-dark-definition.scss +146 -0
- package/styles/spreadsheet/_fabric-definition.scss +146 -0
- package/styles/spreadsheet/_fluent-dark-definition.scss +1 -0
- package/styles/spreadsheet/_fluent-definition.scss +151 -0
- package/styles/spreadsheet/_fusionnew-definition.scss +151 -0
- package/styles/spreadsheet/_highcontrast-definition.scss +146 -0
- package/styles/spreadsheet/_highcontrast-light-definition.scss +146 -0
- package/styles/spreadsheet/_layout.scss +2982 -0
- package/styles/spreadsheet/_material-dark-definition.scss +149 -0
- package/styles/spreadsheet/_material-definition.scss +147 -0
- package/styles/spreadsheet/_material3-definition.scss +151 -0
- package/styles/spreadsheet/_tailwind-dark-definition.scss +1 -0
- package/styles/spreadsheet/_tailwind-definition.scss +153 -0
- package/styles/spreadsheet/_theme.scss +1361 -0
- package/styles/spreadsheet/bootstrap-dark.css +33 -35
- package/styles/spreadsheet/bootstrap-dark.scss +23 -1
- package/styles/spreadsheet/bootstrap.css +33 -35
- package/styles/spreadsheet/bootstrap.scss +23 -1
- package/styles/spreadsheet/bootstrap4.css +33 -35
- package/styles/spreadsheet/bootstrap4.scss +23 -1
- package/styles/spreadsheet/bootstrap5-dark.css +37 -36
- package/styles/spreadsheet/bootstrap5-dark.scss +22 -1
- package/styles/spreadsheet/bootstrap5.css +37 -36
- package/styles/spreadsheet/bootstrap5.scss +23 -1
- package/styles/spreadsheet/fabric-dark.css +33 -35
- package/styles/spreadsheet/fabric-dark.scss +23 -1
- package/styles/spreadsheet/fabric.css +33 -35
- package/styles/spreadsheet/fabric.scss +23 -1
- package/styles/spreadsheet/fluent-dark.css +38 -40
- package/styles/spreadsheet/fluent-dark.scss +22 -1
- package/styles/spreadsheet/fluent.css +38 -40
- package/styles/spreadsheet/fluent.scss +23 -1
- package/styles/spreadsheet/highcontrast-light.css +33 -35
- package/styles/spreadsheet/highcontrast-light.scss +22 -1
- package/styles/spreadsheet/highcontrast.css +33 -35
- package/styles/spreadsheet/highcontrast.scss +23 -1
- package/styles/spreadsheet/icons/_bootstrap-dark.scss +990 -0
- package/styles/spreadsheet/icons/_bootstrap.scss +990 -0
- package/styles/spreadsheet/icons/_bootstrap4.scss +994 -0
- package/styles/spreadsheet/icons/_bootstrap5-dark.scss +1 -0
- package/styles/spreadsheet/icons/_bootstrap5.scss +996 -0
- package/styles/spreadsheet/icons/_fabric-dark.scss +990 -0
- package/styles/spreadsheet/icons/_fabric.scss +994 -0
- package/styles/spreadsheet/icons/_fluent-dark.scss +1 -0
- package/styles/spreadsheet/icons/_fluent.scss +996 -0
- package/styles/spreadsheet/icons/_fusionnew.scss +996 -0
- package/styles/spreadsheet/icons/_highcontrast.scss +990 -0
- package/styles/spreadsheet/icons/_material-dark.scss +993 -0
- package/styles/spreadsheet/icons/_material.scss +995 -0
- package/styles/spreadsheet/icons/_material3.scss +996 -0
- package/styles/spreadsheet/icons/_tailwind-dark.scss +996 -0
- package/styles/spreadsheet/icons/_tailwind.scss +996 -0
- package/styles/spreadsheet/material-dark.css +33 -37
- package/styles/spreadsheet/material-dark.scss +23 -1
- package/styles/spreadsheet/material.css +32 -36
- package/styles/spreadsheet/material.scss +23 -1
- package/styles/spreadsheet/tailwind-dark.css +34 -36
- package/styles/spreadsheet/tailwind-dark.scss +22 -1
- package/styles/spreadsheet/tailwind.css +34 -36
- package/styles/spreadsheet/tailwind.scss +23 -1
- package/styles/tailwind-dark.css +35 -37
- package/styles/tailwind.css +35 -37
- package/syncfusion-ej2-angular-spreadsheet.d.ts +5 -0
- package/@syncfusion/ej2-angular-spreadsheet.es5.js +0 -989
- package/@syncfusion/ej2-angular-spreadsheet.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-spreadsheet.js +0 -929
- package/@syncfusion/ej2-angular-spreadsheet.js.map +0 -1
- package/CHANGELOG.md +0 -1220
- package/dist/ej2-angular-spreadsheet.umd.js +0 -1585
- package/dist/ej2-angular-spreadsheet.umd.js.map +0 -1
- package/dist/ej2-angular-spreadsheet.umd.min.js +0 -11
- package/dist/ej2-angular-spreadsheet.umd.min.js.map +0 -1
- package/ej2-angular-spreadsheet.d.ts +0 -5
- package/ej2-angular-spreadsheet.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
- package/schematics/collection.json +0 -10
- 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,15 @@
|
|
|
1
|
+
$ribbon-skin: 'bootstrap5' !default;
|
|
2
|
+
$file-menu-wrap-padding: 0 !default;
|
|
3
|
+
$drop-icon-margin: 8px 4px !default;
|
|
4
|
+
$bigger-drop-icon-margin: 16px 5px !default;
|
|
5
|
+
$ribbon-border-color: $border-light !default;
|
|
6
|
+
$ribbon-border: 1px solid $ribbon-border-color !default;
|
|
7
|
+
$ribbon-hover-text-color: $primary-bg-color-pressed !default;
|
|
8
|
+
$ribbon-comb-icon-color: $icon-color !default;
|
|
9
|
+
$ribbon-content-bg-color: $content-bg-color !default;
|
|
10
|
+
$ribbon-header-bg-color: $content-bg-color-alt1 !default;
|
|
11
|
+
$ribbon-focused-wrap-focus-border-color: $icon-color !default;
|
|
12
|
+
$separator-border-color: $border-light !default;
|
|
13
|
+
$expand-icon-color: $icon-color !default;
|
|
14
|
+
$ribbon-focus-bg-color: rgba($content-bg-color-alt2, .12) !default;
|
|
15
|
+
$ribbon-focus-text-color: $primary-bg-color-pressed !default;
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
@mixin tab-header-layout {
|
|
2
|
+
height: 35px;
|
|
3
|
+
min-height: 35px;
|
|
4
|
+
|
|
5
|
+
& .e-toolbar-item:not(.e-separator) {
|
|
6
|
+
height: 35px;
|
|
7
|
+
min-height: 35px;
|
|
8
|
+
|
|
9
|
+
& .e-tab-wrap {
|
|
10
|
+
height: 35px;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
@if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
|
|
14
|
+
&.e-active .e-text-wrap,
|
|
15
|
+
& .e-text-wrap {
|
|
16
|
+
height: 33px;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
@else {
|
|
20
|
+
& .e-text-wrap {
|
|
21
|
+
height: 35px;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
& .e-toolbar-items {
|
|
27
|
+
height: 35px;
|
|
28
|
+
min-height: 35px;
|
|
29
|
+
|
|
30
|
+
& .e-scroll-nav {
|
|
31
|
+
height: 35px;
|
|
32
|
+
min-height: 35px;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
@mixin bigger-tab-header-layout {
|
|
38
|
+
& .e-tab .e-tab-header {
|
|
39
|
+
height: 41px;
|
|
40
|
+
min-height: 41px;
|
|
41
|
+
|
|
42
|
+
& .e-toolbar-item:not(.e-separator) {
|
|
43
|
+
height: 41px;
|
|
44
|
+
min-height: 41px;
|
|
45
|
+
|
|
46
|
+
& .e-tab-wrap {
|
|
47
|
+
height: 41px;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
@if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
|
|
51
|
+
&.e-active .e-text-wrap,
|
|
52
|
+
& .e-text-wrap {
|
|
53
|
+
height: 39px;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
@else {
|
|
57
|
+
& .e-text-wrap {
|
|
58
|
+
height: 41px;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
& .e-toolbar-items {
|
|
64
|
+
height: 41px;
|
|
65
|
+
min-height: 41px;
|
|
66
|
+
|
|
67
|
+
& .e-scroll-nav {
|
|
68
|
+
height: 41px;
|
|
69
|
+
min-height: 41px;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
@mixin default-props {
|
|
76
|
+
& .e-tab {
|
|
77
|
+
& .e-tab-header .e-toolbar-item {
|
|
78
|
+
user-select: none;
|
|
79
|
+
|
|
80
|
+
& .e-tab-text {
|
|
81
|
+
text-transform: none;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
&.e-sheet-tab .e-tab-header .e-tab-text {
|
|
86
|
+
white-space: pre;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './tailwind-definition.scss';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
$ribbon-skin: 'tailwind' !default;
|
|
2
|
+
$file-menu-wrap-padding: 0 !default;
|
|
3
|
+
$drop-icon-margin: 8px 4px !default;
|
|
4
|
+
$bigger-drop-icon-margin: 16px 5px !default;
|
|
5
|
+
$ribbon-border-color: $border-light !default;
|
|
6
|
+
$ribbon-border: 1px solid $ribbon-border-color !default;
|
|
7
|
+
$ribbon-content-bg-color: $content-bg-color-alt2 !default;
|
|
8
|
+
$ribbon-header-bg-color: $content-bg-color-alt2 !default;
|
|
9
|
+
$separator-border-color: $border-light !default;
|
|
10
|
+
$expand-icon-color: $icon-color !default;
|
|
11
|
+
$ribbon-comb-icon-color: $primary !default;
|
|
12
|
+
$ribbon-focus-bg-color: rgba($content-bg-color-alt2, .12) !default;
|
|
13
|
+
$ribbon-focus-text-color: $primary !default;
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
@include export-module('ribbon-theme') {
|
|
2
|
+
.e-ribbon {
|
|
3
|
+
background-color: $ribbon-header-bg-color;
|
|
4
|
+
|
|
5
|
+
& .e-tab {
|
|
6
|
+
& .e-tab-header {
|
|
7
|
+
background-color: inherit;
|
|
8
|
+
|
|
9
|
+
@if $skin-name == 'bootstrap' {
|
|
10
|
+
&::before {
|
|
11
|
+
border-bottom-color: $ribbon-border-color;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
& .e-toolbar-item.e-active {
|
|
15
|
+
border-bottom-color: $ribbon-content-bg-color;
|
|
16
|
+
border-left-color: $ribbon-border-color;
|
|
17
|
+
border-right-color: $ribbon-border-color;
|
|
18
|
+
border-top-color: $ribbon-border-color;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.e-tab-wrap:focus {
|
|
23
|
+
background: $ribbon-focus-bg-color;
|
|
24
|
+
|
|
25
|
+
@if $ribbon-skin == 'fabric' or $ribbon-skin == 'highcontrast' {
|
|
26
|
+
border-color: $ribbon-focused-wrap-focus-border-color;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
@if $ribbon-skin == 'bootstrap5' {
|
|
30
|
+
border: 1px solid $ribbon-focused-wrap-focus-border-color;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
@if $ribbon-skin == 'highcontrast' {
|
|
34
|
+
border-style: solid;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
@if $ribbon-skin == 'bootstrap5' or $ribbon-skin == 'FluentUI' {
|
|
38
|
+
.e-tab-icon {
|
|
39
|
+
color: $ribbon-comb-icon-color;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.e-tab-wrap:focus .e-tab-icon,
|
|
45
|
+
.e-tab-wrap:focus .e-tab-text {
|
|
46
|
+
color: $ribbon-focus-text-color;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
@if $skin-name == 'material' {
|
|
51
|
+
& .e-content .e-toolbar .e-toolbar-items .e-toolbar-item.e-separator {
|
|
52
|
+
border-color: $separator-border-color;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
& .e-tab-header:not(.e-vertical) .e-toolbar-item.e-active {
|
|
56
|
+
border: 0;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
@if $skin-name == 'FluentUI' {
|
|
61
|
+
& .e-toolbar,
|
|
62
|
+
& .e-toolbar-items {
|
|
63
|
+
background-color: $ribbon-header-bg-color;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
& .e-hscroll .e-scroll-nav.e-scroll-left-nav,
|
|
67
|
+
& .e-hscroll .e-scroll-nav.e-scroll-right-nav {
|
|
68
|
+
background-color: $ribbon-header-bg-color;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
& .e-drop-icon {
|
|
74
|
+
color: $expand-icon-color;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
& .e-tab .e-content .e-toolbar {
|
|
78
|
+
border-bottom-color: transparent;
|
|
79
|
+
border-top-color: transparent;
|
|
80
|
+
@if $skin-name == 'FluentUI' {
|
|
81
|
+
box-shadow: none;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
@if $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'bootstrap5' {
|
|
86
|
+
& .e-tab {
|
|
87
|
+
& .e-tab-header .e-toolbar-item {
|
|
88
|
+
&.e-active {
|
|
89
|
+
background: $ribbon-content-bg-color;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
& .e-content .e-toolbar {
|
|
94
|
+
background: $ribbon-content-bg-color;
|
|
95
|
+
|
|
96
|
+
& .e-toolbar-items,
|
|
97
|
+
& .e-toolbar-item .e-btn.e-tbar-btn:not(:hover):not(:focus),
|
|
98
|
+
& .e-toolbar-item.e-overlay {
|
|
99
|
+
background: transparent;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
& .e-menu-wrapper {
|
|
106
|
+
background-color: transparent;
|
|
107
|
+
|
|
108
|
+
@if $skin-name == 'bootstrap4' {
|
|
109
|
+
& ul {
|
|
110
|
+
background-color: transparent;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
min-height: 35px;
|
|
37
37
|
}
|
|
38
38
|
.e-ribbon .e-tab .e-tab-header .e-hscroll {
|
|
39
|
-
display: inline-block !important;
|
|
39
|
+
display: inline-block !important; /* stylelint-disable-line declaration-no-important */
|
|
40
40
|
width: calc(100% - 28px);
|
|
41
41
|
}
|
|
42
42
|
.e-ribbon .e-tab .e-tab-header .e-toolbar-items .e-toolbar-item:nth-child(2) .e-tab-wrap {
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
min-height: 35px;
|
|
37
37
|
}
|
|
38
38
|
.e-ribbon .e-tab .e-tab-header .e-hscroll {
|
|
39
|
-
display: inline-block !important;
|
|
39
|
+
display: inline-block !important; /* stylelint-disable-line declaration-no-important */
|
|
40
40
|
width: calc(100% - 28px);
|
|
41
41
|
}
|
|
42
42
|
.e-ribbon .e-tab .e-tab-header .e-toolbar-items .e-toolbar-item:nth-child(2) {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
border-right-width: 0;
|
|
12
12
|
}
|
|
13
13
|
.e-ribbon .e-tab .e-tab-header .e-hscroll {
|
|
14
|
-
display: inline-block !important;
|
|
14
|
+
display: inline-block !important; /* stylelint-disable-line declaration-no-important */
|
|
15
15
|
width: calc(100% - 28px);
|
|
16
16
|
}
|
|
17
17
|
.e-ribbon .e-tab .e-tab-header .e-toolbar-items .e-toolbar-item:nth-child(2) .e-tab-wrap {
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
min-height: 35px;
|
|
37
37
|
}
|
|
38
38
|
.e-ribbon .e-tab .e-tab-header .e-hscroll {
|
|
39
|
-
display: inline-block !important;
|
|
39
|
+
display: inline-block !important; /* stylelint-disable-line declaration-no-important */
|
|
40
40
|
width: calc(100% - 28px);
|
|
41
41
|
}
|
|
42
42
|
.e-ribbon .e-tab .e-tab-header .e-toolbar-items .e-toolbar-item:nth-child(2) .e-tab-wrap {
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
min-height: 35px;
|
|
37
37
|
}
|
|
38
38
|
.e-ribbon .e-tab .e-tab-header .e-hscroll {
|
|
39
|
-
display: inline-block !important;
|
|
39
|
+
display: inline-block !important; /* stylelint-disable-line declaration-no-important */
|
|
40
40
|
width: calc(100% - 28px);
|
|
41
41
|
}
|
|
42
42
|
.e-ribbon .e-tab .e-tab-header .e-toolbar-items .e-toolbar-item:nth-child(2) .e-tab-wrap {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
min-height: 35px;
|
|
34
34
|
}
|
|
35
35
|
.e-ribbon .e-tab .e-tab-header .e-hscroll {
|
|
36
|
-
display: inline-block !important;
|
|
36
|
+
display: inline-block !important; /* stylelint-disable-line declaration-no-important */
|
|
37
37
|
width: calc(100% - 28px);
|
|
38
38
|
}
|
|
39
39
|
.e-ribbon .e-tab .e-tab-header .e-toolbar-items .e-toolbar-item:nth-child(2) .e-tab-wrap {
|
package/styles/ribbon/fabric.css
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
min-height: 35px;
|
|
34
34
|
}
|
|
35
35
|
.e-ribbon .e-tab .e-tab-header .e-hscroll {
|
|
36
|
-
display: inline-block !important;
|
|
36
|
+
display: inline-block !important; /* stylelint-disable-line declaration-no-important */
|
|
37
37
|
width: calc(100% - 28px);
|
|
38
38
|
}
|
|
39
39
|
.e-ribbon .e-tab .e-tab-header .e-toolbar-items .e-toolbar-item:nth-child(2) {
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
min-height: 35px;
|
|
37
37
|
}
|
|
38
38
|
.e-ribbon .e-tab .e-tab-header .e-hscroll {
|
|
39
|
-
display: inline-block !important;
|
|
39
|
+
display: inline-block !important; /* stylelint-disable-line declaration-no-important */
|
|
40
40
|
width: calc(100% - 28px);
|
|
41
41
|
}
|
|
42
42
|
.e-ribbon .e-tab .e-tab-header .e-toolbar-items .e-toolbar-item:nth-child(2) .e-tab-wrap {
|
package/styles/ribbon/fluent.css
CHANGED
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
min-height: 35px;
|
|
37
37
|
}
|
|
38
38
|
.e-ribbon .e-tab .e-tab-header .e-hscroll {
|
|
39
|
-
display: inline-block !important;
|
|
39
|
+
display: inline-block !important; /* stylelint-disable-line declaration-no-important */
|
|
40
40
|
width: calc(100% - 28px);
|
|
41
41
|
}
|
|
42
42
|
.e-ribbon .e-tab .e-tab-header .e-toolbar-items .e-toolbar-item:nth-child(2) .e-tab-wrap {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
min-height: 35px;
|
|
30
30
|
}
|
|
31
31
|
.e-ribbon .e-tab .e-tab-header .e-hscroll {
|
|
32
|
-
display: inline-block !important;
|
|
32
|
+
display: inline-block !important; /* stylelint-disable-line declaration-no-important */
|
|
33
33
|
width: calc(100% - 28px);
|
|
34
34
|
}
|
|
35
35
|
.e-ribbon .e-tab .e-tab-header .e-toolbar-items .e-toolbar-item:nth-child(2) .e-tab-wrap {
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
min-height: 35px;
|
|
37
37
|
}
|
|
38
38
|
.e-ribbon .e-tab .e-tab-header .e-hscroll {
|
|
39
|
-
display: inline-block !important;
|
|
39
|
+
display: inline-block !important; /* stylelint-disable-line declaration-no-important */
|
|
40
40
|
width: calc(100% - 28px);
|
|
41
41
|
}
|
|
42
42
|
.e-ribbon .e-tab .e-tab-header .e-toolbar-items .e-toolbar-item:nth-child(2) .e-tab-wrap {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './bootstrap5.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './fluent.scss';
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
min-height: 35px;
|
|
38
38
|
}
|
|
39
39
|
.e-ribbon .e-tab .e-tab-header .e-hscroll {
|
|
40
|
-
display: inline-block !important;
|
|
40
|
+
display: inline-block !important; /* stylelint-disable-line declaration-no-important */
|
|
41
41
|
width: calc(100% - 28px);
|
|
42
42
|
}
|
|
43
43
|
.e-ribbon .e-tab .e-tab-header .e-toolbar-items .e-toolbar-item:nth-child(2) .e-tab-wrap {
|