Skip to content

Commit 6eb16d4

Browse files
committed
Move snackbar component styling to inline.
1 parent f2cae6e commit 6eb16d4

File tree

6 files changed

+4
-12
lines changed

6 files changed

+4
-12
lines changed

src/material-examples/card-fancy/card-fancy-example.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
}
44

55
.example-header-image {
6-
background-image: url('../../../assets/img/examples/shiba1.jpg');
6+
background-image: url('http://material.angular.io/assets/img/examples/shiba1.jpg');
77
background-size: cover;
88
}

src/material-examples/card-fancy/card-fancy-example.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<md-card-title>Shiba Inu</md-card-title>
55
<md-card-subtitle>Dog Breed</md-card-subtitle>
66
</md-card-header>
7-
<img md-card-image src="assets/img/examples/shiba2.jpg" alt="Photo of a Shiba Inu">
7+
<img md-card-image src="http://material.angular.io/assets/img/examples/shiba2.jpg" alt="Photo of a Shiba Inu">
88
<md-card-content>
99
<p>
1010
The Shiba Inu is the smallest of the six original and distinct spitz breeds of dog from Japan.

src/material-examples/example-module.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -462,11 +462,6 @@ export const EXAMPLE_COMPONENTS = {
462462
additionalFiles: null,
463463
selectorName: null
464464
},
465-
{
466-
'table-basic': {
467-
title: 'Basic table',
468-
component: TableBasicExample,
469-
},
470465
'stepper-overview': {
471466
title: 'Stepper overview',
472467
component: StepperOverviewExample,

src/material-examples/snack-bar-component/snack-bar-component-example-snack.css

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/material-examples/snack-bar-component/snack-bar-component-example.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ export class SnackBarComponentExample {
2222
@Component({
2323
selector: 'snack-bar-component-example-snack',
2424
templateUrl: 'snack-bar-component-example-snack.html',
25-
styleUrls: ['snack-bar-component-example-snack.css'],
25+
styles: [`.example-pizza-party { color: hotpink; }`],
2626
})
2727
export class PizzaPartyComponent {}

src/material-examples/tabs-template-label/tabs-template-label-example.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
.demo-tab-content {
66
padding: 16px;
7-
}
7+
}

0 commit comments

Comments
 (0)