- menu
+ menuTitle
diff --git a/demos/typography.html b/demos/typography.html
index 17d2e20e3f8..98e7e0dcace 100644
--- a/demos/typography.html
+++ b/demos/typography.html
@@ -37,7 +37,7 @@
-
+ Typography
diff --git a/packages/mdc-toolbar/README.md b/packages/mdc-toolbar/README.md
index b34f50add0a..f084353b3fc 100644
--- a/packages/mdc-toolbar/README.md
+++ b/packages/mdc-toolbar/README.md
@@ -58,7 +58,7 @@ Wrap the items with `mdc-toolbar` class in the following way:
@@ -140,7 +140,7 @@ a page's title, or an application name.
#### Toolbar Icons
Icons can be added as anchor tags, `span`s, or `button`s to `mdc-toolbar`. There are two types of icons,
-`mdc-toolbar__icon--menu` represents the left most icon in `mdc-toolbar` usually to the left of `mdc-toolbar__title`.
+`mdc-toolbar__menu-icon` represents the left most icon in `mdc-toolbar` usually to the left of `mdc-toolbar__title`.
`mdc-toolbar__icon` represents any icons placed on the right side of an `mdc-toolbar`.
### Fixed toolbars
diff --git a/packages/mdc-toolbar/_mixins.scss b/packages/mdc-toolbar/_mixins.scss
index f7d2507fed5..3de0d31e695 100644
--- a/packages/mdc-toolbar/_mixins.scss
+++ b/packages/mdc-toolbar/_mixins.scss
@@ -18,7 +18,7 @@
/**
* Applies styles to the different types of icons that can exist in toolbars.
- * Both .mdc-toolbar__icon and .mdc-toolbar__icon--menu share all styles except for
+ * Both .mdc-toolbar__icon and .mdc-toolbar__menu-icon share all styles except for
* horizontal padding.
*/
@mixin mdc-shared-icon-style() {
diff --git a/packages/mdc-toolbar/mdc-toolbar.scss b/packages/mdc-toolbar/mdc-toolbar.scss
index 7bff6de320e..7ffccc5e267 100644
--- a/packages/mdc-toolbar/mdc-toolbar.scss
+++ b/packages/mdc-toolbar/mdc-toolbar.scss
@@ -98,7 +98,7 @@
@include mdc-rtl-reflexive-property(padding, $mdc-toolbar-element-horizontal-padding-desktop / 2, $mdc-toolbar-element-horizontal-padding-desktop);
}
- &__icon--menu {
+ &__menu-icon {
@include mdc-shared-icon-style;
@include mdc-theme-prop(color, text-primary-on-primary);
@@ -108,7 +108,7 @@
}
}
-.mdc-toolbar__icon--menu + .mdc-toolbar__title {
+.mdc-toolbar__menu-icon + .mdc-toolbar__title {
@include mdc-rtl-reflexive-box(margin, left, $mdc-toolbar-title-margin-to-menu-icon-desktop);
}
@@ -126,12 +126,12 @@
@include mdc-rtl-reflexive-property(padding, $mdc-toolbar-element-horizontal-padding-mobile / 2, $mdc-toolbar-element-horizontal-padding-mobile);
}
- .mdc-toolbar__icon--menu {
+ .mdc-toolbar__menu-icon {
padding-right: $mdc-toolbar-element-horizontal-padding-mobile;
padding-left: $mdc-toolbar-element-horizontal-padding-mobile;
}
- .mdc-toolbar__icon--menu + .mdc-toolbar__title {
+ .mdc-toolbar__menu-icon + .mdc-toolbar__title {
@include mdc-rtl-reflexive-box(margin, left, $mdc-toolbar-title-margin-to-menu-icon-mobile);
}
}