@syncfusion/ej2-layouts 19.2.44 → 19.3.43

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.
Files changed (105) hide show
  1. package/.eslintrc.json +1 -1
  2. package/CHANGELOG.md +22 -0
  3. package/dist/ej2-layouts.umd.min.js +2 -2
  4. package/dist/ej2-layouts.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-layouts.es2015.js +103 -254
  6. package/dist/es6/ej2-layouts.es2015.js.map +1 -1
  7. package/dist/es6/ej2-layouts.es5.js +103 -255
  8. package/dist/es6/ej2-layouts.es5.js.map +1 -1
  9. package/dist/global/ej2-layouts.min.js +2 -2
  10. package/dist/global/ej2-layouts.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/helpers/e2e/dashboardHelper.d.ts +63 -0
  13. package/helpers/e2e/dashboardHelper.js +97 -0
  14. package/helpers/e2e/index.d.ts +1 -0
  15. package/helpers/e2e/index.js +1 -0
  16. package/package.json +6 -6
  17. package/src/dashboard-layout/dashboard-layout-model.d.ts +1 -22
  18. package/src/dashboard-layout/dashboard-layout.d.ts +0 -23
  19. package/src/dashboard-layout/dashboard-layout.js +32 -105
  20. package/src/splitter/splitter-model.d.ts +1 -1
  21. package/src/splitter/splitter.d.ts +1 -1
  22. package/src/splitter/splitter.js +73 -151
  23. package/styles/avatar/_bootstrap5-dark-definition.scss +1 -0
  24. package/styles/avatar/_bootstrap5-definition.scss +25 -0
  25. package/styles/avatar/_layout.scss +5 -5
  26. package/styles/avatar/_tailwind-dark-definition.scss +1 -25
  27. package/styles/avatar/bootstrap5-dark.css +61 -0
  28. package/styles/avatar/bootstrap5-dark.scss +3 -0
  29. package/styles/avatar/bootstrap5.css +61 -0
  30. package/styles/avatar/bootstrap5.scss +3 -0
  31. package/styles/bootstrap-dark.css +8 -0
  32. package/styles/bootstrap.css +8 -0
  33. package/styles/bootstrap4.css +8 -0
  34. package/styles/bootstrap5-dark.css +1618 -0
  35. package/styles/bootstrap5-dark.scss +4 -0
  36. package/styles/bootstrap5.css +1618 -0
  37. package/styles/bootstrap5.scss +4 -0
  38. package/styles/card/_bootstrap5-dark-definition.scss +1 -0
  39. package/styles/card/_bootstrap5-definition.scss +119 -0
  40. package/styles/card/_fabric-dark-definition.scss +5 -18
  41. package/styles/card/_layout.scss +2 -2
  42. package/styles/card/_tailwind-dark-definition.scss +1 -122
  43. package/styles/card/_tailwind-definition.scss +5 -9
  44. package/styles/card/bootstrap5-dark.css +593 -0
  45. package/styles/card/bootstrap5-dark.scss +3 -0
  46. package/styles/card/bootstrap5.css +593 -0
  47. package/styles/card/bootstrap5.scss +3 -0
  48. package/styles/card/fabric-dark.css +12 -12
  49. package/styles/card/tailwind-dark.css +2 -3
  50. package/styles/card/tailwind.css +0 -1
  51. package/styles/dashboard-layout/_bootstrap5-dark-definition.scss +1 -0
  52. package/styles/dashboard-layout/_bootstrap5-definition.scss +109 -0
  53. package/styles/dashboard-layout/_layout.scss +14 -5
  54. package/styles/dashboard-layout/_tailwind-dark-definition.scss +1 -109
  55. package/styles/dashboard-layout/_tailwind-definition.scss +27 -28
  56. package/styles/dashboard-layout/_theme.scss +4 -4
  57. package/styles/dashboard-layout/bootstrap5-dark.css +393 -0
  58. package/styles/dashboard-layout/bootstrap5-dark.scss +4 -0
  59. package/styles/dashboard-layout/bootstrap5.css +393 -0
  60. package/styles/dashboard-layout/bootstrap5.scss +4 -0
  61. package/styles/dashboard-layout/icons/_bootstrap5-dark.scss +1 -0
  62. package/styles/dashboard-layout/icons/_bootstrap5.scss +81 -0
  63. package/styles/dashboard-layout/material-dark.css +3 -3
  64. package/styles/dashboard-layout/tailwind-dark.css +10 -8
  65. package/styles/dashboard-layout/tailwind.css +5 -3
  66. package/styles/fabric-dark.css +20 -12
  67. package/styles/fabric.css +8 -0
  68. package/styles/highcontrast-light.css +8 -0
  69. package/styles/highcontrast.css +8 -0
  70. package/styles/material-dark.css +19 -11
  71. package/styles/material.css +8 -0
  72. package/styles/splitter/_bootstrap5-dark-definition.scss +1 -0
  73. package/styles/splitter/_bootstrap5-definition.scss +26 -0
  74. package/styles/splitter/_tailwind-dark-definition.scss +1 -23
  75. package/styles/splitter/_tailwind-definition.scss +14 -11
  76. package/styles/splitter/bootstrap-dark.css +8 -0
  77. package/styles/splitter/bootstrap.css +8 -0
  78. package/styles/splitter/bootstrap4.css +8 -0
  79. package/styles/splitter/bootstrap5-dark.css +568 -0
  80. package/styles/splitter/bootstrap5-dark.scss +4 -0
  81. package/styles/splitter/bootstrap5.css +568 -0
  82. package/styles/splitter/bootstrap5.scss +4 -0
  83. package/styles/splitter/fabric-dark.css +8 -0
  84. package/styles/splitter/fabric.css +8 -0
  85. package/styles/splitter/highcontrast-light.css +8 -0
  86. package/styles/splitter/highcontrast.css +8 -0
  87. package/styles/splitter/icons/_bootstrap-dark.scss +12 -0
  88. package/styles/splitter/icons/_bootstrap.scss +12 -0
  89. package/styles/splitter/icons/_bootstrap4.scss +12 -0
  90. package/styles/splitter/icons/_bootstrap5-dark.scss +1 -0
  91. package/styles/splitter/icons/_bootstrap5.scss +39 -0
  92. package/styles/splitter/icons/_fabric-dark.scss +12 -0
  93. package/styles/splitter/icons/_fabric.scss +12 -0
  94. package/styles/splitter/icons/_highcontrast-light.scss +12 -0
  95. package/styles/splitter/icons/_highcontrast.scss +12 -0
  96. package/styles/splitter/icons/_material-dark.scss +12 -0
  97. package/styles/splitter/icons/_material.scss +12 -0
  98. package/styles/splitter/icons/_tailwind-dark.scss +1 -39
  99. package/styles/splitter/icons/_tailwind.scss +12 -0
  100. package/styles/splitter/material-dark.css +16 -8
  101. package/styles/splitter/material.css +8 -0
  102. package/styles/splitter/tailwind-dark.css +14 -7
  103. package/styles/splitter/tailwind.css +8 -1
  104. package/styles/tailwind-dark.css +26 -18
  105. package/styles/tailwind.css +13 -5
