@docsvision/management-console 1.0.0 → 6.2.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.
Files changed (3) hide show
  1. package/index.css +685 -685
  2. package/index.css.map +1 -1
  3. package/package.json +1 -1
package/index.css CHANGED
@@ -45,6 +45,10 @@
45
45
  padding: 8px 16px 8px;
46
46
  }
47
47
 
48
+ .component-icon {
49
+ width: 24px;
50
+ height: 24px;
51
+ }
48
52
  :root {
49
53
  --error-block__background-color: rgba(110, 3, 3, 0.83);
50
54
  --error-block__text-color: white;
@@ -91,9 +95,15 @@
91
95
  fill: rgba(0, 0, 0, 1);
92
96
  fill: var(--error-block__button-close__svg-hover-color);
93
97
  }
94
- .component-icon {
95
- width: 24px;
96
- height: 24px;
98
+ :root {
99
+ --error-message-color: red;
100
+ }
101
+
102
+ .error-message {
103
+ font-size: 0.8rem;
104
+ color: red;
105
+ color: var(--error-message-color);
106
+ margin-top: 4px;
97
107
  }
98
108
  .settings-panel__button {
99
109
  cursor: pointer;
@@ -138,16 +148,6 @@
138
148
  .settings-panel__button_expand:hover::after {
139
149
  background-color: rgba(0, 0, 0, 0.08);
140
150
  }
141
- :root {
142
- --error-message-color: red;
143
- }
144
-
145
- .error-message {
146
- font-size: 0.8rem;
147
- color: red;
148
- color: var(--error-message-color);
149
- margin-top: 4px;
150
- }
151
151
  .expand-more-icon {
152
152
  width: 24px;
153
153
  height: 24px;
@@ -170,22 +170,6 @@
170
170
  position: absolute;
171
171
  background-color: #bbb;
172
172
  }
173
- .copy-button-notification {
174
- position: fixed;
175
- right: 20px;
176
- top: 20px;
177
- z-index: 1000;
178
- display: inline-block;
179
- border-radius: 4px;
180
- padding: 5px 16px;
181
- font-size: 14px;
182
- line-height: 22px;
183
- text-transform: none;
184
- color: #fff;
185
- background: rgba(97,97,97,.9);
186
- opacity: 0;
187
- transition: opacity 0.3s;
188
- }
189
173
  .show-information-button {
190
174
  position: relative;
191
175
  display: block;
@@ -226,11 +210,22 @@
226
210
  align-items: center;
227
211
  position: absolute;
228
212
  }
229
- .page-title {
230
- font-size: 2rem;
231
- color: #999;
232
- }
233
-
213
+ .copy-button-notification {
214
+ position: fixed;
215
+ right: 20px;
216
+ top: 20px;
217
+ z-index: 1000;
218
+ display: inline-block;
219
+ border-radius: 4px;
220
+ padding: 5px 16px;
221
+ font-size: 14px;
222
+ line-height: 22px;
223
+ text-transform: none;
224
+ color: #fff;
225
+ background: rgba(97,97,97,.9);
226
+ opacity: 0;
227
+ transition: opacity 0.3s;
228
+ }
234
229
  .page-filter-button {
235
230
  background: #e0e0e0;
236
231
  margin: 4px 8px 4px 0;
@@ -268,6 +263,17 @@
268
263
  .page-filter-button__content .loading-more__icon svg {
269
264
  fill: grey;
270
265
  }
266
+ .page-title {
267
+ font-size: 2rem;
268
+ color: #999;
269
+ }
270
+
271
+ .page-tab-panel {
272
+ margin-top: 10px;
273
+ display: flex;
274
+ flex-direction: row;
275
+ justify-content: center;
276
+ }
271
277
  .table-relative-container {
272
278
  position: relative;
273
279
  overflow: hidden;
@@ -305,11 +311,62 @@
305
311
  .table-scroll-container::-webkit-scrollbar-thumb:hover {
306
312
  background: rgb(168, 168, 168);
307
313
  }
308
- .page-tab-panel {
309
- margin-top: 10px;
314
+ .page-tab-label {
310
315
  display: flex;
311
- flex-direction: row;
316
+ color: #888888;
317
+ font-size: 1rem;
312
318
  justify-content: center;
319
+ letter-spacing: .0892857143em;
320
+ line-height: normal;
321
+ min-width: 90px;
322
+ max-width: 360px;
323
+ flex: 0 1 auto;
324
+ font-weight: 500;
325
+ white-space: normal;
326
+ padding: 0.8rem;
327
+ cursor: pointer;
328
+ font-family: Roboto, sans-serif;
329
+ white-space: normal;
330
+ text-transform: lowercase;
331
+ }
332
+
333
+ .page-tab-label:hover {
334
+ background-color: #F3F3F3;
335
+ }
336
+
337
+ .page-tab-label.selected {
338
+ border-bottom: 2px solid #1976d2;
339
+ color: #1976d2;
340
+ }
341
+
342
+ .page-tab-label.selected:hover {
343
+ background-color: #DEE9F4;
344
+ }
345
+ .widget-container {
346
+ width: 100%;
347
+ height: 100%;
348
+ }
349
+
350
+ .widget-container__internal {
351
+ padding: 0.5rem;
352
+ box-sizing: border-box;
353
+ width: 100%;
354
+ height: 100%;
355
+ overflow: hidden;
356
+
357
+ border-radius: 4px;
358
+ background: #fff;
359
+ box-shadow: 0 0 6px hsla(0, 0%, 60%, .67);
360
+ color: rgba(0, 0, 0, .87);
361
+ border-color: #fff;
362
+ display: block;
363
+ max-width: 100%;
364
+ outline: none;
365
+ text-decoration: none;
366
+ transition-property: box-shadow, opacity;
367
+ overflow-wrap: break-word;
368
+ position: relative;
369
+ white-space: normal;
313
370
  }
314
371
  .widget-header {
315
372
  display: flex;
@@ -347,38 +404,18 @@
347
404
  max-width: 220px;
348
405
  width: 100%;
349
406
  }
350
- .widget-container {
351
- width: 100%;
352
- height: 100%;
353
- }
354
-
355
- .widget-container__internal {
356
- padding: 0.5rem;
357
- box-sizing: border-box;
358
- width: 100%;
359
- height: 100%;
360
- overflow: hidden;
361
-
362
- border-radius: 4px;
363
- background: #fff;
364
- box-shadow: 0 0 6px hsla(0, 0%, 60%, .67);
365
- color: rgba(0, 0, 0, .87);
366
- border-color: #fff;
367
- display: block;
368
- max-width: 100%;
369
- outline: none;
370
- text-decoration: none;
371
- transition-property: box-shadow, opacity;
372
- overflow-wrap: break-word;
373
- position: relative;
374
- white-space: normal;
375
- }
376
407
  .widget-horizontal-line {
377
408
  border-top: 2px solid gray;
378
409
  margin-top: 0.25rem;
379
410
  margin-bottom: 0.25rem;
380
411
  opacity: 0.5;
381
412
  }
413
+ .widget-name {
414
+ flex: auto;
415
+ font-size: small;
416
+ font-weight: bold;
417
+ color: dodgerblue;
418
+ }
382
419
  .widget-period {
383
420
  width: 100%;
384
421
  display: flex;
@@ -403,49 +440,6 @@
403
440
  width: 100%;
404
441
  }
405
442
 
406
- .page-tab-label {
407
- display: flex;
408
- color: #888888;
409
- font-size: 1rem;
410
- justify-content: center;
411
- letter-spacing: .0892857143em;
412
- line-height: normal;
413
- min-width: 90px;
414
- max-width: 360px;
415
- flex: 0 1 auto;
416
- font-weight: 500;
417
- white-space: normal;
418
- padding: 0.8rem;
419
- cursor: pointer;
420
- font-family: Roboto, sans-serif;
421
- white-space: normal;
422
- text-transform: lowercase;
423
- }
424
-
425
- .page-tab-label:hover {
426
- background-color: #F3F3F3;
427
- }
428
-
429
- .page-tab-label.selected {
430
- border-bottom: 2px solid #1976d2;
431
- color: #1976d2;
432
- }
433
-
434
- .page-tab-label.selected:hover {
435
- background-color: #DEE9F4;
436
- }
437
- .widget-name {
438
- flex: auto;
439
- font-size: small;
440
- font-weight: bold;
441
- color: dodgerblue;
442
- }
443
- .widget-refresh-date {
444
- flex: 0 0 auto;
445
- font-size: xx-small;
446
- padding-right: 5px;
447
- opacity: 0.6;
448
- }
449
443
  .widget-refresh-button {
450
444
  flex: 0 0 auto;
451
445
  width: 1rem;
@@ -459,6 +453,12 @@
459
453
  .widget-refresh-button:hover {
460
454
  opacity: 1;
461
455
  }
456
+ .widget-refresh-date {
457
+ flex: 0 0 auto;
458
+ font-size: xx-small;
459
+ padding-right: 5px;
460
+ opacity: 0.6;
461
+ }
462
462
  .dv-clear-button {
463
463
  opacity: 0.6;
464
464
  display: inline-block;
@@ -557,11 +557,11 @@
557
557
  cursor: default;
558
558
  }
559
559
 
560
- .outgoing-reference-table {
560
+ .incoming-reference-table {
561
561
  width: 20%;
562
562
  }
563
563
 
564
- .incoming-reference-table {
564
+ .outgoing-reference-table {
565
565
  width: 20%;
566
566
  }
567
567
 
@@ -635,6 +635,11 @@
635
635
  .page-table__row.page-table__row {
636
636
  white-space: pre-line;
637
637
  }
638
+ .cell-with-fixed-width__content {
639
+ overflow: hidden;
640
+ text-overflow: ellipsis;
641
+ white-space: break-spaces;
642
+ }
638
643
  .editor-container__reset-icon {
639
644
  background-image: url("/assets/images/reload.svg");
640
645
  transform: scaleX(-1);
@@ -650,11 +655,6 @@
650
655
  display: none;
651
656
  }
652
657
 
653
- .cell-with-fixed-width__content {
654
- overflow: hidden;
655
- text-overflow: ellipsis;
656
- white-space: break-spaces;
657
- }
658
658
  .mui-table__cell-clamp-two-line {
659
659
  display: -webkit-box;
660
660
  -webkit-line-clamp: 2;
@@ -675,17 +675,6 @@
675
675
  line-height: 1.5;
676
676
  margin-bottom: 5px;
677
677
  }
678
- :root {
679
- --editor-name-color: #666;
680
- }
681
-
682
- .editor-name {
683
- font-size: 1rem;
684
- font-weight: 600;
685
- color: #666;
686
- color: var(--editor-name-color);
687
- padding-bottom: 5px;
688
- }
689
678
  :root {
690
679
  --editor-wrapper__changed__border-color: #1976d2;
691
680
  --editor-wrapper__hover-border-color: #ccc;;
@@ -716,12 +705,16 @@
716
705
  border: 1px solid #ccc;
717
706
  border: 1px solid var(--editor-wrapper__hover-border-color);
718
707
  }
719
- .list-panel__add-panel {
720
- display: flex;
721
- align-items: center;
722
- justify-content: center;
723
- gap: 16px;
724
- padding: 10px;
708
+ :root {
709
+ --editor-name-color: #666;
710
+ }
711
+
712
+ .editor-name {
713
+ font-size: 1rem;
714
+ font-weight: 600;
715
+ color: #666;
716
+ color: var(--editor-name-color);
717
+ padding-bottom: 5px;
725
718
  }
726
719
  :root {
727
720
  --navigation-menu__item_hover-background-color: #607d8b;
@@ -784,9 +777,16 @@
784
777
  background: rgb(0, 0, 0, .2);
785
778
  border-radius: 3px;
786
779
  }
787
- .settings-page__button-panel {
780
+ .list-panel__add-panel {
788
781
  display: flex;
789
- flex-wrap: nowrap;
782
+ align-items: center;
783
+ justify-content: center;
784
+ gap: 16px;
785
+ padding: 10px;
786
+ }
787
+ .settings-page__button-panel {
788
+ display: flex;
789
+ flex-wrap: nowrap;
790
790
  margin-top: 8px;
791
791
  }
792
792
 
@@ -1054,16 +1054,6 @@ hue-6-2: #c18401
1054
1054
  display: flex;
1055
1055
  justify-content: center;
1056
1056
  }
1057
- .lock-button {
1058
- margin-left: 20px;
1059
- }
1060
- .toolbar.toolbar {
1061
- padding: 0 50px;
1062
- background: #F8F8F8;
1063
- padding-bottom: 15px;
1064
- padding-top: 5px;
1065
- border-bottom: none;
1066
- }
1067
1057
  .services {
1068
1058
  width: 100%;
1069
1059
  display: flex;
@@ -1079,6 +1069,16 @@ hue-6-2: #c18401
1079
1069
  max-width: 550px;
1080
1070
  width: 100%;
1081
1071
  }
1072
+ .lock-button {
1073
+ margin-left: 20px;
1074
+ }
1075
+ .toolbar.toolbar {
1076
+ padding: 0 50px;
1077
+ background: #F8F8F8;
1078
+ padding-bottom: 15px;
1079
+ padding-top: 5px;
1080
+ border-bottom: none;
1081
+ }
1082
1082
  .states {
1083
1083
  min-width: -webkit-fit-content;
1084
1084
  min-width: -moz-fit-content;
@@ -1168,6 +1168,40 @@ hue-6-2: #c18401
1168
1168
  .dv-dropdown__icon_reversed {
1169
1169
  transform: rotate(180deg);
1170
1170
  }
1171
+ :root {
1172
+ --dv-dropdown-menu-box-shadow: 0 1px 5px #0003,0 2px 2px #00000024,0 3px 1px -2px #0000001f;
1173
+ --dv-dropdown-menu-background-color: #fff;
1174
+ }
1175
+
1176
+ .dv-dropdown__menu {
1177
+ max-height: 50vh;
1178
+ margin: 0;
1179
+ padding: 0;
1180
+ background-color: #fff;
1181
+ background-color: var(--dv-dropdown-menu-background-color);
1182
+ box-shadow: 0
1183
+ 1px
1184
+ 5px
1185
+ #0003
1186
+ ,
1187
+ 0
1188
+ 2px
1189
+ 2px
1190
+ #00000024
1191
+ ,
1192
+ 0
1193
+ 3px
1194
+ 1px
1195
+ -2px
1196
+ #0000001f;
1197
+ box-shadow: var(--dv-dropdown-menu-box-shadow);
1198
+ overflow-y: auto;
1199
+ list-style: none;
1200
+ }
1201
+
1202
+ .dv-dropdown__menu:focus {
1203
+ outline: none;
1204
+ }
1171
1205
  .dv-dropdown__content {
1172
1206
  max-width: 100%;
1173
1207
  min-height: 1em;
@@ -1220,40 +1254,6 @@ hue-6-2: #c18401
1220
1254
  }
1221
1255
 
1222
1256
 
1223
- :root {
1224
- --dv-dropdown-menu-box-shadow: 0 1px 5px #0003,0 2px 2px #00000024,0 3px 1px -2px #0000001f;
1225
- --dv-dropdown-menu-background-color: #fff;
1226
- }
1227
-
1228
- .dv-dropdown__menu {
1229
- max-height: 50vh;
1230
- margin: 0;
1231
- padding: 0;
1232
- background-color: #fff;
1233
- background-color: var(--dv-dropdown-menu-background-color);
1234
- box-shadow: 0
1235
- 1px
1236
- 5px
1237
- #0003
1238
- ,
1239
- 0
1240
- 2px
1241
- 2px
1242
- #00000024
1243
- ,
1244
- 0
1245
- 3px
1246
- 1px
1247
- -2px
1248
- #0000001f;
1249
- box-shadow: var(--dv-dropdown-menu-box-shadow);
1250
- overflow-y: auto;
1251
- list-style: none;
1252
- }
1253
-
1254
- .dv-dropdown__menu:focus {
1255
- outline: none;
1256
- }
1257
1257
  .dv-message-window__header {
1258
1258
  padding: 1rem 1rem 5px;
1259
1259
  }
@@ -1634,6 +1634,36 @@ hue-6-2: #c18401
1634
1634
 
1635
1635
 
1636
1636
 
1637
+ :root {
1638
+ --scroll-bar-background: #5755553b;
1639
+ --scroll-bar-progress: #9c9c9c;
1640
+ --scroll-bar-width: 7px;
1641
+ --scroll-bar-border-radius: 4px;
1642
+ }
1643
+
1644
+ .scroll-bar__bar {
1645
+ height: 100%;
1646
+ width: 7px;
1647
+ width: var(--scroll-bar-width);
1648
+ background-color: #5755553b;
1649
+ background-color: var(--scroll-bar-background);
1650
+ border-radius: 4px;
1651
+ border-radius: 4px;
1652
+ border-radius: var(--scroll-bar-border-radius);
1653
+ }
1654
+
1655
+ .scroll-bar__progress {
1656
+ width: 7px;
1657
+ width: var(--scroll-bar-width);
1658
+ background-color: #9c9c9c;
1659
+ background-color: var(--scroll-bar-progress);
1660
+ opacity: 0.6;
1661
+ border-radius: 4px;
1662
+ border-radius: 4px;
1663
+ border-radius: var(--scroll-bar-border-radius);
1664
+ }
1665
+
1666
+
1637
1667
  :root {
1638
1668
  --scroll-bar-handle-border: #222;
1639
1669
  --scroll-bar-handle-background: white;
@@ -1706,36 +1736,6 @@ hue-6-2: #c18401
1706
1736
  .no-touch .scroll-bar__placement:hover .scroll-bar__handle-pin, .scroll-bar__handle_force-visible .scroll-bar__handle-pin {
1707
1737
  opacity: 1;
1708
1738
  }
1709
- :root {
1710
- --scroll-bar-background: #5755553b;
1711
- --scroll-bar-progress: #9c9c9c;
1712
- --scroll-bar-width: 7px;
1713
- --scroll-bar-border-radius: 4px;
1714
- }
1715
-
1716
- .scroll-bar__bar {
1717
- height: 100%;
1718
- width: 7px;
1719
- width: var(--scroll-bar-width);
1720
- background-color: #5755553b;
1721
- background-color: var(--scroll-bar-background);
1722
- border-radius: 4px;
1723
- border-radius: 4px;
1724
- border-radius: var(--scroll-bar-border-radius);
1725
- }
1726
-
1727
- .scroll-bar__progress {
1728
- width: 7px;
1729
- width: var(--scroll-bar-width);
1730
- background-color: #9c9c9c;
1731
- background-color: var(--scroll-bar-progress);
1732
- opacity: 0.6;
1733
- border-radius: 4px;
1734
- border-radius: 4px;
1735
- border-radius: var(--scroll-bar-border-radius);
1736
- }
1737
-
1738
-
1739
1739
  :root {
1740
1740
  --scroll-bar-hover-width: 10px;
1741
1741
  }
@@ -1748,43 +1748,6 @@ hue-6-2: #c18401
1748
1748
  padding-left: 10px;
1749
1749
  padding-left: var(--scroll-bar-hover-width);
1750
1750
  }
1751
- .dv-resize-column__header-cell {
1752
- position: relative;
1753
- }
1754
-
1755
- .dv-table-layout-fixed {
1756
- width: -webkit-fit-content;
1757
- width: -moz-fit-content;
1758
- width: fit-content;
1759
- table-layout: fixed;
1760
- }
1761
-
1762
- .dv-table thead tr {
1763
- z-index: 1;
1764
- position: -webkit-sticky;
1765
- position: sticky;
1766
- }
1767
-
1768
- .dv-resize-border::after {
1769
- content: '';
1770
- z-index: 1;
1771
- position: absolute;
1772
- right: -5px;
1773
- top: -1px;
1774
- width: 12px;
1775
- height: calc(2px + 100%);
1776
- background-color: transparent;
1777
- cursor: col-resize;
1778
- }
1779
-
1780
- .dv-table-header-column:last-child .dv-resize-border::after {
1781
- right: 0px;
1782
- width: 6px;
1783
- }
1784
-
1785
- .dv-table-header-column:last-child .dv-resize-border {
1786
- right: 0px;
1787
- }
1788
1751
  .dv-icon {
1789
1752
  line-height: 1px;
1790
1753
  }
@@ -1830,6 +1793,43 @@ hue-6-2: #c18401
1830
1793
  }
1831
1794
 
1832
1795
 
1796
+ .dv-resize-column__header-cell {
1797
+ position: relative;
1798
+ }
1799
+
1800
+ .dv-table-layout-fixed {
1801
+ width: -webkit-fit-content;
1802
+ width: -moz-fit-content;
1803
+ width: fit-content;
1804
+ table-layout: fixed;
1805
+ }
1806
+
1807
+ .dv-table thead tr {
1808
+ z-index: 1;
1809
+ position: -webkit-sticky;
1810
+ position: sticky;
1811
+ }
1812
+
1813
+ .dv-resize-border::after {
1814
+ content: '';
1815
+ z-index: 1;
1816
+ position: absolute;
1817
+ right: -5px;
1818
+ top: -1px;
1819
+ width: 12px;
1820
+ height: calc(2px + 100%);
1821
+ background-color: transparent;
1822
+ cursor: col-resize;
1823
+ }
1824
+
1825
+ .dv-table-header-column:last-child .dv-resize-border::after {
1826
+ right: 0px;
1827
+ width: 6px;
1828
+ }
1829
+
1830
+ .dv-table-header-column:last-child .dv-resize-border {
1831
+ right: 0px;
1832
+ }
1833
1833
  :root {
1834
1834
  --dv-resize-border_background-color: transparent;
1835
1835
  --dv-resize-border_hover-background-color: deepskyblue;
@@ -1877,6 +1877,26 @@ hue-6-2: #c18401
1877
1877
  width: 100%;
1878
1878
  }
1879
1879
 
1880
+ .dv-button-text_padding-left {
1881
+ padding-left: 5px;
1882
+ }
1883
+
1884
+ .dv-button-text_padding-right {
1885
+ padding-right: 5px;
1886
+ }
1887
+
1888
+ .dv-button-text{
1889
+ word-wrap: break-word;
1890
+ vertical-align: middle;
1891
+ overflow: hidden;
1892
+ text-overflow: ellipsis;
1893
+ -webkit-line-clamp: 2;
1894
+ -webkit-box-orient: vertical;
1895
+ max-height: 100%;
1896
+ display: inline;
1897
+ display: -webkit-inline-box;
1898
+ white-space: normal;
1899
+ }
1880
1900
  .dv-button-body {
1881
1901
  display: block;
1882
1902
  justify-content: center;
@@ -1946,25 +1966,24 @@ hue-6-2: #c18401
1946
1966
  left: calc(50% - 9px);
1947
1967
  top: calc(50% - 9px);
1948
1968
  }
1949
- .dv-button-text_padding-left {
1950
- padding-left: 5px;
1969
+ :root {
1970
+ --dv-popover__accept-button_after-color: #228B22;
1951
1971
  }
1952
1972
 
1953
- .dv-button-text_padding-right {
1954
- padding-right: 5px;
1973
+ .dv-popover__accept-button{
1974
+ position: relative;
1955
1975
  }
1956
-
1957
- .dv-button-text{
1958
- word-wrap: break-word;
1959
- vertical-align: middle;
1960
- overflow: hidden;
1961
- text-overflow: ellipsis;
1962
- -webkit-line-clamp: 2;
1963
- -webkit-box-orient: vertical;
1964
- max-height: 100%;
1965
- display: inline;
1966
- display: -webkit-inline-box;
1967
- white-space: normal;
1976
+ .dv-popover__accept-button::after{
1977
+ position: absolute;
1978
+ content: '\2714 ';
1979
+ top: 0;
1980
+ left: 0;
1981
+ bottom: 0;
1982
+ right: 0;
1983
+ color: #228B22;
1984
+ color: var(--dv-popover__accept-button_after-color);
1985
+ line-height: 1;
1986
+ font-size: 16px;
1968
1987
  }
1969
1988
  :root {
1970
1989
  --dv-popover__box_border-color: #808080;
@@ -1994,29 +2013,15 @@ hue-6-2: #c18401
1994
2013
  line-height: 1;
1995
2014
  font-size: 16px;
1996
2015
  }
1997
- :root {
1998
- --dv-popover__accept-button_after-color: #228B22;
1999
- }
2000
-
2001
- .dv-popover__accept-button{
2002
- position: relative;
2003
- }
2004
- .dv-popover__accept-button::after{
2005
- position: absolute;
2006
- content: '\2714 ';
2007
- top: 0;
2008
- left: 0;
2009
- bottom: 0;
2010
- right: 0;
2011
- color: #228B22;
2012
- color: var(--dv-popover__accept-button_after-color);
2013
- line-height: 1;
2014
- font-size: 16px;
2015
- }
2016
2016
  .dv-popover__container {
2017
2017
  position: absolute;
2018
2018
  max-width: 100vw;
2019
2019
  }
2020
+ .dv-popover__content {
2021
+ padding: 10px;
2022
+ overflow: auto;
2023
+ max-width: 100%;
2024
+ }
2020
2025
  :root {
2021
2026
  --dv-popover__head_border-bottom-color: #F2F2F2;
2022
2027
  --dv-popover__head_background-color: #DDDDDD;
@@ -2034,11 +2039,6 @@ hue-6-2: #c18401
2034
2039
  background-color: #DDDDDD;
2035
2040
  font-size: inherit;
2036
2041
  }
2037
- .dv-popover__content {
2038
- padding: 10px;
2039
- overflow: auto;
2040
- max-width: 100%;
2041
- }
2042
2042
  .dv-popover__modal_hide {
2043
2043
  visibility: hidden;
2044
2044
  }
@@ -2049,6 +2049,32 @@ hue-6-2: #c18401
2049
2049
  text-overflow: ellipsis;
2050
2050
  max-width: 100%;
2051
2051
  }
2052
+ .dv-modal-dialog__button-panel {
2053
+ display: flex;
2054
+ justify-content: flex-end;
2055
+ padding: 1.5rem;
2056
+ padding-bottom: 2rem;
2057
+ }
2058
+
2059
+ .dv-modal-dialog__button-panel-item {
2060
+ flex: 0 1 auto;
2061
+ margin-left: 1rem;
2062
+ min-width: 100px;
2063
+ }
2064
+
2065
+ .dv-modal-dialog__button-panel-item .dv-button {
2066
+ min-width: 100px;
2067
+ }
2068
+
2069
+ .dv-modal-dialog__button-panel-item:first-child {
2070
+ margin-left: 0;
2071
+ }
2072
+
2073
+ @media (max-width: 390px) {
2074
+ .dv-modal-dialog__button-panel-item {
2075
+ min-width: 80px;
2076
+ }
2077
+ }
2052
2078
  .dv-modal-dialog__border {
2053
2079
  position: absolute;
2054
2080
  }
@@ -2136,31 +2162,10 @@ hue-6-2: #c18401
2136
2162
  }
2137
2163
  }
2138
2164
 
2139
- .dv-modal-dialog__button-panel {
2140
- display: flex;
2141
- justify-content: flex-end;
2142
- padding: 1.5rem;
2143
- padding-bottom: 2rem;
2144
- }
2145
-
2146
- .dv-modal-dialog__button-panel-item {
2147
- flex: 0 1 auto;
2148
- margin-left: 1rem;
2149
- min-width: 100px;
2150
- }
2151
-
2152
- .dv-modal-dialog__button-panel-item .dv-button {
2153
- min-width: 100px;
2154
- }
2155
-
2156
- .dv-modal-dialog__button-panel-item:first-child {
2157
- margin-left: 0;
2158
- }
2159
-
2160
- @media (max-width: 390px) {
2161
- .dv-modal-dialog__button-panel-item {
2162
- min-width: 80px;
2163
- }
2165
+ .dv-modal-dialog__content {
2166
+ padding-left: 1.5rem;
2167
+ padding-right: 1.5rem;
2168
+ margin-bottom: 1.5rem;
2164
2169
  }
2165
2170
  .dv-modal-dialog__container {
2166
2171
  position: fixed;
@@ -2186,17 +2191,9 @@ hue-6-2: #c18401
2186
2191
  word-wrap: break-word;
2187
2192
  }
2188
2193
 
2189
- .dv-modal-dialog__content {
2190
- padding-left: 1.5rem;
2191
- padding-right: 1.5rem;
2192
- margin-bottom: 1.5rem;
2193
- }
2194
2194
  .dv-modal-dialog__scrollable {
2195
2195
  overflow-y: auto;
2196
2196
  }
2197
- .dv-modal-dialog__string-content{
2198
- line-height: initial;
2199
- }
2200
2197
  .dv-modal-sidebar__box {
2201
2198
  position: absolute;
2202
2199
  right: 0;
@@ -2230,6 +2227,13 @@ hue-6-2: #c18401
2230
2227
  right: 0;
2231
2228
  max-width: 100%;
2232
2229
  }
2230
+ .dv-modal-dialog__string-content{
2231
+ line-height: initial;
2232
+ }
2233
+ .dv-modal-sidebar__content {
2234
+ flex-grow: 1;
2235
+ padding-right: 1.5rem;
2236
+ }
2233
2237
  .dv-modal-sidebar__scrollable {
2234
2238
  display: flex;
2235
2239
  flex-direction: column;
@@ -2238,10 +2242,6 @@ hue-6-2: #c18401
2238
2242
  margin-left: 20px;
2239
2243
  margin-right: 20px;
2240
2244
  }
2241
- .dv-modal-sidebar__content {
2242
- flex-grow: 1;
2243
- padding-right: 1.5rem;
2244
- }
2245
2245
  .dv-row-alternation__alt-row {
2246
2246
  background-color: transparent;
2247
2247
  background-color: var(--dv-item-list-background-alt-color, transparent);
@@ -2286,113 +2286,6 @@ hue-6-2: #c18401
2286
2286
  cursor: pointer;
2287
2287
  }
2288
2288
 
2289
- :root {
2290
- --dv-side-panel__header_background: #eee;
2291
- --dv-side-panel__header_active-color: rgb(25, 118, 210);
2292
- --dv-side-panel__header_counter-color: #fff;
2293
- --dv-side-panel__border-color: rgb(210, 207, 207);
2294
- }
2295
-
2296
- .dv-side-panel__header {
2297
- flex: 0 0 auto;
2298
- }
2299
-
2300
- .dv-side-panel__single-tab {
2301
- display: flex;
2302
- align-items: center;
2303
- justify-content: center;
2304
- color: rgb(25, 118, 210);
2305
- color: var(--dv-side-panel__header_active-color);
2306
- border-bottom: 1px solid rgb(25, 118, 210);
2307
- border-bottom: 1px solid var(--dv-side-panel__header_active-color);
2308
- }
2309
-
2310
- .dv-side-panel__header_reduced {
2311
- border-top: 1px solid rgb(210, 207, 207);
2312
- border-top: 1px solid var(--dv-side-panel__border-color);
2313
- }
2314
-
2315
- .dv-side-panel__single-tab-icon {
2316
- flex: 0 0 auto;
2317
- margin: 0 12px;
2318
- }
2319
-
2320
- .dv-side-panel__single-tab-name {
2321
- flex: 0 1 auto;
2322
- text-transform: uppercase;
2323
- text-overflow: ellipsis;
2324
- overflow: hidden;
2325
- display: inline-block;
2326
- }
2327
-
2328
- .dv-side-panel__single-tab-counter {
2329
- flex: 0 0 auto;
2330
- border-radius: 4px;
2331
- background: rgb(25, 118, 210);
2332
- background: var(--dv-side-panel__header_active-color);
2333
- color: #fff;
2334
- color: var(--dv-side-panel__header_counter-color);
2335
- padding: 2px 5px;
2336
- margin: 0 12px;
2337
- }
2338
-
2339
- .dv-side-panel__multi-tab-list {
2340
- display: flex;
2341
- align-items: stretch;
2342
- justify-content: space-around;
2343
- color: rgb(25, 118, 210);
2344
- color: var(--dv-side-panel__header_active-color);
2345
- }
2346
-
2347
- .dv-side-panel__multi-tab {
2348
- flex: 1 1 0%;
2349
- display: flex;
2350
- align-items: center;
2351
- justify-content: center;
2352
- border-bottom: 1px solid rgb(210, 207, 207);
2353
- border-bottom: 1px solid var(--dv-side-panel__border-color);
2354
- cursor: pointer;
2355
- }
2356
-
2357
- .no-touch .dv-side-panel__multi-tab:hover {
2358
- background-color: rgba(0, 0, 0, 0.1);
2359
- }
2360
-
2361
- .dv-side-panel__multi-tab_active {
2362
- border-bottom: 1px solid rgb(25, 118, 210);
2363
- border-bottom: 1px solid var(--dv-side-panel__header_active-color);
2364
- }
2365
-
2366
- .dv-side-panel__multi-tab-title {
2367
- display: flex;
2368
- align-items: center;
2369
- justify-content: center;
2370
- padding: 5px 5px;
2371
- border-right: 1px solid rgb(210, 207, 207);
2372
- border-right: 1px solid var(--dv-side-panel__border-color);
2373
- border-left: 1px solid rgb(210, 207, 207);
2374
- border-left: 1px solid var(--dv-side-panel__border-color);
2375
- }
2376
-
2377
- .dv-side-panel__multi-tab-title-icon {
2378
- margin: 0 12px;
2379
- flex: 0 0 auto;
2380
- }
2381
-
2382
- .dv-side-panel__multi-tab-title-name {
2383
- flex: 0 1 auto;
2384
- text-transform: uppercase;
2385
- }
2386
-
2387
- .dv-side-panel__multi-tab-title-counter {
2388
- flex: 0 0 auto;
2389
- margin: 0 12px;
2390
- border-radius: 4px;
2391
- border: 1px solid rgb(210, 207, 207);
2392
- border: 1px solid var(--dv-side-panel__border-color);
2393
- padding: 2px 5px;
2394
- }
2395
-
2396
2289
  :root {
2397
2290
  --dv-side-panel__width: 260px;
2398
2291
  --dv-side-panel__gap-width: 8px;
@@ -2548,27 +2441,134 @@ hue-6-2: #c18401
2548
2441
  }
2549
2442
  }
2550
2443
 
2551
- @keyframes open-mobile {
2552
- 0% {
2553
- display: block;
2554
- transform: translateX(0);
2555
- visibility: hidden;
2556
- }
2557
- 100% {
2558
- display: block;
2559
- transform: translateX(-100%);
2560
- visibility: visible;
2561
- }
2562
- }
2563
- .dv-table-header-column__content {
2564
- overflow: hidden;
2565
- text-overflow: ellipsis;
2566
- white-space: nowrap;
2444
+ @keyframes open-mobile {
2445
+ 0% {
2446
+ display: block;
2447
+ transform: translateX(0);
2448
+ visibility: hidden;
2449
+ }
2450
+ 100% {
2451
+ display: block;
2452
+ transform: translateX(-100%);
2453
+ visibility: visible;
2454
+ }
2455
+ }
2456
+ .dv-table-header-column__content {
2457
+ overflow: hidden;
2458
+ text-overflow: ellipsis;
2459
+ white-space: nowrap;
2460
+ }
2461
+
2462
+ .dv-table-header-column__content_sort {
2463
+ font-weight: 700;
2464
+ color: rgb(0, 0, 0);
2465
+ }
2466
+
2467
+ :root {
2468
+ --dv-side-panel__header_background: #eee;
2469
+ --dv-side-panel__header_active-color: rgb(25, 118, 210);
2470
+ --dv-side-panel__header_counter-color: #fff;
2471
+ --dv-side-panel__border-color: rgb(210, 207, 207);
2472
+ }
2473
+
2474
+ .dv-side-panel__header {
2475
+ flex: 0 0 auto;
2476
+ }
2477
+
2478
+ .dv-side-panel__single-tab {
2479
+ display: flex;
2480
+ align-items: center;
2481
+ justify-content: center;
2482
+ color: rgb(25, 118, 210);
2483
+ color: var(--dv-side-panel__header_active-color);
2484
+ border-bottom: 1px solid rgb(25, 118, 210);
2485
+ border-bottom: 1px solid var(--dv-side-panel__header_active-color);
2486
+ }
2487
+
2488
+ .dv-side-panel__header_reduced {
2489
+ border-top: 1px solid rgb(210, 207, 207);
2490
+ border-top: 1px solid var(--dv-side-panel__border-color);
2491
+ }
2492
+
2493
+ .dv-side-panel__single-tab-icon {
2494
+ flex: 0 0 auto;
2495
+ margin: 0 12px;
2496
+ }
2497
+
2498
+ .dv-side-panel__single-tab-name {
2499
+ flex: 0 1 auto;
2500
+ text-transform: uppercase;
2501
+ text-overflow: ellipsis;
2502
+ overflow: hidden;
2503
+ display: inline-block;
2504
+ }
2505
+
2506
+ .dv-side-panel__single-tab-counter {
2507
+ flex: 0 0 auto;
2508
+ border-radius: 4px;
2509
+ background: rgb(25, 118, 210);
2510
+ background: var(--dv-side-panel__header_active-color);
2511
+ color: #fff;
2512
+ color: var(--dv-side-panel__header_counter-color);
2513
+ padding: 2px 5px;
2514
+ margin: 0 12px;
2515
+ }
2516
+
2517
+ .dv-side-panel__multi-tab-list {
2518
+ display: flex;
2519
+ align-items: stretch;
2520
+ justify-content: space-around;
2521
+ color: rgb(25, 118, 210);
2522
+ color: var(--dv-side-panel__header_active-color);
2523
+ }
2524
+
2525
+ .dv-side-panel__multi-tab {
2526
+ flex: 1 1 0%;
2527
+ display: flex;
2528
+ align-items: center;
2529
+ justify-content: center;
2530
+ border-bottom: 1px solid rgb(210, 207, 207);
2531
+ border-bottom: 1px solid var(--dv-side-panel__border-color);
2532
+ cursor: pointer;
2533
+ }
2534
+
2535
+ .no-touch .dv-side-panel__multi-tab:hover {
2536
+ background-color: rgba(0, 0, 0, 0.1);
2537
+ }
2538
+
2539
+ .dv-side-panel__multi-tab_active {
2540
+ border-bottom: 1px solid rgb(25, 118, 210);
2541
+ border-bottom: 1px solid var(--dv-side-panel__header_active-color);
2542
+ }
2543
+
2544
+ .dv-side-panel__multi-tab-title {
2545
+ display: flex;
2546
+ align-items: center;
2547
+ justify-content: center;
2548
+ padding: 5px 5px;
2549
+ border-right: 1px solid rgb(210, 207, 207);
2550
+ border-right: 1px solid var(--dv-side-panel__border-color);
2551
+ border-left: 1px solid rgb(210, 207, 207);
2552
+ border-left: 1px solid var(--dv-side-panel__border-color);
2553
+ }
2554
+
2555
+ .dv-side-panel__multi-tab-title-icon {
2556
+ margin: 0 12px;
2557
+ flex: 0 0 auto;
2567
2558
  }
2568
2559
 
2569
- .dv-table-header-column__content_sort {
2570
- font-weight: 700;
2571
- color: rgb(0, 0, 0);
2560
+ .dv-side-panel__multi-tab-title-name {
2561
+ flex: 0 1 auto;
2562
+ text-transform: uppercase;
2563
+ }
2564
+
2565
+ .dv-side-panel__multi-tab-title-counter {
2566
+ flex: 0 0 auto;
2567
+ margin: 0 12px;
2568
+ border-radius: 4px;
2569
+ border: 1px solid rgb(210, 207, 207);
2570
+ border: 1px solid var(--dv-side-panel__border-color);
2571
+ padding: 2px 5px;
2572
2572
  }
2573
2573
  .dv-side-panel__toolbar-icon {
2574
2574
  margin-top: 3px;
@@ -2583,16 +2583,6 @@ hue-6-2: #c18401
2583
2583
  .dv-table-sort__hover-panel::before {
2584
2584
  display: none;
2585
2585
  }
2586
- .dv-grouping-panel__container {
2587
- padding: 0.5rem;
2588
- }
2589
-
2590
- .dv-grouping-panel__spacer {
2591
- height: 5px;
2592
- }
2593
-
2594
- .dv-grouping-panel__transit-item_out {
2595
- }
2596
2586
  .gu-transit {
2597
2587
  display: none;
2598
2588
  }
@@ -2604,6 +2594,16 @@ hue-6-2: #c18401
2604
2594
  .gu-mirror.dv-table-header-column .dv-table-header-column__sort-direction__indicator {
2605
2595
  display: none;
2606
2596
  }
2597
+ .dv-grouping-panel__container {
2598
+ padding: 0.5rem;
2599
+ }
2600
+
2601
+ .dv-grouping-panel__spacer {
2602
+ height: 5px;
2603
+ }
2604
+
2605
+ .dv-grouping-panel__transit-item_out {
2606
+ }
2607
2607
  :root {
2608
2608
  --dv-grouping-path_color: #0077ce;
2609
2609
  --dv-grouping-path_border-color: var(--dv-grouping-path_color);
@@ -2810,40 +2810,6 @@ hue-6-2: #c18401
2810
2810
  }
2811
2811
  }
2812
2812
 
2813
- :root {
2814
- --dv-column-list__button-icon_background-color: rgb(31, 24, 24);
2815
- }
2816
-
2817
- .dv-column-list__button-icon {
2818
- cursor: pointer;
2819
- opacity: 0.5;
2820
- padding: 0px 6px;
2821
- position: relative;
2822
- display: inline-block;
2823
- }
2824
-
2825
- .dv-column-list__button-icon:hover {
2826
- background: transparent;
2827
- opacity: 0.8;
2828
- }
2829
-
2830
- .dv-columns-list__button-icon_disabled {
2831
- opacity: 0.4;
2832
- }
2833
-
2834
- .dv-column-list__button-icon:hover::before {
2835
- content: "";
2836
- position: absolute;
2837
- top: 50%;
2838
- left: 50%;
2839
- transform: translate(-50%, -50%);
2840
- background-color: rgb(31, 24, 24);
2841
- background-color: var(--dv-column-list__button-icon_background-color);
2842
- width: 35px;
2843
- height: 35px;
2844
- border-radius: 50%;
2845
- opacity: 0.07;
2846
- }
2847
2813
  :root {
2848
2814
  --dv-column-list__container_background-color: white;
2849
2815
  --dv-column-list__container_box-shadow-color: rgba(0, 0, 0, 0.35);
@@ -2900,6 +2866,53 @@ hue-6-2: #c18401
2900
2866
  visibility: visible;
2901
2867
  opacity: 1;
2902
2868
  }
2869
+ :root {
2870
+ --dv-column-list__button-icon_background-color: rgb(31, 24, 24);
2871
+ }
2872
+
2873
+ .dv-column-list__button-icon {
2874
+ cursor: pointer;
2875
+ opacity: 0.5;
2876
+ padding: 0px 6px;
2877
+ position: relative;
2878
+ display: inline-block;
2879
+ }
2880
+
2881
+ .dv-column-list__button-icon:hover {
2882
+ background: transparent;
2883
+ opacity: 0.8;
2884
+ }
2885
+
2886
+ .dv-columns-list__button-icon_disabled {
2887
+ opacity: 0.4;
2888
+ }
2889
+
2890
+ .dv-column-list__button-icon:hover::before {
2891
+ content: "";
2892
+ position: absolute;
2893
+ top: 50%;
2894
+ left: 50%;
2895
+ transform: translate(-50%, -50%);
2896
+ background-color: rgb(31, 24, 24);
2897
+ background-color: var(--dv-column-list__button-icon_background-color);
2898
+ width: 35px;
2899
+ height: 35px;
2900
+ border-radius: 50%;
2901
+ opacity: 0.07;
2902
+ }
2903
+ .dv-column-list__text {
2904
+ padding-left: 16px;
2905
+ font-size: 1rem;
2906
+ font-weight: 500;
2907
+ line-height: 1rem;
2908
+ word-wrap: break-word;
2909
+ white-space: pre-wrap;
2910
+ word-break: break-word;
2911
+ }
2912
+
2913
+ .dv-column-list__text_sort {
2914
+ padding-left: 0;
2915
+ }
2903
2916
 
2904
2917
 
2905
2918
  .dv-column-list__indicator {
@@ -2953,28 +2966,15 @@ li.dv-column-list__item_sorted:hover {
2953
2966
  background: var(--dv-column-list_hover-background-color);
2954
2967
  }
2955
2968
 
2969
+ .dv-column-list__wrapper {
2970
+ word-wrap: break-word;
2971
+ position: relative;
2972
+ }
2956
2973
  .dv-column-list__menu {
2957
2974
  list-style-type: none;
2958
2975
  margin: 0;
2959
2976
  padding: 0;
2960
2977
  }
2961
- .dv-column-list__text {
2962
- padding-left: 16px;
2963
- font-size: 1rem;
2964
- font-weight: 500;
2965
- line-height: 1rem;
2966
- word-wrap: break-word;
2967
- white-space: pre-wrap;
2968
- word-break: break-word;
2969
- }
2970
-
2971
- .dv-column-list__text_sort {
2972
- padding-left: 0;
2973
- }
2974
- .dv-column-list__wrapper {
2975
- word-wrap: break-word;
2976
- position: relative;
2977
- }
2978
2978
  .dv-hover-panel {
2979
2979
  display: none;
2980
2980
  position: absolute;
@@ -3033,25 +3033,6 @@ li.dv-column-list__item_sorted:hover {
3033
3033
  visibility: visible;
3034
3034
  }
3035
3035
  }
3036
- .dv-table-header-column__sort-direction__indicator {
3037
- position: absolute;
3038
- left: 2px;
3039
- top: 50%;
3040
- transform: translateY(-50%);
3041
- }
3042
-
3043
- .dv-table-header-column__sort-direction__button {
3044
- cursor: pointer;
3045
- position: relative;
3046
- }
3047
-
3048
- .dv-table-header-column__sort-direction__button svg {
3049
- position: absolute;
3050
- top: 50%;
3051
- right: 50%;
3052
- transform: translate(50%, -50%);
3053
- }
3054
-
3055
3036
  .gu-mirror {
3056
3037
  position: fixed !important;
3057
3038
  margin: 0 !important;
@@ -3075,42 +3056,25 @@ li.dv-column-list__item_sorted:hover {
3075
3056
  filter: alpha(opacity=20);
3076
3057
  }
3077
3058
 
3078
- @import '../constants.css';
3079
-
3080
- :root {
3081
- --dv-context-menu__desktop-bar__ul_background-color: #FFF;
3082
- --dv-context-menu__desktop-bar__ul_box-shadow-color: rgba(0, 0, 0, 0.5);
3083
- }
3084
-
3085
- .dv-context-menu__desktop-bar > ul {
3086
- background: #FFF;
3087
- background: var(--dv-context-menu__desktop-bar__ul_background-color);
3088
- box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.5);
3089
- box-shadow: 0 0 5px 2px var(--dv-context-menu__desktop-bar__ul_box-shadow-color);
3090
- width: auto;
3091
- text-align: left;
3092
- padding: 0;
3093
- margin: 0;
3094
- list-style: none;
3059
+ .dv-table-header-column__sort-direction__indicator {
3060
+ position: absolute;
3061
+ left: 2px;
3062
+ top: 50%;
3063
+ transform: translateY(-50%);
3095
3064
  }
3096
3065
 
3097
- .dv-context-menu__desktop-bar.active {
3098
- visibility: visible;
3099
- opacity: 1;
3100
- transition: opacity 0.2s linear;
3066
+ .dv-table-header-column__sort-direction__button {
3067
+ cursor: pointer;
3068
+ position: relative;
3101
3069
  }
3102
3070
 
3103
- .dv-context-menu__desktop-bar.hidden {
3104
- display: block !important;
3105
- visibility: hidden;
3106
- opacity: 0;
3107
- transition: visibility 0s 0.2s, opacity 0.2s linear;
3071
+ .dv-table-header-column__sort-direction__button svg {
3072
+ position: absolute;
3073
+ top: 50%;
3074
+ right: 50%;
3075
+ transform: translate(50%, -50%);
3108
3076
  }
3109
-
3110
- .dv-context-menu__desktop-bar.hidden > ul {
3111
- margin-top: -10000px;
3112
- transition: margin-top 0s 0.2s;
3113
- }
3077
+
3114
3078
  @import '../../../theme.css';
3115
3079
  @import '../constants.css';
3116
3080
 
@@ -3153,6 +3117,42 @@ li.dv-column-list__item_sorted:hover {
3153
3117
  }
3154
3118
 
3155
3119
 
3120
+ @import '../constants.css';
3121
+
3122
+ :root {
3123
+ --dv-context-menu__desktop-bar__ul_background-color: #FFF;
3124
+ --dv-context-menu__desktop-bar__ul_box-shadow-color: rgba(0, 0, 0, 0.5);
3125
+ }
3126
+
3127
+ .dv-context-menu__desktop-bar > ul {
3128
+ background: #FFF;
3129
+ background: var(--dv-context-menu__desktop-bar__ul_background-color);
3130
+ box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.5);
3131
+ box-shadow: 0 0 5px 2px var(--dv-context-menu__desktop-bar__ul_box-shadow-color);
3132
+ width: auto;
3133
+ text-align: left;
3134
+ padding: 0;
3135
+ margin: 0;
3136
+ list-style: none;
3137
+ }
3138
+
3139
+ .dv-context-menu__desktop-bar.active {
3140
+ visibility: visible;
3141
+ opacity: 1;
3142
+ transition: opacity 0.2s linear;
3143
+ }
3144
+
3145
+ .dv-context-menu__desktop-bar.hidden {
3146
+ display: block !important;
3147
+ visibility: hidden;
3148
+ opacity: 0;
3149
+ transition: visibility 0s 0.2s, opacity 0.2s linear;
3150
+ }
3151
+
3152
+ .dv-context-menu__desktop-bar.hidden > ul {
3153
+ margin-top: -10000px;
3154
+ transition: margin-top 0s 0.2s;
3155
+ }
3156
3156
  .dv-context-menu__content_type_mobile {
3157
3157
  left: 0;
3158
3158
  width: 100%;
@@ -3164,135 +3164,135 @@ li.dv-column-list__item_sorted:hover {
3164
3164
  width: 200px;
3165
3165
  }
3166
3166
  :root {
3167
- --dv-context-menu__desktop-item_focus_background-color: #EAF2FF;
3167
+ --dv-context-menu__mobile-item_hover-background-color: #EAF2FF;
3168
3168
  }
3169
3169
 
3170
- .dv-context-menu__desktop-item {
3170
+ .dv-context-menu__mobile-item {
3171
3171
  padding: 0;
3172
+ border-bottom: 1px solid var(--dv-context-menu_white-color);
3172
3173
  }
3173
3174
 
3174
- .dv-context-menu__desktop-item:focus {
3175
- background: #EAF2FF;
3176
- background: var(--dv-context-menu__desktop-item_focus_background-color);
3177
- }
3178
-
3179
- .dv-context-menu__desktop-item:focus .dv-context-menu__desktop-item-content {
3180
- background: #EAF2FF;
3181
- background: var(--dv-context-menu__desktop-item_focus_background-color);
3175
+ .dv-context-menu__mobile-item:last-child {
3176
+ border-bottom: none;
3182
3177
  }
3183
3178
 
3184
- .dv-context-menu__desktop-item-content {
3185
- display: block;
3186
- margin: 0;
3187
- font-size: 100%;
3188
- color: var(--dv-context-menu__desktop-item-content_color);
3189
- cursor: pointer;
3179
+ .dv-context-menu__mobile-item-content {
3190
3180
  padding: 5px 10px;
3191
3181
  }
3192
3182
 
3193
-
3194
- .dv-context-menu__desktop-item_padding-to-child .dv-context-menu__desktop-item-content {
3195
- padding: 0;
3183
+ .dv-context-menu__mobile-item_padding-to-child .dv-context-menu__mobile-item-content {
3184
+ padding: 0;
3196
3185
  }
3197
3186
 
3198
- .dv-context-menu__desktop-item_padding-to-child .dv-context-menu__desktop-item-content > span {
3187
+ .dv-context-menu__mobile-item_padding-to-child .dv-context-menu__mobile-item-content > span {
3199
3188
  display: block;
3200
3189
  }
3201
3190
 
3202
- .dv-context-menu__desktop-item_padding-to-child .dv-context-menu__desktop-item-content a {
3203
- display: block;
3191
+ .dv-context-menu__mobile-item_padding-to-child .dv-context-menu__mobile-item-content a {
3192
+ display: block;
3204
3193
  }
3205
3194
 
3206
- .dv-context-menu__desktop-item_padding-to-child .dv-context-menu__desktop-item-content > * {
3195
+ .dv-context-menu__mobile-item_padding-to-child .dv-context-menu__mobile-item-content > * {
3207
3196
  padding: 5px 10px;
3208
3197
  }
3209
3198
 
3210
- .dv-context-menu__desktop-item-content a {
3199
+ .dv-context-menu__mobile-item-content {
3200
+ display: block;
3201
+ margin: 0;
3202
+ font-size: 100%;
3211
3203
  color: var(--dv-context-menu_white-color);
3204
+ cursor: pointer;
3212
3205
  }
3213
3206
 
3214
- .no-touch .dv-context-menu__desktop-item:hover {
3207
+ .dv-context-menu__mobile-item-content a {
3208
+ color: var(--dv-context-menu_white-color);
3209
+ }
3210
+
3211
+ .no-touch .dv-context-menu__mobile-item:hover {
3215
3212
  background: #EAF2FF;
3216
- background: var(--dv-context-menu__desktop-item_focus_background-color);
3213
+ background: var(--dv-context-menu__mobile-item_hover-background-color);
3217
3214
  }
3218
3215
 
3219
- .no-touch .dv-context-menu__desktop-item:hover .dv-context-menu__desktop-item-content {
3216
+ .no-touch .dv-context-menu__mobile-item-content:hover {
3220
3217
  background: #EAF2FF;
3221
- background: var(--dv-context-menu__desktop-item_focus_background-color);
3218
+ background: var(--dv-context-menu__mobile-item_hover-background-color);
3222
3219
  }
3223
3220
 
3221
+ .no-touch .dv-context-menu__mobile-item:hover {
3222
+ background-color: var(--dv-context-menu_white-color);
3223
+ }
3224
3224
 
3225
- .no-touch .dv-context-menu__desktop-item-content:hover {
3225
+ .no-touch .dv-context-menu__mobile-item-content:hover {
3226
3226
  color: var(--dv-context-menu_black-color);
3227
3227
  }
3228
3228
 
3229
- .no-touch .dv-context-menu__desktop-item-content:hover a {
3229
+ .no-touch .dv-context-menu__mobile-item-content:hover a {
3230
3230
  color: var(--dv-context-menu_black-color);
3231
3231
  }
3232
3232
  :root {
3233
- --dv-context-menu__mobile-item_hover-background-color: #EAF2FF;
3233
+ --dv-context-menu__desktop-item_focus_background-color: #EAF2FF;
3234
3234
  }
3235
3235
 
3236
- .dv-context-menu__mobile-item {
3236
+ .dv-context-menu__desktop-item {
3237
3237
  padding: 0;
3238
- border-bottom: 1px solid var(--dv-context-menu_white-color);
3239
3238
  }
3240
3239
 
3241
- .dv-context-menu__mobile-item:last-child {
3242
- border-bottom: none;
3240
+ .dv-context-menu__desktop-item:focus {
3241
+ background: #EAF2FF;
3242
+ background: var(--dv-context-menu__desktop-item_focus_background-color);
3243
3243
  }
3244
3244
 
3245
- .dv-context-menu__mobile-item-content {
3245
+ .dv-context-menu__desktop-item:focus .dv-context-menu__desktop-item-content {
3246
+ background: #EAF2FF;
3247
+ background: var(--dv-context-menu__desktop-item_focus_background-color);
3248
+ }
3249
+
3250
+ .dv-context-menu__desktop-item-content {
3251
+ display: block;
3252
+ margin: 0;
3253
+ font-size: 100%;
3254
+ color: var(--dv-context-menu__desktop-item-content_color);
3255
+ cursor: pointer;
3246
3256
  padding: 5px 10px;
3247
3257
  }
3248
3258
 
3249
- .dv-context-menu__mobile-item_padding-to-child .dv-context-menu__mobile-item-content {
3250
- padding: 0;
3259
+
3260
+ .dv-context-menu__desktop-item_padding-to-child .dv-context-menu__desktop-item-content {
3261
+ padding: 0;
3251
3262
  }
3252
3263
 
3253
- .dv-context-menu__mobile-item_padding-to-child .dv-context-menu__mobile-item-content > span {
3264
+ .dv-context-menu__desktop-item_padding-to-child .dv-context-menu__desktop-item-content > span {
3254
3265
  display: block;
3255
3266
  }
3256
3267
 
3257
- .dv-context-menu__mobile-item_padding-to-child .dv-context-menu__mobile-item-content a {
3258
- display: block;
3268
+ .dv-context-menu__desktop-item_padding-to-child .dv-context-menu__desktop-item-content a {
3269
+ display: block;
3259
3270
  }
3260
3271
 
3261
- .dv-context-menu__mobile-item_padding-to-child .dv-context-menu__mobile-item-content > * {
3272
+ .dv-context-menu__desktop-item_padding-to-child .dv-context-menu__desktop-item-content > * {
3262
3273
  padding: 5px 10px;
3263
3274
  }
3264
3275
 
3265
- .dv-context-menu__mobile-item-content {
3266
- display: block;
3267
- margin: 0;
3268
- font-size: 100%;
3269
- color: var(--dv-context-menu_white-color);
3270
- cursor: pointer;
3271
- }
3272
-
3273
- .dv-context-menu__mobile-item-content a {
3276
+ .dv-context-menu__desktop-item-content a {
3274
3277
  color: var(--dv-context-menu_white-color);
3275
3278
  }
3276
3279
 
3277
- .no-touch .dv-context-menu__mobile-item:hover {
3280
+ .no-touch .dv-context-menu__desktop-item:hover {
3278
3281
  background: #EAF2FF;
3279
- background: var(--dv-context-menu__mobile-item_hover-background-color);
3282
+ background: var(--dv-context-menu__desktop-item_focus_background-color);
3280
3283
  }
3281
3284
 
3282
- .no-touch .dv-context-menu__mobile-item-content:hover {
3285
+ .no-touch .dv-context-menu__desktop-item:hover .dv-context-menu__desktop-item-content {
3283
3286
  background: #EAF2FF;
3284
- background: var(--dv-context-menu__mobile-item_hover-background-color);
3287
+ background: var(--dv-context-menu__desktop-item_focus_background-color);
3285
3288
  }
3286
3289
 
3287
- .no-touch .dv-context-menu__mobile-item:hover {
3288
- background-color: var(--dv-context-menu_white-color);
3289
- }
3290
3290
 
3291
- .no-touch .dv-context-menu__mobile-item-content:hover {
3291
+ .no-touch .dv-context-menu__desktop-item-content:hover {
3292
3292
  color: var(--dv-context-menu_black-color);
3293
3293
  }
3294
3294
 
3295
- .no-touch .dv-context-menu__mobile-item-content:hover a {
3295
+ .no-touch .dv-context-menu__desktop-item-content:hover a {
3296
3296
  color: var(--dv-context-menu_black-color);
3297
3297
  }
3298
3298
  .dv-modal-backdrop {
@@ -3394,6 +3394,15 @@ li.dv-column-list__item_sorted:hover {
3394
3394
  background: rgba(0, 0, 0, 0.05);
3395
3395
  background: var(--table-row-background-hover-color);
3396
3396
  }
3397
+ .dv-list-view-toggle__toggle {
3398
+ display: inline-block;
3399
+ opacity: 0.6;
3400
+ padding-top: 3px;
3401
+ }
3402
+
3403
+ .dv-list-view-toggle__toggle_active {
3404
+ background-color: rgba(0, 0, 0, 0.15);
3405
+ }
3397
3406
 
3398
3407
  :root {
3399
3408
  --dv-ribbon-cell__header_color: gray;
@@ -3469,15 +3478,6 @@ li.dv-column-list__item_sorted:hover {
3469
3478
  column-width: 580px;
3470
3479
  column-width: var(--dv-ribbon-row__cell-attributes_column-width_maximal);
3471
3480
  }
3472
- .dv-list-view-toggle__toggle {
3473
- display: inline-block;
3474
- opacity: 0.6;
3475
- padding-top: 3px;
3476
- }
3477
-
3478
- .dv-list-view-toggle__toggle_active {
3479
- background-color: rgba(0, 0, 0, 0.15);
3480
- }
3481
3481
  .dv-tooltip {
3482
3482
  padding: 9px;
3483
3483
  position: absolute;
@@ -3608,6 +3608,26 @@ li.dv-column-list__item_sorted:hover {
3608
3608
  }
3609
3609
  }
3610
3610
 
3611
+ .dv-icon-button__container {
3612
+ display: block;
3613
+ border: none;
3614
+ box-shadow: none;
3615
+ background-color: transparent;
3616
+ padding: 0;
3617
+ }
3618
+
3619
+ .dv-icon-button__container:focus {
3620
+ outline: 1px dotted #555;
3621
+ }
3622
+
3623
+ .dv-icon-button__container:disabled,
3624
+ .dv-icon-button__container:disabled * {
3625
+ cursor: not-allowed;
3626
+ }
3627
+
3628
+ .dv-icon-button__container:focus:not(:focus-visible) {
3629
+ outline: none;
3630
+ }
3611
3631
  .dv-icon-button__styled-body {
3612
3632
  opacity: 0.8;
3613
3633
  padding: 0px 6px;
@@ -3632,26 +3652,6 @@ li.dv-column-list__item_sorted:hover {
3632
3652
  opacity: 0.5;
3633
3653
  cursor: not-allowed;
3634
3654
  }
3635
- .dv-icon-button__container {
3636
- display: block;
3637
- border: none;
3638
- box-shadow: none;
3639
- background-color: transparent;
3640
- padding: 0;
3641
- }
3642
-
3643
- .dv-icon-button__container:focus {
3644
- outline: 1px dotted #555;
3645
- }
3646
-
3647
- .dv-icon-button__container:disabled,
3648
- .dv-icon-button__container:disabled * {
3649
- cursor: not-allowed;
3650
- }
3651
-
3652
- .dv-icon-button__container:focus:not(:focus-visible) {
3653
- outline: none;
3654
- }
3655
3655
  .dv-filter {
3656
3656
  padding: 0;
3657
3657
  cursor: pointer;
@@ -3688,6 +3688,16 @@ li.dv-column-list__item_sorted:hover {
3688
3688
  cursor: pointer;
3689
3689
  margin: 0;
3690
3690
  }
3691
+ .dv-checkbox__label {
3692
+ display: flex;
3693
+ justify-content: center;
3694
+ align-items: center;
3695
+ margin-bottom: 0;
3696
+ cursor: pointer;
3697
+ }
3698
+ .dv-checkbox__label_disabled {
3699
+ cursor: default;
3700
+ }
3691
3701
  :root {
3692
3702
  --checkbox-label-ident: 0.4rem;
3693
3703
  }
@@ -3702,16 +3712,36 @@ li.dv-column-list__item_sorted:hover {
3702
3712
  .dv-checkbox__label-text_empty {
3703
3713
  margin-left: 0;
3704
3714
  }
3705
- .dv-checkbox__label {
3706
- display: flex;
3707
- justify-content: center;
3708
- align-items: center;
3709
- margin-bottom: 0;
3710
- cursor: pointer;
3715
+ .dv-toolbar-filter-drop {
3716
+ display: inline-block;
3717
+ margin-left: 20px;
3718
+ display: none;
3711
3719
  }
3712
- .dv-checkbox__label_disabled {
3713
- cursor: default;
3714
- }
3720
+
3721
+ .dv-toolbar-filter-drop__btn {
3722
+ text-transform: uppercase;
3723
+ color: #000;
3724
+ background-color: #fafafa;
3725
+ padding: 6px 10px;
3726
+ border: none;
3727
+ outline: none;
3728
+ transition: 0.3s;
3729
+ border-radius: 3px;
3730
+ font-size: 12px;
3731
+ }
3732
+
3733
+ .dv-toolbar-filter-drop__btn:focus {
3734
+ outline: none;
3735
+ }
3736
+
3737
+ .dv-toolbar-filter-drop__btn:hover {
3738
+ background-color: #fefefe;
3739
+ }
3740
+
3741
+ .dv-filter-drop_visible {
3742
+ display: inline-block;
3743
+ }
3744
+
3715
3745
  .dv-filter-panel {
3716
3746
  background-color: #fff;
3717
3747
  max-width: 350px;
@@ -3763,36 +3793,6 @@ li.dv-column-list__item_sorted:hover {
3763
3793
 
3764
3794
 
3765
3795
 
3766
- .dv-toolbar-filter-drop {
3767
- display: inline-block;
3768
- margin-left: 20px;
3769
- display: none;
3770
- }
3771
-
3772
- .dv-toolbar-filter-drop__btn {
3773
- text-transform: uppercase;
3774
- color: #000;
3775
- background-color: #fafafa;
3776
- padding: 6px 10px;
3777
- border: none;
3778
- outline: none;
3779
- transition: 0.3s;
3780
- border-radius: 3px;
3781
- font-size: 12px;
3782
- }
3783
-
3784
- .dv-toolbar-filter-drop__btn:focus {
3785
- outline: none;
3786
- }
3787
-
3788
- .dv-toolbar-filter-drop__btn:hover {
3789
- background-color: #fefefe;
3790
- }
3791
-
3792
- .dv-filter-drop_visible {
3793
- display: inline-block;
3794
- }
3795
-
3796
3796
  .dv-filter-indicator {
3797
3797
  margin-left: 5px;
3798
3798
  display: none;