Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

Commit

Permalink
Merge branch 'master' into fix/text-field/char-counter-value
Browse files Browse the repository at this point in the history
  • Loading branch information
williamernest authored May 3, 2019
2 parents 2d12096 + 5a52847 commit ce53e41
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 23 deletions.
46 changes: 30 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"colors": "^1.3.0",
"conventional-changelog-angular": "^5.0.2",
"conventional-commits-parser": "^3.0.0",
"cp-file": "^6.0.0",
"cp-file": "^7.0.0",
"cross-env": "^5.0.0",
"css-loader": "^2.0.0",
"cssom": "^0.3.2",
Expand Down
6 changes: 6 additions & 0 deletions packages/mdc-checkbox/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,15 @@ export const cssClasses = {
ANIM_INDETERMINATE_UNCHECKED: 'mdc-checkbox--anim-indeterminate-unchecked',
ANIM_UNCHECKED_CHECKED: 'mdc-checkbox--anim-unchecked-checked',
ANIM_UNCHECKED_INDETERMINATE: 'mdc-checkbox--anim-unchecked-indeterminate',
BACKGROUND: 'mdc-checkbox__background',
CHECKED: 'mdc-checkbox--checked',
CHECKMARK: 'mdc-checkbox__checkmark',
CHECKMARK_PATH: 'mdc-checkbox__checkmark-path',
DISABLED: 'mdc-checkbox--disabled',
INDETERMINATE: 'mdc-checkbox--indeterminate',
MIXEDMARK: 'mdc-checkbox__mixedmark',
NATIVE_CONTROL: 'mdc-checkbox__native-control',
ROOT: 'mdc-checkbox',
SELECTED: 'mdc-checkbox--selected',
UPGRADED: 'mdc-checkbox--upgraded',
};
Expand Down
4 changes: 2 additions & 2 deletions packages/mdc-tab-indicator/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@

@mixin mdc-tab-indicator-underline-color($color) {
.mdc-tab-indicator__content--underline {
@include mdc-theme-prop(background-color, $color);
@include mdc-theme-prop(border-color, $color);
}
}

@mixin mdc-tab-indicator-underline-height($height) {
.mdc-tab-indicator__content--underline {
height: $height;
border-top-width: $height;
}
}

Expand Down
2 changes: 2 additions & 0 deletions packages/mdc-tab-indicator/mdc-tab-indicator.scss
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@

.mdc-tab-indicator__content--underline {
align-self: flex-end;
box-sizing: border-box;
width: 100%;
border-top-style: solid;
}

.mdc-tab-indicator__content--icon {
Expand Down
8 changes: 4 additions & 4 deletions packages/mdc-top-app-bar/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@
}
}

//
// Private
//

@mixin mdc-top-app-bar-mobile-breakpoint_($mobile-breakpoint: $mdc-top-app-bar-mobile-breakpoint) {
@media (max-width: $mobile-breakpoint) {
.mdc-top-app-bar__row {
Expand Down Expand Up @@ -104,10 +108,6 @@
}
}

//
// Private
//

// Applies styles to the different types of icons that can exist in top-app-bars.
// Both .mdc-top-app-bar__icon and .mdc-top-app-bar__navigation-icon share all styles except for
// horizontal padding.
Expand Down

0 comments on commit ce53e41

Please sign in to comment.