@@ -0,0 +1,393 @@
1
+ /*! component's theme wise override tailwind-definitions and variables */
2
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-east,
3
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-east {
4
+ height: 100%;
5
+ padding: 20px 0;
6
+ right: 1px;
7
+ top: 0;
8
+ width: 12px;
9
+ }
10
+
11
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-west,
12
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-west {
13
+ height: 100%;
14
+ left: 0;
15
+ padding: 20px 0;
16
+ top: 0;
17
+ width: 12px;
18
+ }
19
+
20
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-north,
21
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-north {
22
+ height: 12px;
23
+ padding: 0 20px;
24
+ top: 1px;
25
+ width: 100%;
26
+ }
27
+
28
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-south,
29
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-south {
30
+ bottom: 1px;
31
+ height: 12px;
32
+ padding: 0 20px;
33
+ width: 100%;
34
+ }
35
+
36
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-south-east,
37
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-south-east {
38
+ bottom: 0;
39
+ right: 1px;
40
+ z-index: 10;
41
+ }
42
+
43
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-north-west,
44
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-north-west {
45
+ left: 2px;
46
+ top: 2px;
47
+ z-index: 10;
48
+ }
49
+
50
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-north-east,
51
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-north-east {
52
+ right: 2px;
53
+ top: 2px;
54
+ z-index: 10;
55
+ }
56
+
57
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-south-west,
58
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-south-west {
59
+ bottom: 1px;
60
+ left: 1px;
61
+ z-index: 10;
62
+ }
63
+
64
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-south-east::before,
65
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-south-east::before {
66
+ bottom: 4px;
67
+ content: '\e761';
68
+ font-size: 12px;
69
+ position: absolute;
70
+ right: 4px;
71
+ }
72
+
73
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-south-west::before,
74
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-south-west::before {
75
+ bottom: 4px;
76
+ content: '\e761';
77
+ font-size: 12px;
78
+ left: 4px;
79
+ position: absolute;
80
+ transform: rotateY(180deg);
81
+ }
82
+
83
+ .e-dashboardlayout.e-control .e-dashboard-gridline-table {
84
+ background: #f8f9fa;
85
+ border-collapse: collapse;
86
+ height: 100%;
87
+ width: 100%;
88
+ }
89
+
90
+ .e-dashboardlayout.e-control .e-dashboard-gridline-table tbody tr td.e-dashboard-gridline {
91
+ border: 1px dashed #adb5bd;
92
+ border-radius: 6px;
93
+ position: absolute;
94
+ }
95
+
96
+ .e-dashboardlayout.e-control.e-responsive {
97
+ width: 100% !important;
98
+ }
99
+
100
+ .e-dashboardlayout.e-control.e-prevent {
101
+ -webkit-user-select: none;
102
+ -ms-user-select: none;
103
+ user-select: none;
104
+ }
105
+
106
+ .e-dashboardlayout.e-control .e-panel {
107
+ border-radius: 4px;
108
+ }
109
+
110
+ .e-dashboardlayout.e-control .e-panel:hover {
111
+ border: 1px solid #adb5bd;
112
+ box-shadow: 0 0.8px 16px rgba(0, 0, 0, 0.15);
113
+ }
114
+
115
+ .e-dashboardlayout.e-control .e-panel:hover .e-panel-container .e-resize.e-dl-icon {
116
+ display: block;
117
+ }
118
+
119
+ .e-dashboardlayout.e-control .e-panel:active {
120
+ border: 1px solid #0d6efd;
121
+ }
122
+
123
+ .e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-dl-icon {
124
+ display: none;
125
+ }
126
+
127
+ .e-dashboardlayout.e-control .e-panel.e-panel-transition {
128
+ transition: top .5s, left .5s;
129
+ }
130
+
131
+ .e-dashboardlayout.e-control .e-panel .e-panel-header {
132
+ border-bottom: none;
133
+ color: #212529;
134
+ font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
135
+ font-size: 14px;
136
+ font-weight: 500;
137
+ height: 38px;
138
+ padding: 8px 18px;
139
+ border-top-left-radius: 4px;
140
+ border-top-right-radius: 4px;
141
+ }
142
+
143
+ .e-dashboardlayout.e-control .e-panel .e-panel-header div {
144
+ overflow: hidden;
145
+ text-overflow: ellipsis;
146
+ white-space: nowrap;
147
+ }
148
+
149
+ .e-dashboardlayout.e-control .e-panel .e-panel-header .e-header-content {
150
+ display: inline-block;
151
+ }
152
+
153
+ .e-dashboardlayout.e-control .e-panel .e-panel-header .e-header-template {
154
+ float: right;
155
+ }
156
+
157
+ .e-dashboardlayout.e-control .e-panel .e-panel-container {
158
+ height: 100%;
159
+ width: 100%;
160
+ }
161
+
162
+ .e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-content .e-blazor-template {
163
+ height: inherit;
164
+ width: inherit;
165
+ }
166
+
167
+ .e-dashboardlayout.e-control .e-panel {
168
+ border: 1px solid #dee2e6;
169
+ height: 100%;
170
+ -webkit-user-select: none;
171
+ -ms-user-select: none;
172
+ user-select: none;
173
+ width: 100%;
174
+ }
175
+
176
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-single,
177
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-double {
178
+ position: absolute;
179
+ -ms-touch-action: none;
180
+ touch-action: none;
181
+ }
182
+
183
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-east, .e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-west, .e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-north, .e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-south,
184
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-east,
185
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-west,
186
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-north,
187
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-south {
188
+ border: none;
189
+ }
190
+
191
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-east:hover,
192
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-east:hover {
193
+ cursor: e-resize;
194
+ }
195
+
196
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-west:hover,
197
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-west:hover {
198
+ cursor: w-resize;
199
+ }
200
+
201
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-north:hover,
202
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-north:hover {
203
+ cursor: n-resize;
204
+ }
205
+
206
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-south:hover,
207
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-south:hover {
208
+ cursor: s-resize;
209
+ }
210
+
211
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-north-west:hover,
212
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-north-west:hover {
213
+ cursor: nw-resize;
214
+ }
215
+
216
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-north-east:hover,
217
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-north-east:hover {
218
+ cursor: ne-resize;
219
+ }
220
+
221
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-south-west:hover,
222
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-south-west:hover {
223
+ cursor: sw-resize;
224
+ }
225
+
226
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-south-east:hover,
227
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-south-east:hover {
228
+ cursor: se-resize;
229
+ }
230
+
231
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-single::before,
232
+ .e-dashboardlayout.e-control .e-panel .e-resize.e-double::before {
233
+ font-family: 'e-icons';
234
+ position: absolute;
235
+ }
236
+
237
+ .e-dashboardlayout.e-control .e-drag:hover {
238
+ cursor: move;
239
+ }
240
+
241
+ .e-dashboardlayout.e-control .e-drag-restrict.e-drag:hover,
242
+ .e-dashboardlayout.e-control .e-drag-restrict .e-drag:hover {
243
+ cursor: default;
244
+ }
245
+
246
+ .e-dashboardlayout.e-control .e-panel.e-dragging,
247
+ .e-dashboardlayout.e-control .e-panel.e-item-moving {
248
+ cursor: move;
249
+ z-index: 1111 !important;
250
+ }
251
+
252
+ .e-dashboardlayout.e-control .e-panel.e-rtl .e-panel-header .e-header-template {
253
+ float: left;
254
+ }
255
+
256
+ .e-dashboardlayout.e-control .e-holder {
257
+ background: #e7f1ff;
258
+ border: 1px #0d6efd dashed;
259
+ border-radius: 4px;
260
+ position: absolute;
261
+ border-radius: 4px;
262
+ }
263
+
264
+ .e-dashboardlayout.e-control .e-holder.e-holder-transition {
265
+ transition: top .3s, left .3s;
266
+ }
267
+
268
+ .e-dashboardlayout.e-control .e-panel.e-bigger .e-panel-header {
269
+ font-size: 16px;
270
+ font-weight: 500;
271
+ height: 40px;
272
+ padding: 8px 18px;
273
+ }
274
+
275
+ .e-bigger .e-dashboardlayout.e-control .e-panel .e-panel-header {
276
+ font-size: 16px;
277
+ font-weight: 500;
278
+ height: 40px;
279
+ padding: 8px 18px;
280
+ }
281
+
282
+ .e-content-placeholder.e-dashboardlayout.e-placeholder-dashboardlayout {
283
+ height: 100%;
284
+ width: 100%;
285
+ }
286
+
287
+ .e-dashboardlayout.e-control {
288
+ display: block;
289
+ position: relative;
290
+ }
291
+
292
+ .e-dashboardlayout.e-control .e-panel {
293
+ background: #fff;
294
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.075);
295
+ box-sizing: border-box;
296
+ position: absolute;
297
+ }
298
+
299
+ .e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header {
300
+ color: #212529;
301
+ background: #f8f9fa;
302
+ box-sizing: border-box;
303
+ }
304
+
305
+ .e-dashboardlayout.e-control .e-panel {
306
+ background: #fff;
307
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.075);
308
+ box-sizing: border-box;
309
+ position: absolute;
310
+ }
311
+
312
+ .e-dashboardlayout.e-control .e-panel:active {
313
+ background: #fff;
314
+ }
315
+
316
+ .e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header {
317
+ color: #212529;
318
+ }
319
+
320
+ .e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-single {
321
+ background: none;
322
+ }
323
+
324
+ .e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-double {
325
+ color: #adb5bd;
326
+ font-size: 8px;
327
+ height: 8px;
328
+ width: 8px;
329
+ }
330
+
331
+ .e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-double.e-south-east-double {
332
+ bottom: 2px;
333
+ right: 2px;
334
+ }
335
+
336
+ .e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-double.e-south-west-double {
337
+ bottom: 2px;
338
+ left: 2px;
339
+ }
340
+
341
+ .e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-double.e-north-west-double {
342
+ left: 2px;
343
+ top: 2px;
344
+ }
345
+
346
+ .e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-double.e-north-east-double {
347
+ right: 2px;
348
+ top: 2px;
349
+ }
350
+
351
+ .e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-double.e-north-east-shrink {
352
+ right: 2px;
353
+ top: 2px;
354
+ }
355
+
356
+ .e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-double.e-north-west-shrink {
357
+ left: 2px;
358
+ top: 2px;
359
+ }
360
+
361
+ .e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-double.e-south-west-shrink {
362
+ bottom: 2px;
363
+ left: 2px;
364
+ }
365
+
366
+ .e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-double.e-south-east-shrink {
367
+ bottom: 2px;
368
+ right: 2px;
369
+ }
370
+
371
+ .e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-double.e-north-east-expand {
372
+ right: 2px;
373
+ top: 2px;
374
+ }
375
+
376
+ .e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-double.e-north-west-expand {
377
+ left: 2px;
378
+ top: 2px;
379
+ }
380
+
381
+ .e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-double.e-south-west-expand {
382
+ bottom: 2px;
383
+ left: 2px;
384
+ }
385
+
386
+ .e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-double.e-south-east-expand {
387
+ bottom: 2px;
388
+ right: 2px;
389
+ }
390
+
391
+ .e-dashboardlayout.e-control .e-panel.e-bigger .e-panel-header {
392
+ color: #212529;
393
+ }
@@ -0,0 +1,4 @@
1
+ @import 'ej2-base/styles/bootstrap5-definition.scss';
2
+ @import 'bootstrap5-definition.scss';
3
+ @import 'icons/bootstrap5.scss';
4
+ @import 'all.scss';
@@ -0,0 +1 @@
1
+ @import './bootstrap5.scss';
@@ -0,0 +1,81 @@
1
+ @include export-module('dashboardlayout-bootsrtap5-icons') {
2
+ .e-dashboardlayout.e-control {
3
+ & .e-panel {
4
+
5
+ & .e-resize.e-single,
6
+ & .e-resize.e-double {
7
+ &.e-east {
8
+ height: 100%;
9
+ padding: 20px 0;
10
+ right: 1px;
11
+ top: 0;
12
+ width: 12px;
13
+
14
+ }
15
+
16
+ &.e-west {
17
+ height: 100%;
18
+ left: 0;
19
+ padding: 20px 0;
20
+ top: 0;
21
+ width: 12px;
22
+ }
23
+
24
+ &.e-north {
25
+ height: 12px;
26
+ padding: 0 20px;
27
+ top: 1px;
28
+ width: 100%;
29
+ }
30
+
31
+ &.e-south {
32
+ bottom: 1px;
33
+ height: 12px;
34
+ padding: 0 20px;
35
+ width: 100%;
36
+ }
37
+
38
+ &.e-south-east {
39
+ bottom: 0;
40
+ right: 1px;
41
+ z-index: 10;
42
+ }
43
+
44
+ &.e-north-west {
45
+ left: 2px;
46
+ top: 2px;
47
+ z-index: 10;
48
+ }
49
+
50
+ &.e-north-east {
51
+ right: 2px;
52
+ top: 2px;
53
+ z-index: 10;
54
+ }
55
+
56
+ &.e-south-west {
57
+ bottom: 1px;
58
+ left: 1px;
59
+ z-index: 10;
60
+ }
61
+
62
+ &.e-south-east::before {
63
+ bottom: 4px;
64
+ content: '\e761';
65
+ font-size: 12px;
66
+ position: absolute;
67
+ right: 4px;
68
+ }
69
+
70
+ &.e-south-west::before {
71
+ bottom: 4px;
72
+ content: '\e761';
73
+ font-size: 12px;
74
+ left: 4px;
75
+ position: absolute;
76
+ transform: rotateY(180deg);
77
+ }
78
+ }
79
+ }
80
+ }
81
+ }
@@ -116,7 +116,7 @@
116
116
  }
