Skip to content

Commit e86c845

Browse files
authored
fix(styles): tune hover for tables (#1710)
1 parent 97c66b8 commit e86c845

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/components/PaginatedTable/PaginatedTable.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
--paginated-table-cell-horizontal-padding: 10px;
88

99
--paginated-table-border-color: var(--g-color-base-generic-hover);
10-
--paginated-table-hover-color: var(--g-color-base-float);
10+
--paginated-table-hover-color: var(--g-color-base-simple-hover-solid);
1111

1212
width: 100%;
1313
@include mixins.body-2-typography();

src/containers/App/App.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ body,
3737
}
3838

3939
.g-root {
40-
--ydb-data-table-color-hover: var(--g-color-base-float);
40+
--ydb-data-table-color-hover: var(--g-color-base-simple-hover-solid);
4141

4242
// Colors for tablets, status icons and progress bars
4343
--ydb-color-status-grey: var(--g-color-base-neutral-heavy);

src/containers/Tablet/components/TabletStorageInfo/TabletStorageInfo.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
border-collapse: collapse;
99
tr {
1010
&:hover {
11-
background-color: var(--g-color-base-generic-hover) !important;
11+
background-color: var(--g-color-base-simple-hover-solid) !important;
1212
}
1313
}
1414
tr:nth-of-type(2n + 1) {

src/containers/Tenant/Query/QueryResult/components/SimplifiedPlan/SimplifiedPlan.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
border-collapse: collapse;
1616
tr {
1717
&:hover {
18-
background-color: var(--g-color-base-generic-hover) !important;
18+
background-color: var(--g-color-base-simple-hover) !important;
1919
}
2020
}
2121
tr:nth-of-type(2n + 1) {

0 commit comments

Comments
 (0)