diff --git a/core/api.txt b/core/api.txt
index 40ace86872..24d0d6de69 100644
--- a/core/api.txt
+++ b/core/api.txt
@@ -950,12 +950,10 @@ ion-select,event,ionBlur,void,true
ion-select,event,ionCancel,void,true
ion-select,event,ionChange,SelectInputChangeEvent,true
ion-select,event,ionFocus,void,true
-ion-select,css-prop,--icon-color
ion-select,css-prop,--padding-bottom
ion-select,css-prop,--padding-end
ion-select,css-prop,--padding-start
ion-select,css-prop,--padding-top
-ion-select,css-prop,--placeholder-color
ion-skeleton-text
ion-skeleton-text,prop,width,string,'100%',false
diff --git a/core/src/components/buttons/buttons.ios.scss b/core/src/components/buttons/buttons.ios.scss
index 13d779b27c..6406bb7f66 100644
--- a/core/src/components/buttons/buttons.ios.scss
+++ b/core/src/components/buttons/buttons.ios.scss
@@ -94,25 +94,3 @@
// }
// }
-// iOS Toolbar Button Placement
-// --------------------------------------------------
-
-:host([slot="start"]) {
- order: map-get($toolbar-order-ios, buttons-start);
-}
-
-:host([slot="secondary"]) {
- order: map-get($toolbar-order-ios, buttons-secondary);
-}
-
-:host([slot="primary"]) {
- order: map-get($toolbar-order-ios, buttons-primary);
-
- text-align: end;
-}
-
-:host([slot="end"]) {
- order: map-get($toolbar-order-ios, buttons-end);
-
- text-align: end;
-}
diff --git a/core/src/components/buttons/buttons.ios.vars.scss b/core/src/components/buttons/buttons.ios.vars.scss
index 7d46cb7ba8..e9784ca32b 100644
--- a/core/src/components/buttons/buttons.ios.vars.scss
+++ b/core/src/components/buttons/buttons.ios.vars.scss
@@ -1,40 +1,5 @@
@import "../../themes/ionic.globals.ios";
+@import "../toolbar/toolbar.ios.vars";
-// iOS Toolbar
+// iOS Buttons
// --------------------------------------------------
-
-/// @prop - Order of the toolbar elements
-$toolbar-order-ios: (
- back-button: 0,
- menu-toggle-start: 1,
- buttons-start: 2,
- buttons-secondary: 3,
- content: 4,
- buttons-primary: 5,
- buttons-end: 6,
- menu-toggle-end: 7,
-);
-
-/// @prop - Font size of the toolbar button
-$toolbar-ios-button-font-size: 17px !default;
-
-/// @prop - Text color of the toolbar button
-$toolbar-ios-button-color: ion-color(primary, base) !default;
-
-/// @prop - Background color of the toolbar button
-$toolbar-ios-button-background-color: $toolbar-ios-background !default;
-
-/// @prop - Background color of the toolbar button when activated
-$toolbar-ios-button-background-color-activated: $toolbar-ios-color-activated !default;
-
-/// @prop - Border radius of the toolbar button
-$toolbar-ios-button-border-radius: 4px !default;
-
-/// @prop - Font weight of the strong toolbar button
-$toolbar-ios-button-strong-font-weight: 600 !default;
-
-/// @prop - Fill color of the toolbar button icon
-$toolbar-ios-button-icon-fill-color: currentColor !default;
-
-/// @prop - Filter of the translucent toolbar
-$toolbar-ios-translucent-filter: saturate(180%) blur(20px) !default;
diff --git a/core/src/components/buttons/buttons.md.scss b/core/src/components/buttons/buttons.md.scss
index 42196c951c..f849c91959 100644
--- a/core/src/components/buttons/buttons.md.scss
+++ b/core/src/components/buttons/buttons.md.scss
@@ -87,27 +87,3 @@
font-size: 1.8em;
}
-
-
-// Material Design Toolbar Button Placement
-// --------------------------------------------------
-
-:host([slot="start"]) {
- order: map-get($toolbar-order-md, buttons-start);
-}
-
-:host([slot="secondary"]) {
- order: map-get($toolbar-order-md, buttons-secondary);
-}
-
-:host([slot="primary"]) {
- order: map-get($toolbar-order-md, buttons-primary);
-
- text-align: end;
-}
-
-:host([slot="end"]) {
- order: map-get($toolbar-order-md, buttons-end);
-
- text-align: end;
-}
diff --git a/core/src/components/buttons/buttons.md.vars.scss b/core/src/components/buttons/buttons.md.vars.scss
index 88d56d9722..55cba8ec54 100644
--- a/core/src/components/buttons/buttons.md.vars.scss
+++ b/core/src/components/buttons/buttons.md.vars.scss
@@ -1,37 +1,5 @@
@import "../../themes/ionic.globals.md";
+@import "../toolbar/toolbar.md.vars";
-// Material Design Toolbar
+// Material Design Buttons
// --------------------------------------------------
-
-/// @prop - Order of the toolbar elements
-$toolbar-order-md: (
- back-button: 0,
- menu-toggle-start: 1,
- buttons-start: 2,
- content: 3,
- buttons-secondary: 4,
- buttons-primary: 5,
- buttons-end: 6,
- menu-toggle-end: 7,
-);
-
-/// @prop - Font size of the toolbar button
-$toolbar-md-button-font-size: 14px !default;
-
-/// @prop - Text color of the toolbar button
-$toolbar-md-button-color: $toolbar-md-color !default;
-
-/// @prop - Background color of the toolbar button
-$toolbar-md-button-background-color: $toolbar-md-background !default;
-
-/// @prop - Background color of the toolbar button when activated
-$toolbar-md-button-background-color-activated: $toolbar-md-color-activated !default;
-
-/// @prop - Border radius of the toolbar button
-$toolbar-md-button-border-radius: 2px !default;
-
-/// @prop - Fill color of the toolbar button icon
-$toolbar-md-button-icon-fill-color: currentColor !default;
-
-/// @prop - Font weight of the strong toolbar button
-$toolbar-md-button-strong-font-weight: bold !default;
diff --git a/core/src/components/segment/test/bug/index.html b/core/src/components/segment/test/bug/index.html
deleted file mode 100644
index aed8379cfb..0000000000
--- a/core/src/components/segment/test/bug/index.html
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
- All
-
-
-
-
- Favorites
-
-
-
diff --git a/core/src/components/select/readme.md b/core/src/components/select/readme.md
index 21fc5ce7dc..1c40a863de 100644
--- a/core/src/components/select/readme.md
+++ b/core/src/components/select/readme.md
@@ -366,14 +366,12 @@ Type: `Promise
Select - Custom Interface Options
-
+
Alert
Bacon
@@ -83,7 +83,7 @@
-
+
Action Sheet
Red
diff --git a/core/src/components/select/test/standalone/index.html b/core/src/components/select/test/standalone/index.html
index 3b80b9182d..6f3cd36844 100644
--- a/core/src/components/select/test/standalone/index.html
+++ b/core/src/components/select/test/standalone/index.html
@@ -73,9 +73,7 @@