117
117
 
118
118
  .e-dashboardlayout.e-control .e-panel:active {
119
- border: 1px #ff80ab solid;
119
+ border: 1px #00b0ff solid;
120
120
  }
121
121
 
122
122
  .e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-dl-icon {
@@ -251,8 +251,8 @@
251
251
  }
252
252
 
253
253
  .e-dashboardlayout.e-control .e-holder {
254
- background: rgba(255, 128, 171, 0.25);
255
- border: 2px rgba(255, 128, 171, 0.25) dotted;
254
+ background: rgba(0, 176, 255, 0.25);
255
+ border: 2px rgba(0, 176, 255, 0.25) dotted;
256
256
  border-radius: 0;
257
257
  position: absolute;
258
258
  border-radius: 2px;
@@ -82,14 +82,14 @@
82
82
  }
83
83
 
84
84
  .e-dashboardlayout.e-control .e-dashboard-gridline-table {
85
- background: #4b5563;
85
+ background: #232e3e;
86
86
  border-collapse: collapse;
87
87
  height: 100%;
88
88
  width: 100%;
89
89
  }
90
90
 
91
91
  .e-dashboardlayout.e-control .e-dashboard-gridline-table tbody tr td.e-dashboard-gridline {
92
- border: 1px dashed #9ca3af;
92
+ border: 1px dashed #6b7280;
93
93
  position: absolute;
94
94
  }
