mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
- splits the item min height by mode - removes padding end from the slotted end components in favor of using 16px on the item - updates the icon color to lighter gray (rgb) - removes font size change from text wrapped labels - add list spec test to include MD examples fixes #14799
21 lines
510 B
SCSS
21 lines
510 B
SCSS
@import "./select";
|
|
@import "./select.md.vars";
|
|
|
|
// Material Design Select
|
|
// --------------------------------------------------
|
|
|
|
:host {
|
|
--color: #{$select-md-text-color};
|
|
--icon-color: #{$select-md-icon-color};
|
|
--padding-top: #{$select-md-padding-top};
|
|
--padding-end: #{$select-md-padding-end};
|
|
--padding-bottom: #{$select-md-padding-bottom};
|
|
--padding-start: #{$select-md-padding-start};
|
|
--placeholder-color: #{$select-md-placeholder-color};
|
|
}
|
|
|
|
.select-icon {
|
|
width: 19px;
|
|
height: 19px;
|
|
}
|