We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7d2eed commit fe465ffCopy full SHA for fe465ff
src/components/EntityStatus/EntityStatus.scss
@@ -68,13 +68,17 @@
68
&_visible {
69
width: min-content;
70
padding: var(--g-spacing-1);
71
+
72
+ background-color: var(--g-color-base-background);
73
}
74
75
.data-table__row:hover &,
76
.ydb-paginated-table__row:hover &,
77
.ydb-tree-view__item & {
78
79
80
81
+ background-color: var(--ydb-data-table-color-hover);
82
83
84
src/components/EntityStatus/EntityStatus.tsx
@@ -40,6 +40,7 @@ function defaultRenderName(name?: string) {
40
return name ?? '';
41
42
43
+// eslint-disable-next-line complexity
44
export function EntityStatus({
45
status = EFlag.Grey,
46
name = '',
0 commit comments