95
95
 
@@ -112,7 +112,7 @@
112
112
  }
113
113
 
114
114
  .e-dashboardlayout.e-control .e-panel:hover {
115
- border: none;
115
+ border: 1px solid #9ca3af;
116
116
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
117
117
  }
118
118
 
@@ -121,7 +121,7 @@
121
121
  }
122
122
 
123
123
  .e-dashboardlayout.e-control .e-panel:active {
124
- border: none;
124
+ border: 1px solid #22d3ee;
125
125
  }
126
126
 
127
127
  .e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-dl-icon {
@@ -141,6 +141,8 @@
141
141
  height: 38px;
142
142
  padding: 8px 18px;
143
143
  line-height: 22px;
144
+ border-top-left-radius: 6px;
145
+ border-top-right-radius: 6px;
144
146
  }
145
147
 
146
148
  .e-dashboardlayout.e-control .e-panel .e-panel-header div {
@@ -168,7 +170,7 @@
168
170
  }
169
171
 
170
172
  .e-dashboardlayout.e-control .e-panel {
171
- border: 1px #1f2937;
173
+ border: 1px solid #4b5563;
172
174
  height: 100%;
173
175
  -webkit-user-select: none;
174
176
  -ms-user-select: none;
@@ -257,7 +259,7 @@
257
259
  }
