bfg-common 1.5.768 → 1.5.769
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.
|
@@ -1337,21 +1337,33 @@ onUnmounted(() => {
|
|
|
1337
1337
|
border-bottom: 1px solid var(--global-border-color);
|
|
1338
1338
|
|
|
1339
1339
|
&.datagrid-selected {
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1340
|
+
color: var(--table-active-color);
|
|
1341
|
+
//& :deep(*) {
|
|
1342
|
+
// color: var(--table-active-color);
|
|
1343
|
+
//}
|
|
1343
1344
|
|
|
1344
1345
|
.datagrid-cell {
|
|
1345
1346
|
background-color: var(--row-selected-bg-color);
|
|
1346
1347
|
border-bottom: 1px solid var(--global-border-color);
|
|
1347
1348
|
position: relative;
|
|
1348
1349
|
line-height: 1rem;
|
|
1350
|
+
|
|
1351
|
+
.datagrid-expandable-caret-button {
|
|
1352
|
+
.datagrid-expandable-caret-icon {
|
|
1353
|
+
fill: #ffffff;
|
|
1354
|
+
}
|
|
1355
|
+
}
|
|
1349
1356
|
}
|
|
1350
1357
|
|
|
1351
1358
|
.datagrid-row-detail {
|
|
1352
1359
|
background-color: var(--row-selected-bg-color);
|
|
1353
1360
|
border-bottom: 1px solid var(--global-border-color);
|
|
1354
1361
|
}
|
|
1362
|
+
.datagrid-row:not(.datagrid-selected) {
|
|
1363
|
+
.datagrid-cell {
|
|
1364
|
+
background-color: unset;
|
|
1365
|
+
}
|
|
1366
|
+
}
|
|
1355
1367
|
}
|
|
1356
1368
|
|
|
1357
1369
|
.datagrid-cell {
|
|
@@ -1560,9 +1572,12 @@ onUnmounted(() => {
|
|
|
1560
1572
|
.datagrid-fixed-column {
|
|
1561
1573
|
background-color: var(--table-hover-row-background-color);
|
|
1562
1574
|
}
|
|
1563
|
-
.datagrid-cell {
|
|
1575
|
+
& .datagrid-row-sticky .datagrid-cell {
|
|
1564
1576
|
background-color: var(--table-hover-row-background-color);
|
|
1565
1577
|
}
|
|
1578
|
+
//.datagrid-cell {
|
|
1579
|
+
// background-color: var(--table-hover-row-background-color);
|
|
1580
|
+
//}
|
|
1566
1581
|
}
|
|
1567
1582
|
}
|
|
1568
1583
|
}
|
package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/HistoryRun.vue
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<atoms-table-data-grid
|
|
3
|
+
:selected-row="null"
|
|
3
4
|
:page-size="1"
|
|
4
5
|
:page="1"
|
|
5
6
|
:head-items="headItems"
|
|
@@ -7,8 +8,8 @@
|
|
|
7
8
|
:total-items="props.totalItems"
|
|
8
9
|
:total-pages="props.totalPages"
|
|
9
10
|
:loading="false"
|
|
10
|
-
test-id="
|
|
11
|
-
class="
|
|
11
|
+
test-id="scheduled-tasks-history-runs-table"
|
|
12
|
+
class="history-runs-table"
|
|
12
13
|
off-select-by-row
|
|
13
14
|
hide-footer
|
|
14
15
|
>
|
|
@@ -47,7 +48,7 @@ const bodyItems = computed<UI_I_BodyItem[][]>(() => {
|
|
|
47
48
|
</script>
|
|
48
49
|
|
|
49
50
|
<style lang="scss" scoped>
|
|
50
|
-
.
|
|
51
|
+
.history-runs-table {
|
|
51
52
|
height: inherit;
|
|
52
53
|
:deep(.datagrid-outer-wrapper) {
|
|
53
54
|
height: inherit;
|