bfg-common 1.3.467 → 1.3.469

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 (109) hide show
  1. package/assets/scss/common/normalize.scss +340 -340
  2. package/components/atoms/TheIcon2.vue +1353 -1353
  3. package/components/atoms/loader/Loader.vue +30 -30
  4. package/components/atoms/loader/PreLoader.vue +38 -38
  5. package/components/atoms/switch/Switch.vue +111 -111
  6. package/components/atoms/table/compact/Compact.vue +526 -526
  7. package/components/common/adapterManager/ui/table/Header.vue +93 -93
  8. package/components/common/adapterManager/ui/table/Table.vue +162 -162
  9. package/components/common/context/Context.vue +99 -99
  10. package/components/common/layout/theHeader/LanguageSwitch.vue +102 -0
  11. package/components/common/layout/theHeader/TheHeader.vue +91 -0
  12. package/components/common/layout/theHeader/TheHeaderNew.vue +229 -0
  13. package/components/common/layout/theHeader/TheHeaderOld.vue +241 -0
  14. package/components/common/layout/theHeader/feedback/Feedback.vue +104 -0
  15. package/components/common/layout/theHeader/feedback/FeedbackNew.vue +63 -0
  16. package/components/common/layout/theHeader/feedback/FeedbackOld.vue +73 -0
  17. package/components/common/layout/theHeader/helpMenu/About.vue +110 -0
  18. package/components/common/layout/theHeader/helpMenu/HelpMenu.vue +45 -0
  19. package/components/common/layout/theHeader/helpMenu/helpMenuNew/HelpMenuNew.vue +116 -0
  20. package/components/common/layout/theHeader/helpMenu/helpMenuNew/lib/config/dropMenu.ts +25 -0
  21. package/components/common/layout/theHeader/helpMenu/helpMenuOld/HelpMenuOld.vue +69 -0
  22. package/components/common/layout/theHeader/helpMenu/helpMenuOld/lib/config/dropMenu.ts +22 -0
  23. package/components/common/layout/theHeader/helpMenu/helpMenuOld/lib/models/types.ts +1 -0
  24. package/components/common/layout/theHeader/lib/models/types.ts +5 -0
  25. package/components/common/layout/theHeader/modals/Reconnect.vue +98 -0
  26. package/components/common/layout/theHeader/modals/RedirectLogin.vue +60 -0
  27. package/components/common/layout/theHeader/userMenu/UserMenu.vue +95 -0
  28. package/components/common/layout/theHeader/userMenu/lib/models/interfaces.ts +32 -0
  29. package/components/common/layout/theHeader/userMenu/modals/changePassword/ChangePassword.vue +210 -0
  30. package/components/common/layout/theHeader/userMenu/modals/changePassword/lib/config/form.ts +31 -0
  31. package/components/common/layout/theHeader/userMenu/modals/changePassword/lib/models/interfaces.ts +12 -0
  32. package/components/common/layout/theHeader/userMenu/modals/preferences/Inventory.vue +43 -0
  33. package/components/common/layout/theHeader/userMenu/modals/preferences/Preferences.vue +119 -0
  34. package/components/common/layout/theHeader/userMenu/modals/preferences/View.vue +113 -0
  35. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/ChangeLanguage.vue +148 -0
  36. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/lib/config/lang.ts +10 -0
  37. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/lib/config/radioOptions.ts +22 -0
  38. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/lib/models/enums.ts +9 -0
  39. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/lib/models/interfaces.ts +11 -0
  40. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/lib/models/types.ts +1 -0
  41. package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/DefaultConsole.vue +66 -0
  42. package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/lib/config/consoleOptions.ts +30 -0
  43. package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/lib/models/interfaces.ts +5 -0
  44. package/components/common/layout/theHeader/userMenu/modals/preferences/lib/config/preferencesTabs.ts +68 -0
  45. package/components/common/layout/theHeader/userMenu/modals/preferences/lib/models/types.ts +1 -0
  46. package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/TimeFormat.vue +67 -0
  47. package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/lib/config/formatOptions.ts +27 -0
  48. package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/lib/models/types.ts +1 -0
  49. package/components/common/layout/theHeader/userMenu/userMenuNew/UserMenuNew.vue +114 -0
  50. package/components/common/layout/theHeader/userMenu/userMenuNew/lib/config/dropMenu.ts +28 -0
  51. package/components/common/layout/theHeader/userMenu/userMenuOld/UserMenuOld.vue +36 -0
  52. package/components/common/layout/theHeader/userMenu/userMenuOld/lib/config/dropMenu.ts +36 -0
  53. package/components/common/layout/theHeader/userMenu/userMenuOld/lib/models/types.ts +5 -0
  54. package/components/common/lib/config/states.ts +160 -160
  55. package/components/common/mainNavigationPanel/MainNavigationPanel.vue +142 -142
  56. package/components/common/mainNavigationPanel/MainNavigationPanelNew.vue +248 -248
  57. package/components/common/mainNavigationPanel/MainNavigationPanelOld.vue +288 -288
  58. package/components/common/readyToComplete/ReadyToComplete.vue +15 -15
  59. package/components/common/resource/progressBlock/ProgressBlock.vue +142 -142
  60. package/components/common/split/horizontal/Horizontal.vue +70 -70
  61. package/components/common/vm/actions/clone/Clone.vue +511 -511
  62. package/components/common/vm/actions/common/customizeHardware/CustomizeHardware.vue +273 -273
  63. package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardware.vue +697 -697
  64. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Cpu.vue +400 -400
  65. package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/Memory.vue +329 -329
  66. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/NewNetwork.vue +305 -305
  67. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/NewPciDevice.vue +168 -168
  68. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newUsbController/NewUsbController.vue +82 -82
  69. package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/Other.vue +32 -32
  70. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/VideoCard.vue +182 -182
  71. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/BootOptions.vue +114 -114
  72. package/components/common/vm/actions/common/customizeHardware/vmoptions/generalOptions/GeneralOptions.vue +192 -192
  73. package/components/common/vm/actions/common/customizeHardware/vmoptions/tools/Tools.vue +72 -72
  74. package/components/common/vm/actions/common/select/computeResource/ComputeResource.vue +164 -164
  75. package/components/common/vm/actions/common/select/name/Name.vue +235 -235
  76. package/components/common/vm/actions/common/select/storage/Storage.vue +198 -198
  77. package/components/common/vm/actions/editSettings/EditSettings.vue +316 -316
  78. package/components/common/weekSelect/lib/config/options.ts +10 -10
  79. package/components/common/wizards/datastore/add/Add.vue +436 -436
  80. package/components/common/wizards/datastore/add/lib/config/stepItems.ts +191 -191
  81. package/components/common/wizards/datastore/add/lib/models/interfaces.ts +38 -38
  82. package/components/common/wizards/datastore/add/lib/utils.ts +70 -70
  83. package/components/common/wizards/datastore/add/local/createName/CreateName.vue +160 -160
  84. package/components/common/wizards/datastore/add/nfs/Nfs.vue +112 -112
  85. package/components/common/wizards/datastore/add/nfs/accessibility/Accessibility.vue +104 -104
  86. package/components/common/wizards/datastore/add/nfs/accessibility/tablesView/lib/config/compatibleTable.ts +62 -62
  87. package/components/common/wizards/datastore/add/nfs/accessibility/tablesView/lib/config/hostsTableItems.ts +53 -53
  88. package/components/common/wizards/datastore/add/readyComplete/ReadyComplete.vue +86 -86
  89. package/components/common/wizards/datastore/add/readyComplete/lib/config/propertiesDetails.ts +184 -184
  90. package/components/common/wizards/datastore/add/sharedStorm/deviceSelection/DeviceSelection.vue +459 -459
  91. package/components/common/wizards/datastore/add/types/Types.vue +80 -80
  92. package/components/common/wizards/datastore/add/types/lib/config/typeOptions.ts +49 -49
  93. package/composables/useAppVersion.ts +22 -22
  94. package/composables/useEnvLanguage.ts +20 -20
  95. package/lib/utils/sendTask.ts +73 -73
  96. package/minify.js +146 -146
  97. package/package.json +2 -1
  98. package/plugins/spice-console/spice.console.ts +147 -147
  99. package/public/spice-console/application/codec.js +263 -263
  100. package/public/spice-console/lib/rasterEngine.js +907 -907
  101. package/public/spice-console/network/spicechannel.js +375 -375
  102. package/store/main/lib/interfaces.ts +9 -9
  103. package/store/tasks/actions.ts +133 -133
  104. package/store/tasks/getters.ts +25 -25
  105. package/store/tasks/lib/models/interfaces.ts +18 -18
  106. package/store/tasks/mutations.ts +58 -58
  107. package/store/tasks/state.ts +16 -16
  108. /package/components/{layout → common/layout}/theHeader/lib/models/enums.ts +0 -0
  109. /package/components/{layout → common/layout}/theHeader/lib/utils/localization.ts +0 -0