258
260
 
259
261
  .e-dashboardlayout.e-control .e-holder {
260
- background: #374151;
262
+ background: #4b5563;
261
263
  border: 1px #9ca3af dashed;
262
264
  border-radius: 6px;
263
265
  position: absolute;
@@ -295,7 +297,7 @@
295
297
  }
296
298
 
297
299
  .e-dashboardlayout.e-control .e-panel {
298
- background: #1f2937;
300
+ background: #374151;
299
301
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
300
302
  box-sizing: border-box;
301
303
  position: absolute;
@@ -313,7 +315,7 @@
313
315
  }
314
316
 
315
317
  .e-dashboardlayout.e-control .e-panel {
316
- background: #1f2937;
318
+ background: #374151;
317
319
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
318
320
  box-sizing: border-box;
319
321
  position: absolute;
@@ -112,7 +112,7 @@
112
112
  }
113
113
 
114
114
  .e-dashboardlayout.e-control .e-panel:hover {
115
- border: none;
115
+ border: 1px solid #9ca3af;
116
116
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
117
117
  }
118
118
 
@@ -121,7 +121,7 @@
121
121
  }
122
122
 
123
123
  .e-dashboardlayout.e-control .e-panel:active {
124
- border: none;
124
+ border: 1px solid #4f46e5;
125
125
  }
