Skip to content

Commit

Permalink
Merge branch 'master' into feat/button-support-icon
Browse files Browse the repository at this point in the history
  • Loading branch information
yeelan0319 authored Sep 14, 2017
2 parents 650ea93 + be502c8 commit 2c85a4f
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 14 deletions.
12 changes: 6 additions & 6 deletions demos/snackbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
aria-hidden="true">
<div class="mdc-snackbar__text">Message sent</div>
<div class="mdc-snackbar__action-wrapper">
<button type="button" class="mdc-button mdc-snackbar__action-button">Undo</button>
<button type="button" class="mdc-snackbar__action-button">Undo</button>
</div>
</div>
</section>
Expand Down Expand Up @@ -130,7 +130,7 @@ <h2 class="mdc-typography--title">Basic Example</h2>
</div>
<br/>

<button type="button" class="mdc-button mdc-button--raised mdc-button--primary" id="toggle-dark-theme">Toggle Dark Theme</button>
<button type="button" class="mdc-button mdc-button--raised" id="toggle-dark-theme">Toggle Dark Theme</button>
<br/>

<div class="mdc-textfield">
Expand All @@ -157,7 +157,7 @@ <h2 class="mdc-typography--title">Basic Example</h2>
aria-hidden="true">
<div class="mdc-snackbar__text"></div>
<div class="mdc-snackbar__action-wrapper">
<button type="button" class="mdc-button mdc-snackbar__action-button"></button>
<button type="button" class="mdc-snackbar__action-button"></button>
</div>
</div>
<div dir="rtl">
Expand All @@ -168,7 +168,7 @@ <h2 class="mdc-typography--title">Basic Example</h2>
aria-hidden="true">
<div class="mdc-snackbar__text"></div>
<div class="mdc-snackbar__action-wrapper">
<button type="button" class="mdc-button mdc-snackbar__action-button"></button>
<button type="button" class="mdc-snackbar__action-button"></button>
</div>
</div>
</div>
Expand All @@ -179,7 +179,7 @@ <h2 class="mdc-typography--title">Basic Example</h2>
aria-hidden="true">
<div class="mdc-snackbar__text"></div>
<div class="mdc-snackbar__action-wrapper">
<button type="button" class="mdc-button mdc-snackbar__action-button"></button>
<button type="button" class="mdc-snackbar__action-button"></button>
</div>
</div>
<div dir="rtl">
Expand All @@ -190,7 +190,7 @@ <h2 class="mdc-typography--title">Basic Example</h2>
aria-hidden="true">
<div class="mdc-snackbar__text"></div>
<div class="mdc-snackbar__action-wrapper">
<button type="button" class="mdc-button mdc-snackbar__action-button"></button>
<button type="button" class="mdc-snackbar__action-button"></button>
</div>
</div>
</div>
Expand Down
6 changes: 3 additions & 3 deletions packages/mdc-snackbar/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ npm install --save @material/snackbar
aria-hidden="true">
<div class="mdc-snackbar__text"></div>
<div class="mdc-snackbar__action-wrapper">
<button type="button" class="mdc-button mdc-snackbar__action-button"></button>
<button type="button" class="mdc-snackbar__action-button"></button>
</div>
</div>
```
Expand All @@ -65,7 +65,7 @@ snackbar, add the `mdc-snackbar--align-start` modifier class to the root element
aria-hidden="true">
<div class="mdc-snackbar__text"></div>
<div class="mdc-snackbar__action-wrapper">
<button type="button" class="mdc-button mdc-snackbar__action-button"></button>
<button type="button" class="mdc-snackbar__action-button"></button>
</div>
</div>
```
Expand Down Expand Up @@ -153,7 +153,7 @@ To respond to a snackbar action, assign a function to the optional `actionHandle
aria-hidden="true">
<div class="mdc-snackbar__text"></div>
<div class="mdc-snackbar__action-wrapper">
<button type="button" class="mdc-button mdc-snackbar__action-button"></button>
<button type="button" class="mdc-snackbar__action-button"></button>
</div>
</div>
```
Expand Down
15 changes: 11 additions & 4 deletions packages/mdc-snackbar/mdc-snackbar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -129,20 +129,27 @@
/* stylelint-enable plugin/selector-bem-pattern */

&__action-button {
@include mdc-typography(button);
@include mdc-theme-prop(color, secondary);

@include mdc-theme-dark(".mdc-snackbar") {
@include mdc-theme-prop(color, primary);
}

@include mdc-rtl-reflexive-box(margin, right, -16px, ".mdc-snackbar");

min-width: auto;
height: inherit;
transition: mdc-animation-exit-permanent(opacity, .3s);
padding: 0;
border: none;
outline: none;
background-color: transparent;
opacity: 0;
user-select: none;
-webkit-appearance: none;
visibility: hidden;

&:hover {
cursor: pointer;
}

&::-moz-focus-inner {
border: 0;
}
Expand Down
1 change: 0 additions & 1 deletion packages/mdc-snackbar/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
"dependencies": {
"@material/animation": "^0.3.1",
"@material/base": "^0.2.5",
"@material/button": "^0.6.0",
"@material/rtl": "^0.1.7",
"@material/theme": "^0.3.0",
"@material/typography": "^0.3.0"
Expand Down

0 comments on commit 2c85a4f

Please sign in to comment.