bfg-common 1.4.726 → 1.4.727
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="error-info">
|
|
3
3
|
<ui-icon
|
|
4
|
-
:id="`
|
|
4
|
+
:id="`task-error-info-icon-${props.id}`"
|
|
5
5
|
name="info"
|
|
6
6
|
width="16px"
|
|
7
7
|
height="16px"
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
width="232px"
|
|
14
14
|
top
|
|
15
15
|
left
|
|
16
|
-
:elem-id="`
|
|
16
|
+
:elem-id="`task-error-info-icon-${props.id}`"
|
|
17
17
|
>
|
|
18
18
|
<div class="common-widget-info">
|
|
19
19
|
<div class="headline justify-between flex-align-center">
|
|
@@ -127,12 +127,13 @@ const onSelectNodeOfTree = (data: any): void => {
|
|
|
127
127
|
line-height: 14.52px;
|
|
128
128
|
}
|
|
129
129
|
.expand-details {
|
|
130
|
+
display: grid;
|
|
131
|
+
grid-template-columns: auto 1fr;
|
|
132
|
+
column-gap: 24px;
|
|
133
|
+
row-gap: 8px;
|
|
130
134
|
&__row {
|
|
131
|
-
display:
|
|
132
|
-
grid-template-columns: 110px 1fr;
|
|
135
|
+
display: contents;
|
|
133
136
|
height: 18px;
|
|
134
|
-
column-gap: 12px;
|
|
135
|
-
margin-bottom: 8px;
|
|
136
137
|
}
|
|
137
138
|
&__label {
|
|
138
139
|
@extend %properties;
|