Skip to content

Commit 88a328b

Browse files
authored
chore: Fix Angular Material style naming (#5425)
Fixes some missing renaming from #5421
1 parent dadc114 commit 88a328b

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

tensorboard/plugins/debugger_v2/tf_debugger_v2_plugin/views/common/BUILD

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ licenses(["notice"])
66

77
tf_sass_library(
88
name = "style_lib",
9-
srcs = [
10-
"_lib.scss",
11-
"//tensorboard/webapp:angular_material_theming",
12-
],
9+
srcs = ["_lib.scss"],
10+
deps = ["//tensorboard/webapp:angular_material_theming"],
1311
)

tensorboard/webapp/tbdev_upload/tbdev_upload_dialog_component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ p {
5353
padding: 2px 12px;
5454

5555
@include tb-dark-theme {
56-
background-color: mat.get-color-from-palette($mat-grey, 700);
56+
background-color: mat.get-color-from-palette(mat.$grey-palette, 700);
5757
}
5858
}
5959

tensorboard/webapp/theme/_tb_theme.template.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ limitations under the License.
2424
// Angular Material theme definition.
2525

2626
// Include non-theme styles for core.
27-
@include mat-core();
27+
@include mat.core();
2828

2929
// Value for `app-bar` property in $tb-background. Can specify an override in
3030
// _variable.scss to specifically customize this value.

0 commit comments

Comments
 (0)