126
126
 
127
127
  .e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-dl-icon {
@@ -141,6 +141,8 @@
141
141
  height: 38px;
142
142
  padding: 8px 18px;
143
143
  line-height: 22px;
144
+ border-top-left-radius: 6px;
145
+ border-top-right-radius: 6px;
144
146
  }
145
147
 
146
148
  .e-dashboardlayout.e-control .e-panel .e-panel-header div {
@@ -168,7 +170,7 @@
168
170
  }
169
171
 
170
172
  .e-dashboardlayout.e-control .e-panel {
171
- border: 1px #fff;
173
+ border: 1px solid #e5e7eb;
172
174
  height: 100%;
173
175
  -webkit-user-select: none;
174
176
  -ms-user-select: none;
@@ -567,7 +567,7 @@
567
567
  .e-card {
568
568
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
569
569
  background-color: #201f1f;
570
- border: 1px solid #201f1f;
570
+ border: 1px solid #dadada;
571
571
  box-shadow: none;
572
572
  color: #dadada;
573
573
  outline: none;
@@ -575,17 +575,17 @@
575
575
 
576
576
  .e-card:hover {
577
577
  background-color: #201f1f;
578
- border-color: #201f1f;
578
+ border-color: #dadada;
579
579
  }
580
580
 
581
581
  .e-card:focus {
582
582
  background-color: #201f1f;
583
- border-color: #201f1f;
583
+ border-color: #dadada;
584
584
  }
585
585
 
586
586
  .e-card:active {
587
587
  background-color: #201f1f;
588
- border-color: #201f1f;
588
+ border-color: #dadada;
589
589
  }
590
590
 
591
591
  .e-card .e-card-separator {
@@ -612,31 +612,31 @@
612
612
 
613
613
  .e-card .e-card-actions .e-card-btn,
614
614
  .e-card .e-card-actions a {
615
- background-color: #201f1f;
615
+ background-color: #0074cc;
616
616
  border: 0;
617
- color: #dadada;
617
+ color: #fff;
618
618
  outline: 0;
619
619
  }
620
620
 
621
621
  .e-card .e-card-actions .e-card-btn:hover,
622
622
  .e-card .e-card-actions a:hover {
623
- background-color: #201f1f;
623
+ background-color: #0063ad;
624
624
  border: 0;
625
- color: #dadada;
625
+ color: #fff;
626
626
  }
627
627
 
628
628
  .e-card .e-card-actions .e-card-btn:focus,
629
629
  .e-card .e-card-actions a:focus {
630
- background-color: #201f1f;
630
+ background-color: #0063ad;
631
631
  border: 0;
632
- color: #dadada;
632
+ color: #fff;
633
633
  }
634
634
 
635
635
  .e-card .e-card-actions .e-card-btn:active,
636
636
  .e-card .e-card-actions a:active {
637
- background-color: #201f1f;
637
+ background-color: #0074cc;
638
638
  border: 0;
639
- color: #dadada;
639
+ color: #fff;
640
640
  }
641
641
 
642
642
  .e-card .e-card-content {
@@ -649,6 +649,10 @@
649
649
  font-size: 14px;
650
650
  }
651
651
 
652
+ .e-splitter .e-split-bar.e-split-bar-horizontal .e-resize-handler.e-template-resize-handler::before {
653
+ content: '';
654
+ }
655
+
652
656
  .e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler::before {
653
657
  content: '\e984';
654
658
  font-family: 'e-icons';
@@ -656,6 +660,10 @@
656
660
  transform: rotate(90deg);
657
661
  }
658
662
 
663
+ .e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler.e-template-resize-handler::before {
664
+ content: '';
665
+ }
666
+
659
667
  .e-bigger .e-splitter .e-split-bar .e-resize-handler::before {
660
668
  font-size: 16px;
661
669
  }