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

Commit

Permalink
WIP Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenneth G. Franqueiro committed Oct 29, 2018
1 parent f3c4fca commit b3ca1ec
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/mdc-floating-label/mdc-floating-label.scss
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
transition:
transform $mdc-floating-label-transition-duration $mdc-animation-standard-curve-timing-function,
color $mdc-floating-label-transition-duration $mdc-animation-standard-curve-timing-function;

/* @alternate */
line-height: 1.15rem;
text-align: left;
Expand Down
1 change: 1 addition & 0 deletions packages/mdc-typography/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
@mixin mdc-typography-baseline-top($distance) {
display: block;
margin-top: 0;

/* @alternate */
line-height: normal;

Expand Down
4 changes: 2 additions & 2 deletions test/unit/mdc-select/mdc-select-enhanced.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1219,7 +1219,7 @@ test('#destroy destroys the helper text if it exists', () => {
document.body.removeChild(container);
});

test(`MutationObserver adds ${cssClasses.REQUIRED} class to the parent when aria-required attribute is added`, (done) => {
test(`MutationObserver adds ${cssClasses.REQUIRED} class to parent when aria-required attr is added`, (done) => {
const hasLabel = true;
const hasOutline = false;
const hasHelperText = false;
Expand All @@ -1235,7 +1235,7 @@ test(`MutationObserver adds ${cssClasses.REQUIRED} class to the parent when aria
}, 0);
});

test(`MutationObserver removes ${cssClasses.REQUIRED} class from the parent when aria-required attribute is removed`, (done) => {
test(`MutationObserver removes ${cssClasses.REQUIRED} class from parent when aria-required attr is removed`, (done) => {
const hasLabel = true;
const hasOutline = false;
const hasHelperText = false;
Expand Down

0 comments on commit b3ca1ec

Please sign in to comment.