Skip to content

Commit dbbe11b

Browse files
authored
Material 2 migration fixes 2 the fixening (#6999)
## Motivation for features / changes When I authored #6998 I replaced all the existing comments with aliases then updated the sync rules. What I missed was that there were a few places where there SHOULD have been comments before but weren't. This adds the correct aliases. Googlers see cl/762084033 for an example of a fixed sync
1 parent 403ba2a commit dbbe11b

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

tensorboard/webapp/theme/_tb_theme.template.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ $tb-foreground: map_merge(
6161
)
6262
);
6363
$tb-background: map_merge(
64-
matm2.$light-theme-background-palette,
64+
matm2var.$light-theme-background-palette,
6565
(
6666
app-bar: $tb-app-bar-color,
6767
// Default is `map.get($grey-palette, 50)`.

tensorboard/webapp/widgets/data_table/column_selector_component.scss

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,16 @@ limitations under the License.
8282
width: 100%;
8383

8484
&.selected {
85-
background-color: matm2.get-color-from-palette(mat.$grey-palette, 200);
85+
background-color: matm2.get-color-from-palette(
86+
matm2var.$grey-palette,
87+
200
88+
);
8689

8790
@include tb-dark-theme {
88-
background-color: matm2.get-color-from-palette(mat.$grey-palette, 400);
91+
background-color: matm2.get-color-from-palette(
92+
matm2var.$grey-palette,
93+
400
94+
);
8995
}
9096
}
9197
}

0 commit comments

Comments
 (0)