@@ -1,340 +1,340 @@
1
- @import 'mixins';
2
- * {
3
- box-sizing: border-box;
4
- }
5
- html:not(.is-new-view).dark-theme body {
6
- *:not(svg, path, rect, line, defs, g, clipPath) {
7
- color: #e9ecef;
8
- }
9
- .main-container {
10
- background: #1b2a32;
11
- }
12
- }
13
-
14
- * button:focus {
15
- outline: none;
16
- }
17
- body span,
18
- body p,
19
- body *,
20
- body {
21
- @include text();
22
- }
23
- h1,
24
- h2,
25
- h3,
26
- h4,
27
- h5,
28
- h6,
29
- body p {
30
- margin: 0;
31
- }
32
- html:not(.is-new-view) {
33
- h1,
34
- h2,
35
- h3,
36
- h4,
37
- h5,
38
- h6,
39
- body p {
40
- color: #565656;
41
- }
42
- }
43
-
44
- b {
45
- font-weight: bolder;
46
- }
47
- .font-weight-bold {
48
- font-weight: 700;
49
- }
50
-
51
- .flex {
52
- display: flex;
53
- }
54
- .inline-block {
55
- display: inline-block;
56
- }
57
- .table-row {
58
- display: table-row;
59
- }
60
- .table-cell {
61
- display: table-cell;
62
- }
63
-
64
- .flex-1 {
65
- flex: 1;
66
- }
67
-
68
- .flex-align-center {
69
- @include flex($align: center);
70
- }
71
- .flex-align-start {
72
- @include flex($align: flex-start);
73
- }
74
- .flex-space-between {
75
- @include flex($just: space-between);
76
- }
77
- .flex-justify-end {
78
- @include flex($just: flex-end);
79
- }
80
- .flex-justify-center {
81
- @include flex($just: center);
82
- }
83
- .flex-direction-column {
84
- @include flex($dir: column);
85
- }
86
-
87
- .z-index-1 {
88
- z-index: 1;
89
- }
90
- .z-index-10 {
91
- z-index: 10;
92
- }
93
- .z-index-100 {
94
- z-index: 100;
95
- }
96
- .z-index-1000 {
97
- z-index: 1000;
98
- }
99
- .z-index-10000 {
100
- z-index: 10000;
101
- }
102
- .z-index-100000 {
103
- z-index: 100000;
104
- }
105
- .z-index-1000000 {
106
- z-index: 1000000;
107
- }
108
-
109
- .relative {
110
- position: relative;
111
- }
112
- .absolute-center {
113
- position: absolute;
114
- top: 50%;
115
- left: 50%;
116
- transform: translateX(-50%) translateY(-50%);
117
- }
118
- .absolute-cover {
119
- position: absolute;
120
- top: 0;
121
- left: 0;
122
- right: 0;
123
- bottom: 0;
124
- }
125
-
126
- .text-ellipsis {
127
- text-overflow: ellipsis;
128
- white-space: nowrap;
129
- overflow: hidden;
130
- }
131
-
132
- .pre-line {
133
- white-space: pre-line;
134
- }
135
-
136
- .word-break-all {
137
- word-break: break-all;
138
- }
139
-
140
- .color-red {
141
- color: red;
142
- }
143
-
144
- .div-disabled {
145
- pointer-events: none;
146
- cursor: not-allowed;
147
- opacity: 0.6;
148
- }
149
-
150
- .pointer {
151
- cursor: pointer !important;
152
- }
153
-
154
- .default {
155
- cursor: default !important;
156
- }
157
-
158
- .text-decoration-none {
159
- text-decoration: none !important;
160
- }
161
- //
162
- //a.active,
163
- //a.router-link-active {
164
- // pointer-events: none;
165
- //}
166
-
167
- .no-selection {
168
- user-select: none;
169
- -webkit-user-select: none;
170
- -moz-user-select: none;
171
- -khtml-user-select: none;
172
- -ms-user-select: none;
173
- }
174
-
175
- .fill-parent {
176
- display: flex;
177
- height: 100%;
178
- width: 100%;
179
- overflow: visible;
180
- }
181
- .horizontal {
182
- flex-direction: row;
183
- }
184
- .vertical {
185
- flex-direction: column;
186
- }
187
- .gutter {
188
- background-color: #eee;
189
- transition-property: background-color;
190
- transition-delay: 0.25s;
191
- transition-duration: 0.25s;
192
- }
193
-
194
- .clr-icon {
195
- display: inline-block;
196
- margin: 0;
197
- height: 16px;
198
- width: 16px;
199
- vertical-align: middle;
200
- }
201
-
202
- .select {
203
- select {
204
- appearance: none;
205
- margin: 0;
206
- border: 0;
207
- border-radius: 0;
208
- box-shadow: none;
209
- background: 0 0;
210
- height: 1.2rem;
211
- color: #000;
212
- display: inline-block;
213
- min-width: 3rem;
214
- border-bottom: 1px solid #9a9a9a;
215
- background: linear-gradient(180deg, transparent 95%, #0095d3 0) no-repeat;
216
- background-size: 0 100%;
217
- transition: background-size 0.2s ease;
218
- position: relative;
219
- padding: 0 1.1rem 0 0.3rem;
220
- cursor: pointer;
221
- width: 100%;
222
- z-index: 2;
223
- }
224
-
225
- &:after {
226
- position: absolute;
227
- content: '';
228
- height: 0.5rem;
229
- width: 0.5rem;
230
- top: 0.3499998rem;
231
- right: 0.3rem;
232
- //top: 2px;
233
- //right: -16px;
234
- background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2012%2012%22%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3Cstyle%3E.cls-1%7Bfill%3A%239a9a9a%3B%7D%3C%2Fstyle%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Ctitle%3ECaret%3C%2Ftitle%3E%0A%20%20%20%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M6%2C9L1.2%2C4.2a0.68%2C0.68%2C0%2C0%2C1%2C1-1L6%2C7.08%2C9.84%2C3.24a0.68%2C0.68%2C0%2C1%2C1%2C1%2C1Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);
235
- background-repeat: no-repeat;
236
- background-size: contain;
237
- vertical-align: middle;
238
- margin: 0;
239
- }
240
- }
241
-
242
- .signpost-trigger {
243
- position: relative;
244
- overflow: unset;
245
- }
246
-
247
- .tooltip-content {
248
- position: absolute;
249
- top: calc(100% + 12px);
250
- left: 50%;
251
- background-color: var(--tooltip-content-bg-color);
252
- color: var(--tooltip-content-text-color) !important;
253
- border-radius: 3px;
254
- padding: 4px 6px;
255
- z-index: 9999;
256
- &.right {
257
- left: inherit;
258
- right: 50%;
259
- &::before {
260
- left: inherit;
261
- right: 0;
262
- border-left: 5px solid transparent;
263
- border-right: 5px solid var(--tooltip-content-bg-color);
264
- }
265
- }
266
-
267
- &::before {
268
- content: '';
269
- position: absolute;
270
- top: -8px;
271
- left: 0;
272
- border-left: 5px solid var(--tooltip-content-bg-color);
273
- border-bottom: 6px solid var(--tooltip-content-bg-color);
274
- border-top: 6px solid transparent;
275
- border-right: 5px solid transparent;
276
- }
277
- }
278
- .tooltip {
279
- .tooltip-content {
280
- &.tooltip-top-left {
281
- &.error {
282
- background-color: var(--tooltip-content-error-bg-color);
283
- color: white;
284
- &::before {
285
- border-left: 5px solid transparent;
286
- border-bottom: 6px solid transparent;
287
- border-top: 6px solid var(--tooltip-content-error-bg-color);
288
- border-right: 5px solid var(--tooltip-content-error-bg-color);
289
- }
290
- }
291
- }
292
- &.tooltip-top-right {
293
- &.error {
294
- }
295
- }
296
- }
297
- }
298
-
299
- li {
300
- list-style-type: none;
301
- &::marker {
302
- content: '';
303
- }
304
- }
305
-
306
- //.main-container:has(.notification-bar) {
307
- // height: calc(100vh - 36px);
308
- //}
309
- .dropdown-menu {
310
- &.position-right {
311
- left: auto;
312
- right: 0;
313
- min-width: 30ch;
314
- }
315
- }
316
- .description {
317
- color: var(--global-font-color) !important;
318
- }
319
-
320
- /* after refactoring */
321
-
322
- .related-objects {
323
- &__list {
324
- }
325
- &__item {
326
- display: grid;
327
- grid-template-columns: 1fr 1fr;
328
- }
329
- &__heading {
330
- color: var(--global-text-color3) !important;
331
- }
332
- &__link {
333
- cursor: pointer;
334
- color: var(--global-text-color2) !important;
335
- margin-left: 4px;
336
- }
337
- .footer {
338
- height: 30px;
339
- }
340
- }
1
+ @import 'mixins';
2
+ * {
3
+ box-sizing: border-box;
4
+ }
5
+ html:not(.is-new-view).dark-theme body {
6
+ *:not(svg, path, rect, line, defs, g, clipPath) {
7
+ color: #e9ecef;
8
+ }
9
+ .main-container {
10
+ background: #1b2a32;
11
+ }
12
+ }
13
+
14
+ * button:focus {
15
+ outline: none;
16
+ }
17
+ body span,
18
+ body p,
19
+ body *,
20
+ body {
21
+ @include text();
22
+ }
23
+ h1,
24
+ h2,
25
+ h3,
26
+ h4,
27
+ h5,
28
+ h6,
29
+ body p {
30
+ margin: 0;
31
+ }
32
+ html:not(.is-new-view) {
33
+ h1,
34
+ h2,
35
+ h3,
36
+ h4,
37
+ h5,
38
+ h6,
39
+ body p {
40
+ color: #565656;
41
+ }
42
+ }
43
+
44
+ b {
45
+ font-weight: bolder;
46
+ }
47
+ .font-weight-bold {
48
+ font-weight: 700;
49
+ }
50
+
51
+ .flex {
52
+ display: flex;
53
+ }
54
+ .inline-block {
55
+ display: inline-block;
56
+ }
57
+ .table-row {
58
+ display: table-row;
59
+ }
60
+ .table-cell {
61
+ display: table-cell;
62
+ }
63
+
64
+ .flex-1 {
65
+ flex: 1;
66
+ }
67
+
68
+ .flex-align-center {
69
+ @include flex($align: center);
70
+ }
71
+ .flex-align-start {
72
+ @include flex($align: flex-start);
73
+ }
74
+ .flex-space-between {
75
+ @include flex($just: space-between);
76
+ }
77
+ .flex-justify-end {
78
+ @include flex($just: flex-end);
79
+ }
80
+ .flex-justify-center {
81
+ @include flex($just: center);
82
+ }
83
+ .flex-direction-column {
84
+ @include flex($dir: column);
85
+ }
86
+
87
+ .z-index-1 {
88
+ z-index: 1;
89
+ }
90
+ .z-index-10 {
91
+ z-index: 10;
92
+ }
93
+ .z-index-100 {
94
+ z-index: 100;
95
+ }
96
+ .z-index-1000 {
97
+ z-index: 1000;
98
+ }
99
+ .z-index-10000 {
100
+ z-index: 10000;
101
+ }
102
+ .z-index-100000 {
103
+ z-index: 100000;
104
+ }
105
+ .z-index-1000000 {
106
+ z-index: 1000000;
107
+ }
108
+
109
+ .relative {
110
+ position: relative;
111
+ }
112
+ .absolute-center {
113
+ position: absolute;
114
+ top: 50%;
115
+ left: 50%;
116
+ transform: translateX(-50%) translateY(-50%);
117
+ }
118
+ .absolute-cover {
119
+ position: absolute;
120
+ top: 0;
121
+ left: 0;
122
+ right: 0;
123
+ bottom: 0;
124
+ }
125
+
126
+ .text-ellipsis {
127
+ text-overflow: ellipsis;
128
+ white-space: nowrap;
129
+ overflow: hidden;
130
+ }
131
+
132
+ .pre-line {
133
+ white-space: pre-line;
134
+ }
135
+
136
+ .word-break-all {
137
+ word-break: break-all;
138
+ }
139
+
140
+ .color-red {
141
+ color: red;
142
+ }
143
+
144
+ .div-disabled {
145
+ pointer-events: none;
146
+ cursor: not-allowed;
147
+ opacity: 0.6;
148
+ }
149
+
150
+ .pointer {
151
+ cursor: pointer !important;
152
+ }
153
+
154
+ .default {
155
+ cursor: default !important;
156
+ }
157
+
158
+ .text-decoration-none {
159
+ text-decoration: none !important;
160
+ }
161
+ //
162
+ //a.active,
163
+ //a.router-link-active {
164
+ // pointer-events: none;
165
+ //}
166
+
167
+ .no-selection {
168
+ user-select: none;
169
+ -webkit-user-select: none;
170
+ -moz-user-select: none;
171
+ -khtml-user-select: none;
172
+ -ms-user-select: none;
173
+ }
174
+
175
+ .fill-parent {
176
+ display: flex;
177
+ height: 100%;
178
+ width: 100%;
179
+ overflow: visible;
180
+ }
181
+ .horizontal {
182
+ flex-direction: row;
183
+ }
184
+ .vertical {
185
+ flex-direction: column;
186
+ }
187
+ .gutter {
188
+ background-color: #eee;
189
+ transition-property: background-color;
190
+ transition-delay: 0.25s;
191
+ transition-duration: 0.25s;
192
+ }
193
+
194
+ .clr-icon {
195
+ display: inline-block;
196
+ margin: 0;
197
+ height: 16px;
198
+ width: 16px;
199
+ vertical-align: middle;
200
+ }
201
+
202
+ .select {
203
+ select {
204
+ appearance: none;
205
+ margin: 0;
206
+ border: 0;
207
+ border-radius: 0;
208
+ box-shadow: none;
209
+ background: 0 0;
210
+ height: 1.2rem;
211
+ color: #000;
212
+ display: inline-block;
213
+ min-width: 3rem;
214
+ border-bottom: 1px solid #9a9a9a;
215
+ background: linear-gradient(180deg, transparent 95%, #0095d3 0) no-repeat;
216
+ background-size: 0 100%;
217
+ transition: background-size 0.2s ease;
218
+ position: relative;
219
+ padding: 0 1.1rem 0 0.3rem;
220
+ cursor: pointer;
221
+ width: 100%;
222
+ z-index: 2;
223
+ }
224
+
225
+ &:after {
226
+ position: absolute;
227
+ content: '';
228
+ height: 0.5rem;
229
+ width: 0.5rem;
230
+ top: 0.3499998rem;
231
+ right: 0.3rem;
232
+ //top: 2px;
233
+ //right: -16px;
234
+ background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2012%2012%22%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3Cstyle%3E.cls-1%7Bfill%3A%239a9a9a%3B%7D%3C%2Fstyle%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Ctitle%3ECaret%3C%2Ftitle%3E%0A%20%20%20%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M6%2C9L1.2%2C4.2a0.68%2C0.68%2C0%2C0%2C1%2C1-1L6%2C7.08%2C9.84%2C3.24a0.68%2C0.68%2C0%2C1%2C1%2C1%2C1Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);
235
+ background-repeat: no-repeat;
236
+ background-size: contain;
237
+ vertical-align: middle;
238
+ margin: 0;
239
+ }
240
+ }
241
+
242
+ .signpost-trigger {
243
+ position: relative;
244
+ overflow: unset;
245
+ }
246
+
247
+ .tooltip-content {
248
+ position: absolute;
249
+ top: calc(100% + 12px);
250
+ left: 50%;
251
+ background-color: var(--tooltip-content-bg-color);
252
+ color: var(--tooltip-content-text-color) !important;
253
+ border-radius: 3px;
254
+ padding: 4px 6px;
255
+ z-index: 9999;
256
+ &.right {
257
+ left: inherit;
258
+ right: 50%;
259
+ &::before {
260
+ left: inherit;
261
+ right: 0;
262
+ border-left: 5px solid transparent;
263
+ border-right: 5px solid var(--tooltip-content-bg-color);
264
+ }
265
+ }
266
+
267
+ &::before {
268
+ content: '';
269
+ position: absolute;
270
+ top: -8px;
271
+ left: 0;
272
+ border-left: 5px solid var(--tooltip-content-bg-color);
273
+ border-bottom: 6px solid var(--tooltip-content-bg-color);
274
+ border-top: 6px solid transparent;
275
+ border-right: 5px solid transparent;
276
+ }
277
+ }
278
+ .tooltip {
279
+ .tooltip-content {
280
+ &.tooltip-top-left {
281
+ &.error {
282
+ background-color: var(--tooltip-content-error-bg-color);
283
+ color: white;
284
+ &::before {
285
+ border-left: 5px solid transparent;
286
+ border-bottom: 6px solid transparent;
287
+ border-top: 6px solid var(--tooltip-content-error-bg-color);
288
+ border-right: 5px solid var(--tooltip-content-error-bg-color);
289
+ }
290
+ }
291
+ }
292
+ &.tooltip-top-right {
293
+ &.error {
294
+ }
295
+ }
296
+ }
297
+ }
298
+
299
+ li {
300
+ list-style-type: none;
301
+ &::marker {
302
+ content: '';
303
+ }
304
+ }
305
+
306
+ //.main-container:has(.notification-bar) {
307
+ // height: calc(100vh - 36px);
308
+ //}
309
+ .dropdown-menu {
310
+ &.position-right {
311
+ left: auto;
312
+ right: 0;
313
+ min-width: 30ch;
314
+ }
315
+ }
316
+ .description {
317
+ color: var(--global-font-color) !important;
318
+ }
319
+
320
+ /* after refactoring */
321
+
322
+ .related-objects {
323
+ &__list {
324
+ }
325
+ &__item {
326
+ display: grid;
327
+ grid-template-columns: 1fr 1fr;
328
+ }
329
+ &__heading {
330
+ color: var(--global-text-color3) !important;
331
+ }
332
+ &__link {
333
+ cursor: pointer;
334
+ color: var(--global-text-color2) !important;
335
+ margin-left: 4px;
336
+ }
337
+ .footer {
338
+ height: 30px;
339
+ }
340
+ }