@syncfusion/ej2-layouts 25.2.3 → 26.1.38
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/.eslintrc.json +3 -2
- package/dist/ej2-layouts.min.js +2 -2
- package/dist/ej2-layouts.umd.min.js +2 -2
- package/dist/ej2-layouts.umd.min.js.map +1 -1
- package/dist/es6/ej2-layouts.es2015.js +215 -140
- package/dist/es6/ej2-layouts.es2015.js.map +1 -1
- package/dist/es6/ej2-layouts.es5.js +243 -167
- package/dist/es6/ej2-layouts.es5.js.map +1 -1
- package/dist/global/ej2-layouts.min.js +2 -2
- package/dist/global/ej2-layouts.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +7 -7
- package/src/dashboard-layout/dashboard-layout.d.ts +2 -2
- package/src/dashboard-layout/dashboard-layout.js +55 -76
- package/src/splitter/splitter.js +81 -41
- package/src/timeline/timeline-model.d.ts +5 -5
- package/src/timeline/timeline.d.ts +6 -3
- package/src/timeline/timeline.js +107 -33
- package/styles/avatar/_bootstrap5.3-definition.scss +26 -0
- package/styles/avatar/_fluent2-definition.scss +28 -0
- package/styles/avatar/_layout.scss +22 -18
- package/styles/avatar/_material3-definition.scss +0 -7
- package/styles/avatar/bootstrap-dark.css +7 -4
- package/styles/avatar/bootstrap.css +7 -4
- package/styles/avatar/bootstrap4.css +7 -4
- package/styles/avatar/bootstrap5-dark.css +13 -10
- package/styles/avatar/bootstrap5.css +13 -10
- package/styles/avatar/fabric-dark.css +7 -4
- package/styles/avatar/fabric.css +7 -4
- package/styles/avatar/fluent-dark.css +11 -8
- package/styles/avatar/fluent.css +11 -8
- package/styles/avatar/fluent2.css +1097 -0
- package/styles/avatar/fluent2.scss +3 -0
- package/styles/avatar/highcontrast-light.css +7 -4
- package/styles/avatar/highcontrast.css +7 -4
- package/styles/avatar/material-dark.css +7 -4
- package/styles/avatar/material.css +7 -4
- package/styles/avatar/material3-dark.css +12 -9
- package/styles/avatar/material3.css +12 -9
- package/styles/avatar/tailwind-dark.css +11 -8
- package/styles/avatar/tailwind.css +11 -8
- package/styles/bootstrap-dark.css +359 -197
- package/styles/bootstrap-dark.scss +14 -5
- package/styles/bootstrap.css +359 -197
- package/styles/bootstrap.scss +14 -5
- package/styles/bootstrap4.css +357 -196
- package/styles/bootstrap4.scss +14 -5
- package/styles/bootstrap5-dark.css +370 -207
- package/styles/bootstrap5-dark.scss +14 -5
- package/styles/bootstrap5.css +370 -207
- package/styles/bootstrap5.scss +14 -5
- package/styles/card/_bootstrap5.3-definition.scss +125 -0
- package/styles/card/_fluent2-definition.scss +123 -0
- package/styles/card/_layout.scss +13 -4
- package/styles/card/_material3-definition.scss +0 -13
- package/styles/card/_theme.scss +4 -16
- package/styles/card/bootstrap-dark.css +95 -52
- package/styles/card/bootstrap.css +95 -52
- package/styles/card/bootstrap4.css +95 -52
- package/styles/card/bootstrap5-dark.css +95 -52
- package/styles/card/bootstrap5.css +95 -52
- package/styles/card/fabric-dark.css +95 -52
- package/styles/card/fabric.css +95 -52
- package/styles/card/fluent-dark.css +99 -54
- package/styles/card/fluent.css +99 -54
- package/styles/card/fluent2.css +1593 -0
- package/styles/card/fluent2.scss +3 -0
- package/styles/card/highcontrast-light.css +95 -52
- package/styles/card/highcontrast.css +95 -52
- package/styles/card/material-dark.css +95 -52
- package/styles/card/material.css +97 -53
- package/styles/card/material3-dark.css +99 -53
- package/styles/card/material3.css +99 -53
- package/styles/card/tailwind-dark.css +95 -52
- package/styles/card/tailwind.css +95 -52
- package/styles/dashboard-layout/_bootstrap5.3-definition.scss +108 -0
- package/styles/dashboard-layout/_fluent2-definition.scss +111 -0
- package/styles/dashboard-layout/_highcontrast-definition.scss +1 -1
- package/styles/dashboard-layout/_layout.scss +62 -60
- package/styles/dashboard-layout/_material3-definition.scss +0 -47
- package/styles/dashboard-layout/_theme.scss +19 -32
- package/styles/dashboard-layout/bootstrap-dark.css +41 -42
- package/styles/dashboard-layout/bootstrap.css +41 -42
- package/styles/dashboard-layout/bootstrap4.css +41 -42
- package/styles/dashboard-layout/bootstrap5-dark.css +48 -47
- package/styles/dashboard-layout/bootstrap5.css +48 -47
- package/styles/dashboard-layout/fabric-dark.css +41 -42
- package/styles/dashboard-layout/fabric.css +41 -42
- package/styles/dashboard-layout/fluent-dark.css +46 -46
- package/styles/dashboard-layout/fluent.css +46 -46
- package/styles/dashboard-layout/fluent2.css +1336 -0
- package/styles/dashboard-layout/fluent2.scss +4 -0
- package/styles/dashboard-layout/highcontrast-light.css +39 -41
- package/styles/dashboard-layout/highcontrast.css +43 -42
- package/styles/dashboard-layout/icons/_bootstrap5.3.scss +80 -0
- package/styles/dashboard-layout/icons/_fluent2.scss +80 -0
- package/styles/dashboard-layout/material-dark.css +41 -42
- package/styles/dashboard-layout/material.css +41 -42
- package/styles/dashboard-layout/material3-dark.css +48 -47
- package/styles/dashboard-layout/material3.css +48 -47
- package/styles/dashboard-layout/tailwind-dark.css +57 -55
- package/styles/dashboard-layout/tailwind.css +57 -55
- package/styles/fabric-dark.css +359 -197
- package/styles/fabric-dark.scss +14 -5
- package/styles/fabric.css +359 -197
- package/styles/fabric.scss +14 -5
- package/styles/fluent-dark.css +370 -206
- package/styles/fluent-dark.scss +14 -5
- package/styles/fluent.css +370 -206
- package/styles/fluent.scss +14 -5
- package/styles/fluent2.css +2803 -0
- package/styles/fluent2.scss +14 -0
- package/styles/highcontrast-light.css +357 -196
- package/styles/highcontrast-light.scss +13 -5
- package/styles/highcontrast.css +361 -197
- package/styles/highcontrast.scss +14 -5
- package/styles/material-dark.css +357 -196
- package/styles/material-dark.scss +14 -5
- package/styles/material.css +359 -197
- package/styles/material.scss +14 -5
- package/styles/material3-dark.css +370 -204
- package/styles/material3-dark.scss +14 -5
- package/styles/material3.css +370 -204
- package/styles/material3.scss +14 -5
- package/styles/splitter/_bootstrap5.3-definition.scss +31 -0
- package/styles/splitter/_fluent2-definition.scss +31 -0
- package/styles/splitter/_layout.scss +0 -4
- package/styles/splitter/_material3-definition.scss +0 -7
- package/styles/splitter/_theme.scss +0 -4
- package/styles/splitter/bootstrap-dark.css +115 -59
- package/styles/splitter/bootstrap.css +115 -59
- package/styles/splitter/bootstrap4.css +113 -58
- package/styles/splitter/bootstrap5-dark.css +113 -58
- package/styles/splitter/bootstrap5.css +113 -58
- package/styles/splitter/fabric-dark.css +115 -59
- package/styles/splitter/fabric.css +115 -59
- package/styles/splitter/fluent-dark.css +113 -58
- package/styles/splitter/fluent.css +113 -58
- package/styles/splitter/fluent2.css +1578 -0
- package/styles/splitter/fluent2.scss +4 -0
- package/styles/splitter/highcontrast-light.css +115 -59
- package/styles/splitter/highcontrast.css +115 -59
- package/styles/splitter/icons/_bootstrap5.3.scss +39 -0
- package/styles/splitter/icons/_fluent2.scss +39 -0
- package/styles/splitter/material-dark.css +113 -58
- package/styles/splitter/material.css +113 -58
- package/styles/splitter/material3-dark.css +114 -59
- package/styles/splitter/material3.css +114 -59
- package/styles/splitter/tailwind-dark.css +113 -58
- package/styles/splitter/tailwind.css +113 -58
- package/styles/tailwind-dark.css +377 -213
- package/styles/tailwind-dark.scss +14 -5
- package/styles/tailwind.css +377 -213
- package/styles/tailwind.scss +14 -5
- package/styles/timeline/_bootstrap5.3-definition.scss +18 -0
- package/styles/timeline/_fluent2-definition.scss +18 -0
- package/styles/timeline/_layout.scss +46 -7
- package/styles/timeline/bootstrap-dark.css +99 -39
- package/styles/timeline/bootstrap.css +99 -39
- package/styles/timeline/bootstrap4.css +99 -39
- package/styles/timeline/bootstrap5-dark.css +99 -39
- package/styles/timeline/bootstrap5.css +99 -39
- package/styles/timeline/fabric-dark.css +99 -39
- package/styles/timeline/fabric.css +99 -39
- package/styles/timeline/fluent-dark.css +99 -39
- package/styles/timeline/fluent.css +99 -39
- package/styles/timeline/fluent2.css +1332 -0
- package/styles/timeline/fluent2.scss +3 -0
- package/styles/timeline/highcontrast-light.css +99 -39
- package/styles/timeline/highcontrast.css +99 -39
- package/styles/timeline/material-dark.css +99 -39
- package/styles/timeline/material.css +99 -39
- package/styles/timeline/material3-dark.css +100 -40
- package/styles/timeline/material3.css +100 -40
- package/styles/timeline/tailwind-dark.css +99 -39
- package/styles/timeline/tailwind.css +99 -39
- package/CHANGELOG.md +0 -601
@@ -0,0 +1,111 @@
|
|
1
|
+
/*! component's theme wise override tailwind-definitions and variables */
|
2
|
+
|
3
|
+
// Generic
|
4
|
+
$icon-zero: 0 !default;
|
5
|
+
$icon-border-radius: 50% !default;
|
6
|
+
$grid-layout-position: relative !default;
|
7
|
+
$panel-position: absolute !default;
|
8
|
+
$panel-box-sizing: border-box !default;
|
9
|
+
|
10
|
+
// Header styles
|
11
|
+
|
12
|
+
// Mouse
|
13
|
+
$panel-header-height: 38px !default;
|
14
|
+
$panel-header-padding: 9px 16px !default;
|
15
|
+
$panel-header-line-height: 22px !default;
|
16
|
+
$panel-header-bg-color: $content-bg-color-alt1 !default;
|
17
|
+
$panel-header-color: $content-text-color !default;
|
18
|
+
$panel-header-font-size: $text-sm !default;
|
19
|
+
$panel-header-font-weight: $font-weight-medium !default;
|
20
|
+
$panel-header-border-bottom: none !default;
|
21
|
+
$panel-header-border-radius: 4px !default;
|
22
|
+
$panel-header-font-family: $font-family !default;
|
23
|
+
$panel-header-white-space: nowrap !default;
|
24
|
+
$panel-header-overflow: hidden !default;
|
25
|
+
$panel-header-text-overflow: ellipsis !default;
|
26
|
+
|
27
|
+
// Touch
|
28
|
+
$panel-bigger-header-height: 44px !default;
|
29
|
+
$panel-bigger-header-padding: 12px 20px !default;
|
30
|
+
$panel-bigger-header-line-height: 22px !default;
|
31
|
+
$panel-bigger-header-color: $content-text-color !default;
|
32
|
+
$panel-bigger-header-font-size: $text-base !default;
|
33
|
+
$panel-bigger-header-font-weight: $font-weight-medium !default;
|
34
|
+
$panel-bigger-content-padding: 16px !default;
|
35
|
+
|
36
|
+
// Panel styles
|
37
|
+
$panel-border: none !default;
|
38
|
+
$panel-border-radius: 4px !default;
|
39
|
+
$panel-full-height: 100% !default;
|
40
|
+
$panel-full-width: 100% !default;
|
41
|
+
$panel-hover-border: 1px solid $border-dark !default;
|
42
|
+
$panel-hover-background: $flyout-bg-color-hover !default;
|
43
|
+
$panel-active-border: 1px solid $border-dark !default;
|
44
|
+
$panel-content-padding: 12px !default;
|
45
|
+
|
46
|
+
// icons styles
|
47
|
+
$panel-resize-one-dimensional-icon-height: 8px !default;
|
48
|
+
$panel-resize-one-dimensional-icon-width: 8px !default;
|
49
|
+
$panel-resize-one-dimensional-icon-background: none !default;
|
50
|
+
$panel-resize-one-dimensional-icon-border: none !default;
|
51
|
+
$panel-resize-one-dimensional-icon-shadow: none !default;
|
52
|
+
|
53
|
+
$panel-resize-two-dimensional-icon-height: 8px !default;
|
54
|
+
$panel-resize-two-dimensional-icon-width: 8px !default;
|
55
|
+
$panel-resize-two-dimensional-inner-icon-height: 8px !default;
|
56
|
+
$panel-resize-two-dimensional-inner-icon-width: 8px !default;
|
57
|
+
$panel-resize-two-dimensional-icon-background: none !default;
|
58
|
+
$panel-resize-two-dimensional-icon-color: $icon-color-disabled !default;
|
59
|
+
$panel-resize-two-dimensional-icon-border: none !default;
|
60
|
+
$panel-resize-two-dimensional-icon-shadow: none !default;
|
61
|
+
|
62
|
+
// south-east-icon-styles
|
63
|
+
$panel-south-east-icon-right: 2px !default;
|
64
|
+
$panel-south-east-icon-bottom: 2px !default;
|
65
|
+
|
66
|
+
// south-west-icon-style
|
67
|
+
$panel-south-west-icon-left: 2px !default;
|
68
|
+
$panel-south-west-icon-bottom: 2px !default;
|
69
|
+
|
70
|
+
// north-east-icon-styles
|
71
|
+
$panel-north-east-icon-right: 2px !default;
|
72
|
+
$panel-north-east-icon-top: 2px !default;
|
73
|
+
|
74
|
+
// north-west-icon-styles
|
75
|
+
$panel-north-west-icon-left: 2px !default;
|
76
|
+
$panel-north-west-icon-top: 2px !default;
|
77
|
+
|
78
|
+
// droppable area border
|
79
|
+
$panel-drop-border-radius: 6px !default;
|
80
|
+
|
81
|
+
// dragging element style
|
82
|
+
$panel-dragging-cursor: move !default;
|
83
|
+
$panel-drag-prevent: none !default;
|
84
|
+
|
85
|
+
// Blazor ContentTemplate styles
|
86
|
+
$panel-content-template-height: inherit !default;
|
87
|
+
$panel-content-template-width: inherit !default;
|
88
|
+
|
89
|
+
/* stylelint-disable */
|
90
|
+
$panel-dragging-zindex: 1111 !important !default;
|
91
|
+
$panel-drag-prevent: none !default;
|
92
|
+
|
93
|
+
$element-width-complete: 100% !important !default;
|
94
|
+
|
95
|
+
// colors
|
96
|
+
|
97
|
+
// Panel styles
|
98
|
+
$panel-active-background: $flyout-bg-color-selected !default;
|
99
|
+
$panel-hover-box-shadow: $shadow-lg !default;
|
100
|
+
$panel-active-drag-box-shadow: $shadow !default;
|
101
|
+
$panel-background: $flyout-bg-color !default;
|
102
|
+
$panel-box-shadow: $shadow;
|
103
|
+
|
104
|
+
// droppable area border
|
105
|
+
$panel-drop-background: $primary-lighter !default;
|
106
|
+
$panel-drop-border: 1px $primary dashed !default;
|
107
|
+
|
108
|
+
//gridlines
|
109
|
+
$gridline-background: $content-bg-color !default;
|
110
|
+
$gridline-border: $border-light !default;
|
111
|
+
$gridline-border-radius: 8px !default;
|
@@ -59,7 +59,7 @@ $panel-resize-two-dimensional-icon-width: 16px !default;
|
|
59
59
|
$panel-resize-two-dimensional-inner-icon-height: 8px !default;
|
60
60
|
$panel-resize-two-dimensional-inner-icon-width: 8px !default;
|
61
61
|
$panel-resize-two-dimensional-icon-background: $selection-bg !default;
|
62
|
-
$panel-resize-two-dimensional-icon-color: $content-font !default
|
62
|
+
$panel-resize-two-dimensional-icon-color: $content-font !default;
|
63
63
|
$panel-resize-two-dimensional-icon-border: 2px $bg-base-0 solid !default;
|
64
64
|
|
65
65
|
// south-east-icon-styles
|
@@ -16,20 +16,20 @@
|
|
16
16
|
border-collapse: collapse;
|
17
17
|
height: $panel-full-height;
|
18
18
|
width: $panel-full-width;
|
19
|
-
}
|
20
19
|
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
20
|
+
td.e-dashboard-gridline {
|
21
|
+
@if ($skin-name == 'tailwind' or $skin-name == 'bootstrap5' or $skin-name == 'Material3') {
|
22
|
+
border: 1px dashed $gridline-border;
|
23
|
+
}
|
24
|
+
@else {
|
25
|
+
border: 1px dotted $gridline-border;
|
26
|
+
}
|
27
|
+
|
28
|
+
@if ($skin-name == 'bootstrap5' or $skin-name == 'fluent2') {
|
29
|
+
border-radius: $gridline-border-radius;
|
30
|
+
}
|
31
|
+
position: absolute;
|
31
32
|
}
|
32
|
-
position: absolute;
|
33
33
|
}
|
34
34
|
|
35
35
|
&.e-responsive {
|
@@ -40,7 +40,15 @@
|
|
40
40
|
user-select: $panel-drag-prevent;
|
41
41
|
}
|
42
42
|
|
43
|
+
& .e-panel.e-ssr {
|
44
|
+
position: relative;
|
45
|
+
}
|
46
|
+
|
43
47
|
& .e-panel {
|
48
|
+
border: $panel-border;
|
49
|
+
height: $panel-full-height;
|
50
|
+
user-select: none;
|
51
|
+
width: $panel-full-width;
|
44
52
|
|
45
53
|
& .e-resize.e-dl-icon {
|
46
54
|
@if ($skin-name == 'tailwind') {
|
@@ -49,13 +57,15 @@
|
|
49
57
|
}
|
50
58
|
|
51
59
|
&:hover {
|
52
|
-
@if ($skin-name != 'tailwind') {
|
60
|
+
@if ($skin-name != 'tailwind' and $skin-name != 'fluent2') {
|
53
61
|
border: $panel-hover-border;
|
54
62
|
}
|
55
|
-
|
56
|
-
@if ($skin-name == 'tailwind' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' or $skin-name == 'Material3') {
|
63
|
+
@if ($skin-name == 'tailwind' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' or $skin-name == 'Material3' or $skin-name == 'fluent2') {
|
57
64
|
box-shadow: $panel-hover-box-shadow;
|
58
65
|
}
|
66
|
+
@if $skin-name == 'fluent2' {
|
67
|
+
background: $panel-hover-background;
|
68
|
+
}
|
59
69
|
|
60
70
|
& .e-panel-container {
|
61
71
|
& .e-resize.e-dl-icon {
|
@@ -71,6 +81,20 @@
|
|
71
81
|
}
|
72
82
|
|
73
83
|
& .e-panel-container {
|
84
|
+
height: $panel-full-height;
|
85
|
+
width: $panel-full-width;
|
86
|
+
|
87
|
+
& .e-panel-content{
|
88
|
+
@if $skin-name == 'tailwind' {
|
89
|
+
padding: $panel-content-padding;
|
90
|
+
}
|
91
|
+
|
92
|
+
.e-blazor-template {
|
93
|
+
height: $panel-content-template-height;
|
94
|
+
width: $panel-content-template-width;
|
95
|
+
}
|
96
|
+
}
|
97
|
+
|
74
98
|
& .e-resize.e-dl-icon {
|
75
99
|
display: none;
|
76
100
|
}
|
@@ -116,29 +140,6 @@
|
|
116
140
|
}
|
117
141
|
}
|
118
142
|
|
119
|
-
& .e-panel-container {
|
120
|
-
height: $panel-full-height;
|
121
|
-
width: $panel-full-width;
|
122
|
-
|
123
|
-
& .e-panel-content .e-blazor-template {
|
124
|
-
height: $panel-content-template-height;
|
125
|
-
width: $panel-content-template-width;
|
126
|
-
}
|
127
|
-
}
|
128
|
-
|
129
|
-
& .e-panel-content {
|
130
|
-
@if $skin-name == 'tailwind' {
|
131
|
-
padding: $panel-content-padding;
|
132
|
-
}
|
133
|
-
}
|
134
|
-
}
|
135
|
-
|
136
|
-
& .e-panel {
|
137
|
-
border: $panel-border;
|
138
|
-
height: $panel-full-height;
|
139
|
-
user-select: none;
|
140
|
-
width: $panel-full-width;
|
141
|
-
|
142
143
|
& .e-resize.e-single,
|
143
144
|
& .e-resize.e-double {
|
144
145
|
position: $panel-position;
|
@@ -189,6 +190,29 @@
|
|
189
190
|
font-family: 'e-icons';
|
190
191
|
position: $panel-position;
|
191
192
|
}
|
193
|
+
|
194
|
+
&.e-dragging,
|
195
|
+
&.e-item-moving {
|
196
|
+
cursor: $panel-dragging-cursor;
|
197
|
+
z-index: $panel-dragging-zindex;
|
198
|
+
@if $skin-name == 'fluent2' {
|
199
|
+
border: none;
|
200
|
+
}
|
201
|
+
}
|
202
|
+
|
203
|
+
&.e-rtl {
|
204
|
+
& .e-panel-header {
|
205
|
+
& .e-header-template {
|
206
|
+
float: left;
|
207
|
+
}
|
208
|
+
}
|
209
|
+
}
|
210
|
+
|
211
|
+
&.e-bigger {
|
212
|
+
& .e-panel-header {
|
213
|
+
@include bigger-header-style;
|
214
|
+
}
|
215
|
+
}
|
192
216
|
}
|
193
217
|
|
194
218
|
& .e-drag:hover {
|
@@ -202,22 +226,6 @@
|
|
202
226
|
}
|
203
227
|
}
|
204
228
|
|
205
|
-
& .e-panel.e-dragging,
|
206
|
-
& .e-panel.e-item-moving {
|
207
|
-
cursor: $panel-dragging-cursor;
|
208
|
-
z-index: $panel-dragging-zindex;
|
209
|
-
}
|
210
|
-
|
211
|
-
& .e-panel.e-rtl {
|
212
|
-
|
213
|
-
& .e-panel-header {
|
214
|
-
|
215
|
-
& .e-header-template {
|
216
|
-
float: left;
|
217
|
-
}
|
218
|
-
}
|
219
|
-
}
|
220
|
-
|
221
229
|
.e-holder {
|
222
230
|
background: $panel-drop-background;
|
223
231
|
border: $panel-drop-border;
|
@@ -232,12 +240,6 @@
|
|
232
240
|
border-radius: $panel-border-radius;
|
233
241
|
}
|
234
242
|
}
|
235
|
-
|
236
|
-
.e-panel.e-bigger {
|
237
|
-
& .e-panel-header {
|
238
|
-
@include bigger-header-style;
|
239
|
-
}
|
240
|
-
}
|
241
243
|
}
|
242
244
|
|
243
245
|
.e-bigger {
|
@@ -1,15 +1,8 @@
|
|
1
|
-
/*! component's theme wise override material 3 definitions and variables */
|
2
|
-
|
3
|
-
// Generic
|
4
1
|
$icon-zero: 0 !default;
|
5
2
|
$icon-border-radius: 50% !default;
|
6
3
|
$grid-layout-position: relative !default;
|
7
4
|
$panel-position: absolute !default;
|
8
5
|
$panel-box-sizing: border-box !default;
|
9
|
-
|
10
|
-
// Header styles
|
11
|
-
|
12
|
-
// Mouse
|
13
6
|
$panel-header-height: 40px !default;
|
14
7
|
$panel-header-padding: 11px 16px !default;
|
15
8
|
$panel-header-line-height: 22px !default;
|
@@ -23,86 +16,46 @@ $panel-header-font-family: $font-family !default;
|
|
23
16
|
$panel-header-white-space: nowrap !default;
|
24
17
|
$panel-header-overflow: hidden !default;
|
25
18
|
$panel-header-text-overflow: ellipsis !default;
|
26
|
-
|
27
|
-
// Touch
|
28
19
|
$panel-bigger-header-height: 48px !default;
|
29
20
|
$panel-bigger-header-padding: 14px 16px !default;
|
30
21
|
$panel-bigger-header-line-height: 24px !default;
|
31
22
|
$panel-bigger-header-color: rgba($content-text-color) !default;
|
32
23
|
$panel-bigger-header-font-size: $text-base !default;
|
33
24
|
$panel-bigger-header-font-weight: $font-weight-medium !default;
|
34
|
-
|
35
|
-
// Panel styles
|
36
25
|
$panel-border: 1px solid rgba($border-light) !default;
|
37
26
|
$panel-border-radius: 8px !default;
|
38
27
|
$panel-full-height: 100% !default;
|
39
28
|
$panel-full-width: 100% !default;
|
40
29
|
$panel-hover-border: 1px solid rgba($border-light) !default;
|
41
30
|
$panel-active-border: 1px solid rgba($primary-border-color) !default;
|
42
|
-
|
43
|
-
// icons styles
|
44
|
-
$panel-resize-one-dimensional-icon-height: 8px !default;
|
45
|
-
$panel-resize-one-dimensional-icon-width: 8px !default;
|
46
|
-
$panel-resize-one-dimensional-icon-background: none !default;
|
47
31
|
$panel-resize-one-dimensional-icon-border: none !default;
|
48
|
-
$panel-resize-one-dimensional-icon-shadow: none !default;
|
49
|
-
|
50
32
|
$panel-resize-two-dimensional-icon-height: 8px !default;
|
51
33
|
$panel-resize-two-dimensional-icon-width: 8px !default;
|
52
34
|
$panel-resize-two-dimensional-inner-icon-height: 8px !default;
|
53
|
-
$panel-resize-two-dimensional-inner-icon-width: 8px !default;
|
54
|
-
$panel-resize-two-dimensional-icon-background: none !default;
|
55
35
|
$panel-resize-two-dimensional-icon-color: $icon-color-disabled !default;
|
56
|
-
$panel-resize-two-dimensional-icon-border: none !default;
|
57
|
-
$panel-resize-two-dimensional-icon-shadow: none !default;
|
58
|
-
|
59
|
-
// south-east-icon-styles
|
60
36
|
$panel-south-east-icon-right: 2px !default;
|
61
37
|
$panel-south-east-icon-bottom: 2px !default;
|
62
|
-
|
63
|
-
// south-west-icon-style
|
64
38
|
$panel-south-west-icon-left: 2px !default;
|
65
39
|
$panel-south-west-icon-bottom: 2px !default;
|
66
|
-
|
67
|
-
// north-east-icon-styles
|
68
40
|
$panel-north-east-icon-right: 2px !default;
|
69
41
|
$panel-north-east-icon-top: 2px !default;
|
70
|
-
|
71
|
-
// north-west-icon-styles
|
72
42
|
$panel-north-west-icon-left: 2px !default;
|
73
43
|
$panel-north-west-icon-top: 2px !default;
|
74
|
-
|
75
|
-
// droppable area border
|
76
44
|
$panel-drop-border-radius: 8px !default;
|
77
|
-
|
78
|
-
// dragging element style
|
79
45
|
$panel-dragging-cursor: move !default;
|
80
46
|
$panel-drag-prevent: none !default;
|
81
|
-
|
82
|
-
// Blazor ContentTemplate styles
|
83
47
|
$panel-content-template-height: inherit !default;
|
84
48
|
$panel-content-template-width: inherit !default;
|
85
|
-
|
86
|
-
/* stylelint-disable */
|
87
49
|
$panel-dragging-zindex: 1111 !important !default;
|
88
50
|
$panel-drag-prevent: none !default;
|
89
|
-
|
90
51
|
$element-width-complete: 100% !important !default;
|
91
|
-
|
92
|
-
// colors
|
93
|
-
|
94
|
-
// Panel styles
|
95
52
|
$panel-active-background: $content-bg-color-alt1 !default;
|
96
53
|
$panel-hover-box-shadow: $shadow-md !default;
|
97
54
|
$panel-active-drag-box-shadow: rgba($shadow) !default;
|
98
55
|
$panel-background: rgba($content-bg-color) !default;
|
99
56
|
$panel-box-shadow: none !default;
|
100
|
-
|
101
|
-
// droppable area border
|
102
57
|
$panel-drop-background: rgba($primary-lighter) !default;
|
103
58
|
$panel-drop-border: 1px rgba($primary-border-color) dashed !default;
|
104
|
-
|
105
|
-
//gridlines
|
106
59
|
$gridline-background: $content-bg-color-alt1 !default;
|
107
60
|
$gridline-border: rgba($primary) !default;
|
108
61
|
$gridline-border-radius: 8px !default;
|
@@ -17,34 +17,6 @@
|
|
17
17
|
box-sizing: $panel-box-sizing;
|
18
18
|
}
|
19
19
|
}
|
20
|
-
}
|
21
|
-
}
|
22
|
-
|
23
|
-
& .e-panel.e-dragging {
|
24
|
-
&:active {
|
25
|
-
@if ($skin-name == 'tailwind') {
|
26
|
-
background: $content-bg-color;
|
27
|
-
box-shadow: $panel-active-drag-box-shadow;
|
28
|
-
}
|
29
|
-
}
|
30
|
-
}
|
31
|
-
|
32
|
-
& .e-panel {
|
33
|
-
background: $panel-background;
|
34
|
-
box-shadow: $panel-box-shadow;
|
35
|
-
box-sizing: $panel-box-sizing;
|
36
|
-
position: $panel-position;
|
37
|
-
|
38
|
-
&:active {
|
39
|
-
@if ($skin-name == 'tailwind' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
|
40
|
-
background: $panel-active-background;
|
41
|
-
}
|
42
|
-
}
|
43
|
-
|
44
|
-
& .e-panel-container {
|
45
|
-
& .e-panel-header {
|
46
|
-
color: $panel-header-color;
|
47
|
-
}
|
48
20
|
|
49
21
|
& .e-resize.e-single {
|
50
22
|
background: none;
|
@@ -117,11 +89,26 @@
|
|
117
89
|
}
|
118
90
|
}
|
119
91
|
}
|
120
|
-
}
|
121
92
|
|
122
|
-
|
123
|
-
|
124
|
-
|
93
|
+
&:active {
|
94
|
+
@if ($skin-name == 'tailwind' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' or $skin-name == 'fluent2') {
|
95
|
+
background: $panel-active-background;
|
96
|
+
}
|
97
|
+
}
|
98
|
+
|
99
|
+
&.e-dragging {
|
100
|
+
&:active {
|
101
|
+
@if ($skin-name == 'tailwind') {
|
102
|
+
background: $content-bg-color;
|
103
|
+
box-shadow: $panel-active-drag-box-shadow;
|
104
|
+
}
|
105
|
+
}
|
106
|
+
}
|
107
|
+
|
108
|
+
&.e-bigger {
|
109
|
+
& .e-panel-header {
|
110
|
+
color: $panel-bigger-header-color;
|
111
|
+
}
|
125
112
|
}
|
126
113
|
}
|
127
114
|
}
|
@@ -59,7 +59,8 @@
|
|
59
59
|
font-size: 12px;
|
60
60
|
left: 0;
|
61
61
|
position: absolute;
|
62
|
-
transform: rotateY(180deg);
|
62
|
+
-webkit-transform: rotateY(180deg);
|
63
|
+
transform: rotateY(180deg);
|
63
64
|
}
|
64
65
|
|
65
66
|
.e-dashboardlayout.e-control .e-dashboard-gridline-table {
|
@@ -68,7 +69,7 @@
|
|
68
69
|
height: 100%;
|
69
70
|
width: 100%;
|
70
71
|
}
|
71
|
-
.e-dashboardlayout.e-control .e-dashboard-gridline-table
|
72
|
+
.e-dashboardlayout.e-control .e-dashboard-gridline-table td.e-dashboard-gridline {
|
72
73
|
border: 1px dotted #2C2C2C;
|
73
74
|
position: absolute;
|
74
75
|
}
|
@@ -77,10 +78,21 @@
|
|
77
78
|
}
|
78
79
|
.e-dashboardlayout.e-control.e-prevent {
|
79
80
|
-webkit-user-select: none;
|
81
|
+
-moz-user-select: none;
|
80
82
|
-ms-user-select: none;
|
81
83
|
user-select: none;
|
82
84
|
}
|
85
|
+
.e-dashboardlayout.e-control .e-panel.e-ssr {
|
86
|
+
position: relative;
|
87
|
+
}
|
83
88
|
.e-dashboardlayout.e-control .e-panel {
|
89
|
+
border: 1px #484848 solid;
|
90
|
+
height: 100%;
|
91
|
+
-webkit-user-select: none;
|
92
|
+
-moz-user-select: none;
|
93
|
+
-ms-user-select: none;
|
94
|
+
user-select: none;
|
95
|
+
width: 100%;
|
84
96
|
border-radius: 2px;
|
85
97
|
}
|
86
98
|
.e-dashboardlayout.e-control .e-panel:hover {
|
@@ -92,10 +104,19 @@
|
|
92
104
|
.e-dashboardlayout.e-control .e-panel:active {
|
93
105
|
border: 1px #0070f0 solid;
|
94
106
|
}
|
107
|
+
.e-dashboardlayout.e-control .e-panel .e-panel-container {
|
108
|
+
height: 100%;
|
109
|
+
width: 100%;
|
110
|
+
}
|
111
|
+
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-content .e-blazor-template {
|
112
|
+
height: inherit;
|
113
|
+
width: inherit;
|
114
|
+
}
|
95
115
|
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-dl-icon {
|
96
116
|
display: none;
|
97
117
|
}
|
98
118
|
.e-dashboardlayout.e-control .e-panel.e-panel-transition {
|
119
|
+
-webkit-transition: top 0.5s, left 0.5s;
|
99
120
|
transition: top 0.5s, left 0.5s;
|
100
121
|
}
|
101
122
|
.e-dashboardlayout.e-control .e-panel .e-panel-header {
|
@@ -118,22 +139,6 @@
|
|
118
139
|
.e-dashboardlayout.e-control .e-panel .e-panel-header .e-header-template {
|
119
140
|
float: right;
|
120
141
|
}
|
121
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container {
|
122
|
-
height: 100%;
|
123
|
-
width: 100%;
|
124
|
-
}
|
125
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-content .e-blazor-template {
|
126
|
-
height: inherit;
|
127
|
-
width: inherit;
|
128
|
-
}
|
129
|
-
.e-dashboardlayout.e-control .e-panel {
|
130
|
-
border: 1px #484848 solid;
|
131
|
-
height: 100%;
|
132
|
-
-webkit-user-select: none;
|
133
|
-
-ms-user-select: none;
|
134
|
-
user-select: none;
|
135
|
-
width: 100%;
|
136
|
-
}
|
137
142
|
.e-dashboardlayout.e-control .e-panel .e-resize.e-single, .e-dashboardlayout.e-control .e-panel .e-resize.e-double {
|
138
143
|
position: absolute;
|
139
144
|
-ms-touch-action: none;
|
@@ -170,13 +175,6 @@
|
|
170
175
|
font-family: "e-icons";
|
171
176
|
position: absolute;
|
172
177
|
}
|
173
|
-
.e-dashboardlayout.e-control .e-drag:hover {
|
174
|
-
cursor: move;
|
175
|
-
}
|
176
|
-
.e-dashboardlayout.e-control .e-drag-restrict.e-drag:hover,
|
177
|
-
.e-dashboardlayout.e-control .e-drag-restrict .e-drag:hover {
|
178
|
-
cursor: default;
|
179
|
-
}
|
180
178
|
.e-dashboardlayout.e-control .e-panel.e-dragging, .e-dashboardlayout.e-control .e-panel.e-item-moving {
|
181
179
|
cursor: move;
|
182
180
|
z-index: 1111 !important;
|
@@ -184,6 +182,19 @@
|
|
184
182
|
.e-dashboardlayout.e-control .e-panel.e-rtl .e-panel-header .e-header-template {
|
185
183
|
float: left;
|
186
184
|
}
|
185
|
+
.e-dashboardlayout.e-control .e-panel.e-bigger .e-panel-header {
|
186
|
+
font-size: 14px;
|
187
|
+
font-weight: 500;
|
188
|
+
height: 30px;
|
189
|
+
padding: 0 12px;
|
190
|
+
}
|
191
|
+
.e-dashboardlayout.e-control .e-drag:hover {
|
192
|
+
cursor: move;
|
193
|
+
}
|
194
|
+
.e-dashboardlayout.e-control .e-drag-restrict.e-drag:hover,
|
195
|
+
.e-dashboardlayout.e-control .e-drag-restrict .e-drag:hover {
|
196
|
+
cursor: default;
|
197
|
+
}
|
187
198
|
.e-dashboardlayout.e-control .e-holder {
|
188
199
|
background: rgba(0, 112, 240, 0.2);
|
189
200
|
border: 2px #0070f0 dotted;
|
@@ -192,14 +203,9 @@
|
|
192
203
|
border-radius: 2px;
|
193
204
|
}
|
194
205
|
.e-dashboardlayout.e-control .e-holder.e-holder-transition {
|
206
|
+
-webkit-transition: top 0.3s, left 0.3s;
|
195
207
|
transition: top 0.3s, left 0.3s;
|
196
208
|
}
|
197
|
-
.e-dashboardlayout.e-control .e-panel.e-bigger .e-panel-header {
|
198
|
-
font-size: 14px;
|
199
|
-
font-weight: 500;
|
200
|
-
height: 30px;
|
201
|
-
padding: 0 12px;
|
202
|
-
}
|
203
209
|
|
204
210
|
.e-bigger .e-dashboardlayout.e-control .e-panel .e-panel-header {
|
205
211
|
font-size: 14px;
|
@@ -218,17 +224,10 @@
|
|
218
224
|
}
|
219
225
|
.e-dashboardlayout.e-control .e-panel {
|
220
226
|
background: #1a1a1a;
|
221
|
-
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header {
|
226
|
-
color: #f0f0f0;
|
227
|
-
}
|
228
|
-
.e-dashboardlayout.e-control .e-panel {
|
229
|
-
background: #1a1a1a;
|
230
|
-
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
|
231
|
-
box-sizing: border-box;
|
227
|
+
-webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
|
228
|
+
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
|
229
|
+
-webkit-box-sizing: border-box;
|
230
|
+
box-sizing: border-box;
|
232
231
|
position: absolute;
|
233
232
|
}
|
234
233
|
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header {
|