@obaidazoqili/skysoftware-styles 1.0.0 → 1.1.0
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 +8 -4
- package/styles/dx-styles.scss +1423 -0
package/package.json
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@obaidazoqili/skysoftware-styles",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Shared styles",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
7
|
-
|
|
7
|
+
"styles/**/*"
|
|
8
|
+
],
|
|
9
|
+
"keywords": [
|
|
10
|
+
"styles",
|
|
11
|
+
"angular",
|
|
12
|
+
"SkySoftware"
|
|
8
13
|
],
|
|
9
|
-
"keywords": ["styles","angular","SkySoftware"],
|
|
10
14
|
"license": "MIT"
|
|
11
|
-
|
|
15
|
+
}
|
|
@@ -0,0 +1,1423 @@
|
|
|
1
|
+
@import "../../themes/generated/variables.base";
|
|
2
|
+
$side-panel-min-width: 60px;
|
|
3
|
+
$base-border-width: 2px;
|
|
4
|
+
$base-border-tab-width: 3px;
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
.dx-calendar-cell span {
|
|
8
|
+
border-radius: 16px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.dx-calendar-body thead th {
|
|
12
|
+
text-align: center;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.dx-calendar-cell.dx-state-active span {
|
|
16
|
+
background-color: rgba(36, 158, 160, 0.4)
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.dx-calendar-cell-range-hover.dx-calendar-cell-end-in-row::after {
|
|
20
|
+
border-inline-end-color: rgba(36, 158, 160, 0.24);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.dx-calendar-cell.dx-state-hover span {
|
|
24
|
+
background-color: rgba(36, 158, 160, 0.24);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.dx-calendar-cell-range-hover::after {
|
|
28
|
+
border-color: rgba(36, 158, 160, 0.24) transparent;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.dx-calendar-cell-range-hover.dx-calendar-cell-range-hover-end::after {
|
|
32
|
+
border-inline-end-color: rgba(36, 158, 160, 0.24);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.dx-calendar-cell-range-hover.dx-calendar-cell-start-in-row::after {
|
|
36
|
+
border-inline-start-color: rgba(36, 158, 160, 0.24);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.dx-calendar-cell-in-range::before {
|
|
40
|
+
background-color: rgba(36, 158, 160, 0.24);
|
|
41
|
+
border-color: rgba(36, 158, 160, 0.24) transparent;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.dx-calendar-cell-in-range.dx-calendar-range-end-date::before {
|
|
45
|
+
border-start-end-radius: 16px;
|
|
46
|
+
border-end-end-radius: 16px;
|
|
47
|
+
border-inline-end-color: rgba(36, 158, 160, 0.24);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.dx-calendar-cell-in-range.dx-calendar-range-start-date::before {
|
|
51
|
+
border-inline-start-color: rgba(36, 158, 160, 0.24);
|
|
52
|
+
border-start-start-radius: 16px;
|
|
53
|
+
border-end-start-radius: 16px;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.dx-calendar-cell.dx-calendar-contoured-date span {
|
|
57
|
+
box-shadow: 0 0 0 2px rgba(36, 158, 160, 0.24);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.dx-calendar-cell.dx-calendar-selected-date span {
|
|
61
|
+
color: #fff !important;
|
|
62
|
+
background-color: #00796B !important;
|
|
63
|
+
z-index:100
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.dx-calendar-cell.dx-calendar-today span {
|
|
67
|
+
border: 2px solid #00796B;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
html, body {
|
|
71
|
+
margin: 0px;
|
|
72
|
+
min-height: 100%;
|
|
73
|
+
height: 100%;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
* {
|
|
77
|
+
box-sizing: border-box;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.content {
|
|
81
|
+
line-height: 1.5;
|
|
82
|
+
flex-grow: 1;
|
|
83
|
+
max-height: 100%;
|
|
84
|
+
|
|
85
|
+
h2 {
|
|
86
|
+
font-size: 30px;
|
|
87
|
+
margin-top: 20px;
|
|
88
|
+
margin-bottom: 20px;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.container {
|
|
93
|
+
height: 100%;
|
|
94
|
+
flex-direction: column;
|
|
95
|
+
display: flex;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.breadcrumb-container {
|
|
99
|
+
position: sticky;
|
|
100
|
+
top: 0;
|
|
101
|
+
z-index: 1000;
|
|
102
|
+
background-color: #f9fafb;
|
|
103
|
+
height: auto !important;
|
|
104
|
+
flex-direction: column;
|
|
105
|
+
display: flex;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.layout-body {
|
|
109
|
+
flex: 1;
|
|
110
|
+
min-height: 0;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.side-nav-outer-toolbar .dx-drawer {
|
|
114
|
+
height: calc(100% - 56px)
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.content-block {
|
|
118
|
+
margin-left: 40px;
|
|
119
|
+
margin-right: 40px;
|
|
120
|
+
margin-top: 20px;
|
|
121
|
+
|
|
122
|
+
.screen-x-small & {
|
|
123
|
+
margin-left: 20px;
|
|
124
|
+
margin-right: 20px;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.responsive-paddings {
|
|
129
|
+
padding: 20px;
|
|
130
|
+
|
|
131
|
+
.screen-large & {
|
|
132
|
+
padding: 40px;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.dx-card.wide-card {
|
|
137
|
+
border-radius: 0;
|
|
138
|
+
margin-left: 0;
|
|
139
|
+
margin-right: 0;
|
|
140
|
+
border-right: 0;
|
|
141
|
+
border-left: 0;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.with-footer > .dx-scrollable-wrapper > .dx-scrollable-container > .dx-scrollable-content {
|
|
145
|
+
height: 100%;
|
|
146
|
+
|
|
147
|
+
& > .dx-scrollview-content {
|
|
148
|
+
display: flex;
|
|
149
|
+
flex-direction: column;
|
|
150
|
+
min-height: 100%;
|
|
151
|
+
height: inherit;
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
/* sidebar-menu design */
|
|
155
|
+
|
|
156
|
+
.sidebar-menu-container {
|
|
157
|
+
min-height: 100%;
|
|
158
|
+
display: flex;
|
|
159
|
+
flex: 1;
|
|
160
|
+
|
|
161
|
+
::ng-deep .dx-treeview {
|
|
162
|
+
white-space: nowrap;
|
|
163
|
+
transition: all 0.5s ease;
|
|
164
|
+
|
|
165
|
+
.dx-treeview-item {
|
|
166
|
+
padding: 5px 10px;
|
|
167
|
+
padding-left: 0;
|
|
168
|
+
flex-direction: row-reverse;
|
|
169
|
+
|
|
170
|
+
.dx-icon {
|
|
171
|
+
width: $side-panel-min-width !important;
|
|
172
|
+
margin: 0 !important;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.dx-treeview-item.dx-state-hover {
|
|
177
|
+
|
|
178
|
+
.dx-treeview-item-content {
|
|
179
|
+
color: $base-accent;
|
|
180
|
+
background: $base-bg;
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.dx-treeview-node {
|
|
185
|
+
padding: 0 0 !important;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.dx-treeview-toggle-item-visibility {
|
|
189
|
+
right: 10px;
|
|
190
|
+
left: auto;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.dx-rtl .dx-treeview-toggle-item-visibility {
|
|
194
|
+
left: 10px;
|
|
195
|
+
right: auto;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.dx-treeview-node {
|
|
199
|
+
color: $base-label-color;
|
|
200
|
+
padding: 6px 6px 14px 6px;
|
|
201
|
+
|
|
202
|
+
&[aria-level='1'] {
|
|
203
|
+
font-size: 14px;
|
|
204
|
+
font-weight: 700;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
&[aria-level='2'] .dx-treeview-item-content {
|
|
208
|
+
font-size: 14px;
|
|
209
|
+
font-weight: normal;
|
|
210
|
+
padding: 0 30px;
|
|
211
|
+
margin-left: 30px;
|
|
212
|
+
border: none;
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.dx-treeview-node[aria-level="2"] .dx-treeview-item {
|
|
217
|
+
padding: 8px 10px;
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
// ## Selected & Focuced items customization
|
|
221
|
+
::ng-deep .dx-treeview {
|
|
222
|
+
.dx-treeview-node-container {
|
|
223
|
+
.dx-treeview-node {
|
|
224
|
+
&.dx-state-selected:not(.dx-state-focused) > .dx-treeview-item {
|
|
225
|
+
background: transparent;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
&.dx-state-selected > .dx-treeview-item * {
|
|
229
|
+
color: $base-accent;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
&:not(.dx-state-focused) > .dx-treeview-item.dx-state-hover {
|
|
233
|
+
background-color: rgb(249, 250, 251);
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.dx-treeview-item .dx-treeview-item-content .dx-icon {
|
|
240
|
+
color: $base-accent;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.dx-treeview-item-without-checkbox.dx-state-selected > .dx-treeview-item {
|
|
244
|
+
color: $base-accent;
|
|
245
|
+
background: inherit;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.dx-treeview-item-without-checkbox > .dx-treeview-item.dx-state-hover {
|
|
249
|
+
color: $base-accent;
|
|
250
|
+
background: inherit;
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
/*topbar menu header design */
|
|
254
|
+
|
|
255
|
+
.topbar-header .dx-toolbar {
|
|
256
|
+
background: #222;
|
|
257
|
+
padding: 10px 0;
|
|
258
|
+
|
|
259
|
+
::ng-deep .dx-toolbar-item.menu-button > .dx-toolbar-item-content .dx-icon {
|
|
260
|
+
color: $base-bg;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
::ng-deep .dx-toolbar-item.dx-toolbar-button.menu-button > .dx-button .dx-button-mode-text .dx-state-hover {
|
|
264
|
+
background: $base-accent;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
::ng-deep .dx-toolbar-items-container .dx-toolbar-after {
|
|
268
|
+
padding: 0 20px;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
::ng-deep .dx-toolbar-item.menu-button {
|
|
272
|
+
width: $side-panel-min-width;
|
|
273
|
+
text-align: center;
|
|
274
|
+
padding: 0;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
::ng-deep div.dx-button-mode-contained {
|
|
278
|
+
background: $base-accent;
|
|
279
|
+
color: $base-accent;
|
|
280
|
+
border-color: transparent;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
::ng-deep div.dx-button-mode-contained .dx-icon {
|
|
284
|
+
color: $base-bg;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
:host-context(.dx-theme-generic) {
|
|
288
|
+
.user-button > .dx-button-content {
|
|
289
|
+
padding: 3px;
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.dx-toolbar .header-toolbar div.dx-button-mode-contained {
|
|
295
|
+
background: #222;
|
|
296
|
+
color: $base-bg;
|
|
297
|
+
}
|
|
298
|
+
/* data grid and grid pager */
|
|
299
|
+
.dx-datagrid-borders > .dx-datagrid-headers, .dx-treelist-borders > .dx-treelist-headers {
|
|
300
|
+
border: none !important;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.dx-datagrid-headers {
|
|
304
|
+
border-bottom: none !important;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.dx-datagrid-borders .dx-datagrid-rowsview, .dx-datagrid-headers + .dx-datagrid-rowsview {
|
|
308
|
+
border-top: none !important;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.dx-datagrid-borders > .dx-datagrid-pager {
|
|
312
|
+
padding-top: 5px;
|
|
313
|
+
padding-bottom: 5px;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.dx-datagrid-pager {
|
|
317
|
+
border-top: none;
|
|
318
|
+
border-bottom: none;
|
|
319
|
+
/*border-top: 2px solid $pager-page-selected-bg;*/
|
|
320
|
+
/*border-bottom: 1px solid $base-border-color;*/
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.dx-pager .dx-page-sizes .dx-page-size {
|
|
324
|
+
padding: 5px 9px 5px 10px;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.dx-pager .dx-pages .dx-page {
|
|
328
|
+
padding: 5px 9px 5px;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.dx-pager .dx-pages .dx-info {
|
|
332
|
+
margin-left: 5px !important;
|
|
333
|
+
margin-right: 5px !important;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.dx-datagrid tr.dx-data-row.dx-column-lines > td,
|
|
337
|
+
.dx-datagrid tr.dx-freespace-row.dx-column-lines > td {
|
|
338
|
+
border: none;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.dx-rtl .dx-datagrid tr.dx-data-row.dx-column-lines > td,
|
|
342
|
+
.dx-rtl .dx-datagrid tr.dx-freespace-row.dx-column-lines > td {
|
|
343
|
+
border: none;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.dx-cell-modified {
|
|
347
|
+
background-color: #d6e4f1 !important;
|
|
348
|
+
}
|
|
349
|
+
/* tab control */
|
|
350
|
+
.dx-tab.dx-tab-selected {
|
|
351
|
+
border-bottom: $base-border-tab-width solid $base-accent !important;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
.dx-dropdownbutton-popup-wrapper .dx-list:not(.dx-list-select-decorator-enabled) .dx-list-item-content {
|
|
356
|
+
padding: 7px 8px;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.dx-tab, .dx-tabs-wrapper {
|
|
360
|
+
background-color: white !important;
|
|
361
|
+
border-top: none !important;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.dx-tabpanel-container {
|
|
365
|
+
display: none
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.dx-tabs-nav-button {
|
|
369
|
+
background-color: white;
|
|
370
|
+
border-color: white;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
dx-scroll-view#scrollview {
|
|
374
|
+
min-height: 480px;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
::ng-deep .btn-disabled.dx-button-mode-outlined {
|
|
378
|
+
background-color: #ECECEC !important;
|
|
379
|
+
border-color: #c9c7c7 !important;
|
|
380
|
+
color: #333;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.property-menu {
|
|
384
|
+
.dx-button-mode-outlined {
|
|
385
|
+
color: $base-bg !important;
|
|
386
|
+
border: none;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.dx-icon {
|
|
390
|
+
color: $base-bg !important;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
@media only screen and (max-width: 845px) {
|
|
394
|
+
.dx-button-mode-outlined {
|
|
395
|
+
color: black !important;
|
|
396
|
+
border: none;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
.dx-icon {
|
|
400
|
+
color: black !important;
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.dx-button-text {
|
|
405
|
+
max-width: 245px;
|
|
406
|
+
display: flex;
|
|
407
|
+
justify-content: end;
|
|
408
|
+
-webkit-box-orient: vertical;
|
|
409
|
+
-webkit-line-clamp: 1;
|
|
410
|
+
overflow: hidden;
|
|
411
|
+
text-overflow: ellipsis;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
.dx-button-content {
|
|
415
|
+
justify-content: end;
|
|
416
|
+
}
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.dx-dropdownbutton-popup-wrapper {
|
|
420
|
+
min-width: 200px;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
.dx-overlay-content.dx-popup-normal.dx-resizable.dx-popup-inherit-height {
|
|
424
|
+
top: 10px !important;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
.dx-scrollview-scrollbottom {
|
|
428
|
+
display: none !important;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
.dx-accordion-item {
|
|
432
|
+
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25) inset;
|
|
433
|
+
top: 647.24px;
|
|
434
|
+
left: 175px;
|
|
435
|
+
gap: 0px;
|
|
436
|
+
border-radius: 7px;
|
|
437
|
+
background: var(--Card-bg, rgba(255, 255, 255, 1));
|
|
438
|
+
opacity: 1;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
.dx-accordion-item-opened {
|
|
442
|
+
border-color: transparent;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
.dx-layout-manager .dx-field-item:not(.dx-first-row) {
|
|
446
|
+
padding-top: 16px;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
.dx-texteditor.dx-state-readonly {
|
|
450
|
+
border-style: solid;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
.dx-textbox.dx-texteditor.dx-state-disabled,
|
|
454
|
+
.dx-numberbox.dx-texteditor.dx-state-disabled,
|
|
455
|
+
.dx-textarea.dx-texteditor.dx-state-disabled,
|
|
456
|
+
.dx-state-disabled.dx-checkbox .dx-checkbox-icon,
|
|
457
|
+
.dx-dropdownbutton.dx-state-disabled,
|
|
458
|
+
.dx-switch.dx-state-disabled,
|
|
459
|
+
.dx-datebox.dx-state-disabled,
|
|
460
|
+
.dx-colorbox.dx-texteditor.dx-state-disabled {
|
|
461
|
+
background: #F8F7F7;
|
|
462
|
+
opacity: 1;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
.dx-textarea.dx-texteditor.dx-state-disabled {
|
|
466
|
+
.dx-texteditor-container {
|
|
467
|
+
.dx-texteditor-input {
|
|
468
|
+
overflow: hidden;
|
|
469
|
+
}
|
|
470
|
+
}
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.dx-state-disabled.dx-item.dx-box-item {
|
|
474
|
+
.dx-texteditor-input, .dx-texteditor {
|
|
475
|
+
background: #F8F7F7;
|
|
476
|
+
opacity: 1;
|
|
477
|
+
}
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
.dx-state-disabled .dx-checkbox-text {
|
|
481
|
+
opacity: 1;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.dx-toolbar-item {
|
|
485
|
+
.dx-dropdownbutton.dx-state-disabled,
|
|
486
|
+
.dx-button.dx-state-disabled {
|
|
487
|
+
opacity: .8 !important;
|
|
488
|
+
background: inherit !important;
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.dx-popover-wrapper .dx-popup-content-scrollable {
|
|
493
|
+
padding: 7px;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
.dx-overlay-wrapper .dx-overlay-content.dx-popup-flex-height > .dx-popup-title {
|
|
497
|
+
padding-bottom: 2px;
|
|
498
|
+
padding-top: 2px;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
.dx-popup-title.dx-toolbar .dx-toolbar-item:last-child {
|
|
502
|
+
font-size: medium;
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
.dx-radiogroup .dx-radiobutton,
|
|
506
|
+
.dx-radiogroup .dx-radiobutton-icon {
|
|
507
|
+
margin-bottom: 4px !important;
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
.accordion-view .dx-accordion-item-title {
|
|
512
|
+
color: var(--accent-color);
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
.dx-toolbar-after .dx-toolbar-item {
|
|
516
|
+
padding-inline-start: .5rem;
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
.dx-treelist-none-header .dx-treelist-header-panel {
|
|
520
|
+
border-bottom: none;
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
.dx-datagrid-search-text, .dx-treelist-search-text {
|
|
524
|
+
color: inherit;
|
|
525
|
+
background-color: #ffff00;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
.dx-treelist-headers .dx-treelist-table .dx-row > td {
|
|
529
|
+
border-bottom: 3px solid $base-accent !important;
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
::ng-deep {
|
|
533
|
+
.primary-slider .ngx-slider .ngx-slider-selection {
|
|
534
|
+
background: $base-accent;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
.primary-slider .ngx-slider .ngx-slider-pointer {
|
|
538
|
+
width: 8px;
|
|
539
|
+
height: 16px;
|
|
540
|
+
top: auto;
|
|
541
|
+
bottom: 0;
|
|
542
|
+
background-color: $base-accent;
|
|
543
|
+
border-top-left-radius: 3px;
|
|
544
|
+
border-top-right-radius: 3px;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
.primary-slider .ngx-slider .ngx-slider-pointer:after {
|
|
548
|
+
display: none;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
.primary-slider .ngx-slider .ngx-slider-bubble {
|
|
552
|
+
bottom: 14px;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
.primary-slider .ngx-slider .ngx-slider-bubble.ngx-slider-limit {
|
|
556
|
+
font-weight: bold;
|
|
557
|
+
color: $base-accent;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
.primary-slider .ngx-slider .ngx-slider-tick {
|
|
561
|
+
width: 1px;
|
|
562
|
+
height: 10px;
|
|
563
|
+
margin-left: 4px;
|
|
564
|
+
border-radius: 0;
|
|
565
|
+
background: $base-accent;
|
|
566
|
+
top: -1px;
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
.primary-slider .ngx-slider .ngx-slider-tick.ngx-slider-selected {
|
|
570
|
+
background: $base-accent;
|
|
571
|
+
}
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
::ng-deep .dx-gridbase-container > .dx-treelist-rowsview.dx-scrollable > .dx-scrollable-wrapper {
|
|
575
|
+
padding-right: 9px !important;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
.dx-widget, .dx-box-item-content {
|
|
579
|
+
font-size: 13px !important;
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
.dx-popup-title {
|
|
583
|
+
color: var(--dark-text-color) !important;
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
.dx-checkbox-text {
|
|
587
|
+
-webkit-padding-start: 10px !important;
|
|
588
|
+
padding-inline-start: 10px !important;
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
.dx-popup-wrapper > .dx-overlay-content {
|
|
592
|
+
border: 1px solid rgba(0,0,0,.175) !important;
|
|
593
|
+
border-radius: 0.2rem !important;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
.dx-dropdownbutton-popup-wrapper.dx-popup-wrapper .dx-overlay-content {
|
|
597
|
+
border-top-width: 1px !important;
|
|
598
|
+
min-width: 150px !important;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
.dx-form-group-caption {
|
|
602
|
+
font-size: 16px !important;
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
.dx-form-group-with-caption > .dx-form-group-content {
|
|
606
|
+
padding-top: 5px !important;
|
|
607
|
+
margin-top: 0px !important;
|
|
608
|
+
border-top: 0 !important;
|
|
609
|
+
padding-bottom: 5px !important;
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
.dx-theme-generic-typography .dx-font-xs,
|
|
613
|
+
.dx-theme-generic-typography h6,
|
|
614
|
+
.dx-theme-generic-typography small {
|
|
615
|
+
font-weight: 500 !important;
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
.dx-widget {
|
|
619
|
+
font-size: 12px !important;
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
.dx-checkbox-text {
|
|
623
|
+
-webkit-padding-start: 10px !important;
|
|
624
|
+
padding-inline-start: 10px !important;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
.dx-dropdownbutton-popup-wrapper.dx-popup-wrapper .dx-overlay-content {
|
|
628
|
+
border-top-width: 1px !important;
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
.dx-treelist-rowsview tr:not(.dx-row-focused) .dx-treelist-empty-space {
|
|
632
|
+
color: var(--bs-secondary) !important;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
.dx-state-focused.dx-accordion-item {
|
|
636
|
+
border-color: #c9c7c7 !important;
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
.dx-treeview-toggle-item-visibility {
|
|
640
|
+
color: #4b5563 !important;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.dx-treelist-headers {
|
|
644
|
+
border-bottom: none !important;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.dx-list:not(.dx-list-select-decorator-enabled) .dx-list-item.dx-state-active,
|
|
648
|
+
.dx-list:not(.dx-list-select-decorator-enabled) .dx-list-item.dx-state-focused.dx-list-item-selected,
|
|
649
|
+
.dx-list:not(.dx-list-select-decorator-enabled) .dx-list-item.dx-state-focused {
|
|
650
|
+
background-color: rgba(0, 0, 0, .07) !important;
|
|
651
|
+
color: #4b5563 !important;
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
.dx-treelist-headers {
|
|
655
|
+
color: var(--bs-dark);
|
|
656
|
+
font-weight: 500;
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
.dx-state-disabled .dx-widget, .dx-state-disabled.dx-widget {
|
|
660
|
+
opacity: 1 !important;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
::ng-deep .dx-state-disabled .dx-button {
|
|
664
|
+
cursor: not-allowed !important;
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
::ng-deep .dx-widget .dx-button {
|
|
668
|
+
height: 36px !important;
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
::ng-deep div:has(#dxPopupWithoutPadding) {
|
|
672
|
+
padding: 0px !important;
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
::ng-deep .composite-selectbox-start .dx-selectbox {
|
|
676
|
+
border-start-end-radius: 0px !important;
|
|
677
|
+
border-end-end-radius: 0px !important;
|
|
678
|
+
border-right: none !important;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
::ng-deep .composite-selectbox-end .dx-selectbox {
|
|
682
|
+
border-end-start-radius: 0px !important;
|
|
683
|
+
border-start-start-radius: 0px !important;
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
/*.dx-popover-arrow {
|
|
687
|
+
background-color:black
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
.dx-tooltip-wrapper.dx-popover-wrapper .dx-popover-arrow::after {
|
|
691
|
+
background-color: black;
|
|
692
|
+
}*/
|
|
693
|
+
|
|
694
|
+
.dx-tooltip-wrapper.dx-popover-wrapper .dx-popover-arrow::after {
|
|
695
|
+
border: 1px solid #000000;
|
|
696
|
+
background: #444040;
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
.dx-tooltip-wrapper .dx-overlay-content .dx-popup-content {
|
|
700
|
+
display: inline-block;
|
|
701
|
+
padding: 12px 17px;
|
|
702
|
+
font-size: .85em;
|
|
703
|
+
line-height: normal;
|
|
704
|
+
white-space: nowrap;
|
|
705
|
+
background-color: black;
|
|
706
|
+
border-color: black;
|
|
707
|
+
color: white;
|
|
708
|
+
border-radius: 15px;
|
|
709
|
+
background-color: #444040 !important;
|
|
710
|
+
border-color: #444040 !important;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
.dx-tooltip-wrapper.dx-popover-wrapper .dx-popover-arrow:after {
|
|
714
|
+
border: 1px solid #444040;
|
|
715
|
+
background: #444040;
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
.dx-tooltip-wrapper .dx-overlay-content {
|
|
719
|
+
min-width: 34px;
|
|
720
|
+
min-height: 26px;
|
|
721
|
+
text-align: center;
|
|
722
|
+
line-height: 0;
|
|
723
|
+
border: 1px solid #444040;
|
|
724
|
+
background-color: #444040;
|
|
725
|
+
color: #4b5563;
|
|
726
|
+
box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
|
|
727
|
+
border-radius: 4px;
|
|
728
|
+
border-radius: 15px !important;
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
::ng-deep .dx-tooltip-wrapper {
|
|
732
|
+
z-index: 1515 !important
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
::ng-deep .team-scheduler tr.dx-scheduler-date-table-row,
|
|
736
|
+
::ng-deep .team-scheduler .dx-scheduler-group-row .dx-scheduler-group-header {
|
|
737
|
+
max-height: 70px !important;
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
::ng-deep .team-scheduler .dx-scheduler-group-flex-container .dx-scheduler-group-row:last-child .dx-scheduler-group-header {
|
|
741
|
+
width: 200px;
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
::ng-deep .team-scheduler th.dx-scheduler-header-panel-cell.dx-scheduler-cell-sizes-horizontal {
|
|
745
|
+
max-width: 100px !important
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
|
|
749
|
+
::ng-deep .team-scheduler .dx-scheduler-timeline .dx-scheduler-date-table .dx-scheduler-date-table-cell {
|
|
750
|
+
flex: 1 1 auto;
|
|
751
|
+
width: 100px !important;
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
::ng-deep .team-scheduler tr.dx-scheduler-date-table-row:last-child,
|
|
755
|
+
::ng-deep .team-scheduler .dx-scheduler-group-header:last-child {
|
|
756
|
+
max-height: 100% !important;
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
::ng-deep .team-scheduler tr.dx-scheduler-date-table-row:first-child,
|
|
760
|
+
::ng-deep .team-scheduler .dx-scheduler-group-header:first-child {
|
|
761
|
+
background-color: blanchedalmond;
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
::ng-deep .team-scheduler .dx-scheduler-timeline .dx-scheduler-appointment {
|
|
765
|
+
height: auto !important;
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
::ng-deep .team-scheduler.dx-rtl .dx-scheduler-last-group-cell {
|
|
769
|
+
border-left: none !important;
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
::ng-deep .button-boeder-none .dx-button {
|
|
773
|
+
border-style: none;
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
.dx-field-item-custom-label-content {
|
|
777
|
+
font-size: var(--font-size-12);
|
|
778
|
+
color: #000;
|
|
779
|
+
margin-top: .2rem;
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
.dx-radiogroup.dx-state-disabled, .dx-button.dx-state-disabled {
|
|
783
|
+
opacity: .75 !important;
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
::ng-deep .dx-searchbox .dx-icon-search::before {
|
|
787
|
+
color: #e67e0f
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
::ng-deep .dx-popup-title.dx-toolbar .dx-toolbar-item:last-child {
|
|
791
|
+
font-size: 1rem;
|
|
792
|
+
font-weight: 600;
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
::ng-deep .dx-field-item-custom-label-content {
|
|
796
|
+
font-size: 0.875rem;
|
|
797
|
+
color: #333;
|
|
798
|
+
font-weight: 500;
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
::ng-deep .dx-toolbar.dx-widget.dx-visibility-change-handler.dx-collection.dx-popup-title {
|
|
802
|
+
padding-top: 0.5rem;
|
|
803
|
+
padding-bottom: 0.5rem;
|
|
804
|
+
}
|
|
805
|
+
|
|
806
|
+
::ng-deep .dx-button {
|
|
807
|
+
font-size: var(--font-size-14) !important;
|
|
808
|
+
font-weight: 500 !important;
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
::ng-deep .dx-popup-title.dx-toolbar .dx-toolbar-label {
|
|
812
|
+
max-width: 100% !important;
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
::ng-deep .dx-texteditor-input-container .dx-texteditor-input {
|
|
816
|
+
font-size: 1.1em;
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
::ng-deep .more-button .dx-button-text {
|
|
820
|
+
font-size: var(--font-size-13) !important;
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
::ng-deep .dx-calendar-cell.dx-calendar-today span {
|
|
824
|
+
border: none !important;
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
.custom-switch-dark .form-check-input {
|
|
828
|
+
background-color: var(--bs-gray-dark);
|
|
829
|
+
border-color: var(--bs-gray-dark);
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
.custom-switch-dark .form-check-input:checked {
|
|
833
|
+
background-color: var(--bs-primary) !important;
|
|
834
|
+
border-color: var(--bs-primary);
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
::ng-deep .dx-overlay-content.dx-popup-normal.dx-resizable.dx-popup-inherit-height {
|
|
838
|
+
border: none !important;
|
|
839
|
+
border-radius: 0 !important;
|
|
840
|
+
box-shadow: none !important;
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
.custom-switch-dark .form-check-input:focus {
|
|
844
|
+
border-color: var(--dark-text-color);
|
|
845
|
+
box-shadow: none;
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
.custom-switch-dark .form-check-input:focus {
|
|
849
|
+
--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
|
|
850
|
+
border-color: var(--bs-gray-dark);
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
.custom-switch-dark .form-check-input {
|
|
854
|
+
--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
.custom-switch-dark .form-check-input:checked:focus {
|
|
858
|
+
--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
::ng-deep .dx-toolbar .dx-toolbar-after {
|
|
862
|
+
margin-right: 12px !important;
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
|
|
866
|
+
::ng-deep .dx-state-disabled .dx-button {
|
|
867
|
+
background: #f8f7f7 !important;
|
|
868
|
+
pointer-events: auto !important;
|
|
869
|
+
cursor: not-allowed !important;
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
::ng-deep .dx-datebox-wrapper-calendar .dx-calendar {
|
|
873
|
+
margin-left: 0px;
|
|
874
|
+
margin-right: 0px;
|
|
875
|
+
margin-bottom: 0px;
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
.dx-scrollable-content {
|
|
879
|
+
width: 100%;
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
::ng-deep .dx-texteditor.dx-state-focused.dx-editor-filled {
|
|
883
|
+
border-color: transparent !important;
|
|
884
|
+
}
|
|
885
|
+
/*
|
|
886
|
+
|
|
887
|
+
:ng-deep .dx-autocomplete .dx-texteditor-buttons-container .dx-clear-button-area {
|
|
888
|
+
background: #6d5555e8 !important;
|
|
889
|
+
border-top-right-radius: 5px !important;
|
|
890
|
+
border-bottom-right-radius: 5px;
|
|
891
|
+
border-top-left-radius: 0;
|
|
892
|
+
border-bottom-left-radius: 0;
|
|
893
|
+
}
|
|
894
|
+
*/
|
|
895
|
+
::ng-deep .dx-autocomplete .dx-texteditor-input-container .dx-placeholder {
|
|
896
|
+
color: white !important;
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
.dx-popup-content:not(.dx-popup-content-scrollable) .dx-calendar {
|
|
900
|
+
margin: 5px !important;
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
.dx-calendar-body .dx-calendar-views-wrapper .dx-widget {
|
|
904
|
+
padding: 0px 8px 0 10px;
|
|
905
|
+
}
|
|
906
|
+
|
|
907
|
+
.dx-daterangebox .dx-icon.dx-icon-to::before {
|
|
908
|
+
color: var(--bs-bg-dark-gray);
|
|
909
|
+
}
|
|
910
|
+
|
|
911
|
+
.dx-selectbox-popup-wrapper .dx-scrollable-container {
|
|
912
|
+
overflow-y: scroll !important;
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
.dx-button i.dx-icon.dx-icon-collapse {
|
|
916
|
+
transform: rotate(45deg);
|
|
917
|
+
font-size: 22px !important;
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
.dx-scheduler-timeline-month .dx-scheduler-header-panel-cell:not(.dx-scheduler-header-panel-week-cell) {
|
|
921
|
+
display: flex;
|
|
922
|
+
flex-flow: wrap;
|
|
923
|
+
text-wrap: auto;
|
|
924
|
+
font-size: 9px;
|
|
925
|
+
font-weight: 600;
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
.custom-date-range-popup {
|
|
929
|
+
z-index: 16000 !important;
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
.dx-overlay-wrapper.dx-overlay-shader.dx-loadpanel-wrapper {
|
|
933
|
+
z-index: 20000 !important;
|
|
934
|
+
}
|
|
935
|
+
|
|
936
|
+
.custom-date-range-popup .dx-calendar-other-month {
|
|
937
|
+
visibility: hidden;
|
|
938
|
+
pointer-events: none;
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
|
|
942
|
+
.dx-toast-wrapper {
|
|
943
|
+
z-index: 10000 !important;
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
.dx-datagrid .dx-row .dx-header-row {
|
|
947
|
+
background: #F2F2F2 !important;
|
|
948
|
+
}
|
|
949
|
+
|
|
950
|
+
.dx-datagrid .dx-datagrid-rowsview .dx-data-row td.dx-pointer-events-none {
|
|
951
|
+
border-left: 1px solid #00000019 !important;
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
.dx-pager .dx-page-sizes .dx-selection, .dx-pager .dx-pages .dx-selection {
|
|
955
|
+
border-radius: 50%;
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
.dx-datagrid-borders > .dx-datagrid-pager {
|
|
959
|
+
padding-top: 15px !important;
|
|
960
|
+
}
|
|
961
|
+
|
|
962
|
+
.dx-gridbase-a11y-status-container {
|
|
963
|
+
display: none !important;
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
.dx-datagrid-group-opened, .dx-datagrid-group-closed {
|
|
967
|
+
color: #000000 !important;
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
.dx-gridbase-container > .dx-datagrid-rowsview.dx-scrollable {
|
|
971
|
+
padding-bottom: 3px !important;
|
|
972
|
+
background: #FFF;
|
|
973
|
+
}
|
|
974
|
+
|
|
975
|
+
.dx-datagrid-header-panel .dx-toolbar .dx-toolbar-after {
|
|
976
|
+
margin-right: 0 !important;
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
.dx-datagrid-header-panel .dx-toolbar .dx-toolbar-after {
|
|
980
|
+
-webkit-padding-start: 0 !important;
|
|
981
|
+
padding-inline-start: 0 !important;
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
.dx-datagrid-filter-row .dx-menu-item-content .dx-icon,
|
|
985
|
+
.dx-datagrid-container.dx-filter-menu .dx-menu-item-has-icon .dx-icon,
|
|
986
|
+
.dx-datagrid.dx-filter-menu .dx-menu-item-has-icon .dx-icon {
|
|
987
|
+
color: #ADB5BD !important;
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
.dx-datagrid-rowsview .dx-datagrid-table .dx-row.dx-freespace-row > td {
|
|
991
|
+
border: none !important;
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
.dx-datagrid-summary-item {
|
|
995
|
+
color: #333 !important;
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
.dx-datagrid.dx-filter-menu .dx-menu-item-content .dx-icon {
|
|
999
|
+
font-size: 12px;
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
.dx-gridbase-container > .dx-datagrid-rowsview.dx-scrollable {
|
|
1003
|
+
min-height: 100px;
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
.dx-datagrid .dx-datagrid-total-footer {
|
|
1007
|
+
background: #f9f9f9 !important;
|
|
1008
|
+
border-radius: 2px;
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
.dx-datagrid .dx-datagrid-total-footer tr {
|
|
1012
|
+
background: #f9f9f9 !important;
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
.dx-datagrid-total-footer > .dx-datagrid-content {
|
|
1016
|
+
padding-top: 3px !important;
|
|
1017
|
+
padding-bottom: 3px !important;
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
.dx-datagrid-total-footer td {
|
|
1021
|
+
border: none !important;
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
.dx-datagrid-content .dx-datagrid-table .dx-row > td,
|
|
1025
|
+
.dx-datagrid-content .dx-datagrid-table .dx-row > tr > td {
|
|
1026
|
+
vertical-align: middle;
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
td.dx-group-cell {
|
|
1030
|
+
position: sticky !important;
|
|
1031
|
+
left: 30px !important;
|
|
1032
|
+
z-index: 100 !important;
|
|
1033
|
+
background-color: #f5f5f5 !important;
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
.dx-datagrid tr.dx-row.dx-column-lines.dx-header-row > td {
|
|
1037
|
+
background: #f9f9f9 !important;
|
|
1038
|
+
font-weight: 600 !important;
|
|
1039
|
+
color: #333333;
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1042
|
+
.dx-datagrid .dx-datagrid-headers .dx-row td.dx-pointer-events-none,
|
|
1043
|
+
.dx-datagrid .dx-datagrid-rowsview .dx-data-row td.dx-pointer-events-none,
|
|
1044
|
+
.dx-datagrid .dx-datagrid-rowsview .dx-freespace-row td.dx-pointer-events-none,
|
|
1045
|
+
.dx-datagrid .dx-datagrid-rowsview .dx-header-row td.dx-pointer-events-none,
|
|
1046
|
+
.dx-datagrid .dx-datagrid-rowsview .dx-virtual-row td.dx-pointer-events-none {
|
|
1047
|
+
border-left: 1px solid #00000014 !important;
|
|
1048
|
+
}
|
|
1049
|
+
|
|
1050
|
+
.dx-datagrid tr.dx-row.dx-column-lines.dx-header-row,
|
|
1051
|
+
.dx-datagrid .dx-column-lines > td {
|
|
1052
|
+
border: 1px solid #00000014 !important;
|
|
1053
|
+
}
|
|
1054
|
+
|
|
1055
|
+
.dx-datagrid tr.dx-row.dx-column-lines.dx-header-row > td,
|
|
1056
|
+
.dx-datagrid-rowsview .dx-row.dx-group-row td {
|
|
1057
|
+
border: 1px solid #00000014 !important;
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
.dx-datagrid .dx-row-lines .dx-column-lines > td {
|
|
1061
|
+
border: 1px solid #00000014 !important;
|
|
1062
|
+
}
|
|
1063
|
+
|
|
1064
|
+
.dx-datagrid tr.dx-row.dx-column-lines.dx-datagrid-filter-row > td,
|
|
1065
|
+
.dx-datagrid tr.dx-row.dx-column-lines.dx-datagrid-filter-row > td.dx-editor-cell {
|
|
1066
|
+
border-bottom: none !important;
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1069
|
+
.dx-datagrid tr.dx-data-row.dx-column-lines > td {
|
|
1070
|
+
white-space: nowrap;
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
.dx-datagrid-borders > .dx-datagrid-headers,
|
|
1074
|
+
.dx-datagrid-borders > .dx-datagrid-rowsview,
|
|
1075
|
+
.dx-datagrid-borders > .dx-datagrid-total-footer {
|
|
1076
|
+
border: 1px solid #00000014 !important;
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
.dx-datagrid-header-panel .dx-toolbar-text-auto-hide .dx-button .dx-button-text {
|
|
1080
|
+
display: flex !important;
|
|
1081
|
+
padding-right: 2px;
|
|
1082
|
+
padding-left: 2px;
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
::ng-deep .dx-textbox.dx-texteditor {
|
|
1086
|
+
min-height: 37px !important;
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
::ng-deep .dx-button.dx-button-mode-text.dx-button-normal.dx-button-has-icon {
|
|
1090
|
+
margin-top: 0 !important;
|
|
1091
|
+
margin-bottom: 0 !important;
|
|
1092
|
+
}
|
|
1093
|
+
|
|
1094
|
+
::ng-deep .dx-datagrid-export-menu .dx-overlay-content.dx-popup-normal.dx-resizable.dx-popup-inherit-height {
|
|
1095
|
+
border: 1px solid #d5d5d5 !important;
|
|
1096
|
+
}
|
|
1097
|
+
|
|
1098
|
+
::ng-deep .text-danger .dx-texteditor-input {
|
|
1099
|
+
--bs-text-opacity: 1;
|
|
1100
|
+
color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
.dxc-legend {
|
|
1104
|
+
transform: translateY(79px) !important;
|
|
1105
|
+
}
|
|
1106
|
+
|
|
1107
|
+
.dx-rtl .dxc-legend {
|
|
1108
|
+
transform: translate(-315px, 79px) !important;
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1111
|
+
g.dxc-series-group {
|
|
1112
|
+
transform: translate(72px,16px);
|
|
1113
|
+
}
|
|
1114
|
+
.dx-rtl .dxc-series-group {
|
|
1115
|
+
transform: translate(10px,19px)
|
|
1116
|
+
}
|
|
1117
|
+
|
|
1118
|
+
.dxc-hole-template {
|
|
1119
|
+
transform: translate(19px, 64px) !important
|
|
1120
|
+
}
|
|
1121
|
+
::ng-deep #pie-mobile .dxc-series-group {
|
|
1122
|
+
transform: translate(-100px, -16px);
|
|
1123
|
+
}
|
|
1124
|
+
::ng-deep #pie-mobile .dxc-legend {
|
|
1125
|
+
transform: translate(-180px,49px) !important;
|
|
1126
|
+
}
|
|
1127
|
+
::ng-deep #pie-mobile.dx-rtl .dxc-legend {
|
|
1128
|
+
transform: translate(-10px, 49px) !important;
|
|
1129
|
+
}
|
|
1130
|
+
::ng-deep #pie-mobile.dx-rtl .dxc-series-group {
|
|
1131
|
+
transform: translate(75px,-16px);
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
.dx-datagrid-action.circle-header .dx-datagrid-text-content {
|
|
1135
|
+
text-align: center;
|
|
1136
|
+
display: inline-block;
|
|
1137
|
+
border-radius: 50%;
|
|
1138
|
+
border: 1px solid #249EA0;
|
|
1139
|
+
padding: .5rem !important;
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1142
|
+
.dx-datagrid-action.circle-header-danger .dx-datagrid-text-content {
|
|
1143
|
+
text-align: center;
|
|
1144
|
+
display: inline-block;
|
|
1145
|
+
border-radius: 50%;
|
|
1146
|
+
border: 1px solid #B71C1C;
|
|
1147
|
+
padding: .5rem !important;
|
|
1148
|
+
}
|
|
1149
|
+
::ng-deep .custom-calendar .dx-calendar-cell {
|
|
1150
|
+
min-width: 65px;
|
|
1151
|
+
min-height: 60px;
|
|
1152
|
+
font-size: 14px;
|
|
1153
|
+
}
|
|
1154
|
+
|
|
1155
|
+
::ng-deep .custom-calendar .dx-calendar {
|
|
1156
|
+
width: auto;
|
|
1157
|
+
height: 470px;
|
|
1158
|
+
}
|
|
1159
|
+
|
|
1160
|
+
::ng-deep .custom-calendar .dx-calendar-cell span {
|
|
1161
|
+
min-width: 65px;
|
|
1162
|
+
min-height: 60px;
|
|
1163
|
+
background-color: #F8F7F7;
|
|
1164
|
+
color: black
|
|
1165
|
+
}
|
|
1166
|
+
|
|
1167
|
+
::ng-deep .custom-calendar tr {
|
|
1168
|
+
height: 60px;
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
.custom-calendar .dx-calendar-cell-in-range:before,
|
|
1172
|
+
.custom-calendar .dx-calendar-cell-in-range:after,
|
|
1173
|
+
.custom-calendar .dx-calendar-cell-range-hover:after,
|
|
1174
|
+
.custom-calendar .dx-calendar-cell-range-hover.dx-calendar-cell-range-hover-start:after {
|
|
1175
|
+
min-height: 60px;
|
|
1176
|
+
}
|
|
1177
|
+
|
|
1178
|
+
.custom-calendar .dx-calendar-cell-in-range:before,
|
|
1179
|
+
.custom-calendar .dx-calendar-cell-in-range:after {
|
|
1180
|
+
z-index: 100;
|
|
1181
|
+
min-width: 81px;
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1184
|
+
.custom-calendar .dx-calendar-cell-in-range.dx-calendar-cell-end-in-row:before {
|
|
1185
|
+
min-width: 85px !important;
|
|
1186
|
+
right: auto;
|
|
1187
|
+
}
|
|
1188
|
+
|
|
1189
|
+
.custom-calendar .dx-calendar-cell-start-in-row.dx-calendar-range-start-date:after,
|
|
1190
|
+
.custom-calendar .dx-calendar-other-month.dx-calendar-range-start-date:after {
|
|
1191
|
+
width: 32px !important;
|
|
1192
|
+
right: 0;
|
|
1193
|
+
left: auto;
|
|
1194
|
+
}
|
|
1195
|
+
|
|
1196
|
+
.custom-calendar .dx-calendar-cell-end-in-row.dx-calendar-range-end-date:before,
|
|
1197
|
+
.custom-calendar .dx-calendar-range-end-date:after,
|
|
1198
|
+
.custom-calendar .dx-calendar-other-month.dx-calendar-cell-in-range.dx-calendar-cell-start-in-row:before {
|
|
1199
|
+
width: 32px !important;
|
|
1200
|
+
}
|
|
1201
|
+
|
|
1202
|
+
.custom-calendar .dx-calendar-range-end-date:after {
|
|
1203
|
+
left: 0;
|
|
1204
|
+
right: auto;
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
.custom-calendar .dx-calendar-other-month.dx-calendar-cell-in-range.dx-calendar-cell-start-in-row:before {
|
|
1208
|
+
left: auto;
|
|
1209
|
+
right: 0;
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
.custom-calendar .dx-calendar-range-end-date.dx-calendar-cell-end-in-row:after {
|
|
1213
|
+
display: none !important;
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1216
|
+
.calendar-cell-wrapper {
|
|
1217
|
+
display: flex;
|
|
1218
|
+
flex-direction: column;
|
|
1219
|
+
align-items: center;
|
|
1220
|
+
justify-content: center;
|
|
1221
|
+
width: 100%;
|
|
1222
|
+
gap: 2px;
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1225
|
+
.holiday-label {
|
|
1226
|
+
font-size: 8px;
|
|
1227
|
+
text-align: center;
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1230
|
+
::ng-deep .custom-calendar .dx-calendar-selected-date::before,
|
|
1231
|
+
::ng-deep .custom-calendar .dx-calendar-selected-date::after {
|
|
1232
|
+
min-width: 65px !important;
|
|
1233
|
+
min-height: 60px !important;
|
|
1234
|
+
}
|
|
1235
|
+
|
|
1236
|
+
::ng-deep .custom-calendar .dx-calendar-cell.dx-calendar-selected-date.dx-calendar-range-start-date::before,
|
|
1237
|
+
::ng-deep .custom-calendar .dx-calendar-cell.dx-calendar-selected-date.dx-calendar-range-end-date::before {
|
|
1238
|
+
min-width: 45px !important;
|
|
1239
|
+
}
|
|
1240
|
+
|
|
1241
|
+
::ng-deep .custom-calendar .dx-calendar-cell-in-range.dx-calendar-cell-start-in-row.dx-calendar-cell-end:before,
|
|
1242
|
+
::ng-deep .custom-calendar .dx-calendar-cell-in-range.dx-calendar-cell-start-in-row.dx-calendar-cell-in-range-date:before {
|
|
1243
|
+
width: 2em;
|
|
1244
|
+
inset-inline-start: calc(50% - 2em);
|
|
1245
|
+
inset-inline-end: auto;
|
|
1246
|
+
}
|
|
1247
|
+
|
|
1248
|
+
::ng-deep .custom-calendar .dx-calendar-selected-date.dx-calendar-cell-in-range.dx-calendar-cell-start-in-row.dx-calendar-cell-end:before,
|
|
1249
|
+
.dx-calendar-cell-in-range.dx-calendar-cell-start-in-row.dx-calendar-range-end-date:before {
|
|
1250
|
+
inset-inline-start: calc(50% - 1.2em);
|
|
1251
|
+
}
|
|
1252
|
+
|
|
1253
|
+
::ng-deep .custom-calendar .dx-calendar-cell.dx-calendar-other-view.dx-calendar-other-month {
|
|
1254
|
+
visibility: hidden !important;
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1257
|
+
::ng-deep .custom-calendar .dx-calendar-cell-range-hover.dx-calendar-cell-end-in-row.dx-calendar-cell-range-hover-start:after {
|
|
1258
|
+
inset-inline-start: calc(50% - 2em);
|
|
1259
|
+
}
|
|
1260
|
+
|
|
1261
|
+
::ng-deep .custom-calendar .dx-widget .dx-button {
|
|
1262
|
+
border: none;
|
|
1263
|
+
}
|
|
1264
|
+
|
|
1265
|
+
::ng-deep .custom-calendar .dx-calendar-navigator {
|
|
1266
|
+
display: block;
|
|
1267
|
+
text-align: center;
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1270
|
+
::ng-deep .custom-calendar .dx-button-mode-outlined .dx-icon {
|
|
1271
|
+
color: var(--bs-primary);
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1274
|
+
::ng-deep .custom-calendar .dx-widget.dx-button.dx-button-mode-outlined.dx-button-normal.dx-button-has-text.dx-calendar-caption-button {
|
|
1275
|
+
width: 215px;
|
|
1276
|
+
pointer-events: none;
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1279
|
+
::ng-deep .custom-calendar .dx-calendar-cell.dx-calendar-cell-start-in-row.dx-calendar-cell-end.dx-calendar-cell-in-range:before {
|
|
1280
|
+
width: 55px;
|
|
1281
|
+
}
|
|
1282
|
+
::ng-deep .custom-calendar .dx-calendar-cell.dx-calendar-contoured-date span {
|
|
1283
|
+
box-shadow:none
|
|
1284
|
+
}
|
|
1285
|
+
.dx-rtl .custom-calendar .dx-calendar-cell-in-range.dx-calendar-cell-end-in-row:before {
|
|
1286
|
+
min-width: 82px !important;
|
|
1287
|
+
}
|
|
1288
|
+
.dx-rtl .custom-calendar .dx-calendar-cell.dx-calendar-selected-date.dx-calendar-range-end-date:before {
|
|
1289
|
+
min-width: 74px !important;
|
|
1290
|
+
right: 0
|
|
1291
|
+
}
|
|
1292
|
+
.dx-rtl .custom-calendar .dx-calendar-cell.dx-calendar-selected-date.dx-calendar-range-start-date:before {
|
|
1293
|
+
right: auto
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
.dx-datagrid-focus-overlay {
|
|
1297
|
+
border: 0px !important;
|
|
1298
|
+
}
|
|
1299
|
+
|
|
1300
|
+
#overtimeDataGrid .dx-datagrid-revert-tooltip {
|
|
1301
|
+
display: none;
|
|
1302
|
+
}
|
|
1303
|
+
|
|
1304
|
+
#overtimeDataGrid .dx-datagrid-summary-item {
|
|
1305
|
+
color: #333;
|
|
1306
|
+
font-size: var(--font-size-12);
|
|
1307
|
+
font-style: normal;
|
|
1308
|
+
font-weight: 600;
|
|
1309
|
+
background-color: transparent !important;
|
|
1310
|
+
}
|
|
1311
|
+
#overtimeDataGrid .dx-cell-modified {
|
|
1312
|
+
background-color: transparent !important;
|
|
1313
|
+
}
|
|
1314
|
+
::ng-deep .dx-textbox.dx-texteditor.grid-cell-text-box {
|
|
1315
|
+
min-height: unset !important;
|
|
1316
|
+
max-height: 20px !important;
|
|
1317
|
+
display: flex;
|
|
1318
|
+
justify-content: center;
|
|
1319
|
+
align-items: center;
|
|
1320
|
+
border: none !important;
|
|
1321
|
+
border-radius: 0 !important;
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1324
|
+
::ng-deep .dx-datagrid-rowsview .dx-row.batch-grid-cell-text {
|
|
1325
|
+
height: 55px !important;
|
|
1326
|
+
}
|
|
1327
|
+
|
|
1328
|
+
|
|
1329
|
+
::ng-deep .dx-treeview-item-without-checkbox.dx-state-focused > .dx-treeview-item {
|
|
1330
|
+
background-color: #F182061A;
|
|
1331
|
+
color: #333333;
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1334
|
+
#overtimeDataGrid {
|
|
1335
|
+
background-color: transparent !important;
|
|
1336
|
+
border: 1px solid #E0E0E0C7 !important;
|
|
1337
|
+
box-shadow: 0 4px 4px #00000040 !important;
|
|
1338
|
+
border-radius: 5px !important;
|
|
1339
|
+
}
|
|
1340
|
+
#overtimeDataGrid .dx-datagrid-rowsview .dx-row.dx-group-row {
|
|
1341
|
+
font-weight: 600 !important;
|
|
1342
|
+
}
|
|
1343
|
+
#overtimeDataGrid .dx-row .dx-data-row,
|
|
1344
|
+
#overtimeDataGrid .dx-row.dx-group-row {
|
|
1345
|
+
background-color: transparent !important;
|
|
1346
|
+
border: none !important;
|
|
1347
|
+
}
|
|
1348
|
+
|
|
1349
|
+
#overtimeDataGrid .dx-group-row td, #overtimeDataGrid td.dx-group-cell {
|
|
1350
|
+
background-color: transparent !important;
|
|
1351
|
+
border: none !important;
|
|
1352
|
+
border-bottom: 1px solid #000000 !important;
|
|
1353
|
+
border-top: 1px solid #E0E0E0C7 !important;
|
|
1354
|
+
}
|
|
1355
|
+
#overtimeDataGrid .dx-datagrid {
|
|
1356
|
+
padding-left: 8px;
|
|
1357
|
+
padding-right: 8px;
|
|
1358
|
+
}
|
|
1359
|
+
#overtimeDataGrid .dx-group-row td > div {
|
|
1360
|
+
font-weight: 600 !important;
|
|
1361
|
+
}
|
|
1362
|
+
|
|
1363
|
+
#overtimeDataGrid .dx-datagrid-rowsview .dx-datagrid-content {
|
|
1364
|
+
/*border-bottom: 1px solid #E0E0E0C7 !important;*/
|
|
1365
|
+
}
|
|
1366
|
+
|
|
1367
|
+
|
|
1368
|
+
#overtimeDataGrid .dx-datagrid .dx-header-row .circle-header div.dx-datagrid-text-content {
|
|
1369
|
+
text-align: center;
|
|
1370
|
+
display: inline-block;
|
|
1371
|
+
border-radius: 50%;
|
|
1372
|
+
border: 1px solid #249EA0;
|
|
1373
|
+
padding: .5rem !important;
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
#overtimeDataGrid .dx-datagrid .dx-header-row .circle-header-danger div.dx-datagrid-text-content {
|
|
1377
|
+
text-align: center;
|
|
1378
|
+
display: inline-block;
|
|
1379
|
+
border-radius: 50%;
|
|
1380
|
+
border: 1px solid #B71C1C;
|
|
1381
|
+
padding: .5rem !important;
|
|
1382
|
+
}
|
|
1383
|
+
#overtimeDataGrid .dx-datagrid .dx-datagrid-headers .dx-row td,
|
|
1384
|
+
#overtimeDataGrid .dx-datagrid .dx-datagrid-headers .dx-row td.dx-pointer-events-none,
|
|
1385
|
+
#overtimeDataGrid .dx-datagrid-rowsview .dx-row {
|
|
1386
|
+
border: inherit !important;
|
|
1387
|
+
border-bottom: 1px solid #d5d5d5 !important;
|
|
1388
|
+
}
|
|
1389
|
+
|
|
1390
|
+
#overtimeDataGrid .dx-datagrid .dx-datagrid-headers .dx-row td,
|
|
1391
|
+
#overtimeDataGrid .dx-datagrid .dx-datagrid-headers .dx-row td.dx-pointer-events-none {
|
|
1392
|
+
border-bottom: none !important;
|
|
1393
|
+
}
|
|
1394
|
+
|
|
1395
|
+
#overtimeDataGrid .dx-datagrid .dx-datagrid-content-fixed .dx-row td.dx-pointer-events-none {
|
|
1396
|
+
border-left: none !important;
|
|
1397
|
+
border-right: none !important;
|
|
1398
|
+
font-size: 12px !important;
|
|
1399
|
+
}
|
|
1400
|
+
#overtimeDataGrid .dx-datagrid-total-footer {
|
|
1401
|
+
|
|
1402
|
+
border-top:none;
|
|
1403
|
+
}
|
|
1404
|
+
.dx-datagrid .dx-datagrid-content .dx-datagrid-table .dx-row .dx-command-edit-with-icons .dx-link {
|
|
1405
|
+
font-size: 15px;
|
|
1406
|
+
}
|
|
1407
|
+
|
|
1408
|
+
dx-button.legend-tab span.dx-button-text {
|
|
1409
|
+
font-size: 11px;
|
|
1410
|
+
}
|
|
1411
|
+
|
|
1412
|
+
#overtimeDataGrid .dx-datagrid-summary-item.dx-datagrid-text-content.dx-datagrid-group-text-content {
|
|
1413
|
+
border: none !important;
|
|
1414
|
+
}
|
|
1415
|
+
|
|
1416
|
+
::ng-deep .custom-popup-wrapper .dx-popup-content {
|
|
1417
|
+
padding: 0px !important;
|
|
1418
|
+
}
|
|
1419
|
+
|
|
1420
|
+
#overtimeDataGrid .dx-datagrid-table .dx-row .dx-command-expand {
|
|
1421
|
+
width: 0px !important;
|
|
1422
|
+
min-width: 0px !important;
|
|
1423
|
+
}
|