File tree 8 files changed +22
-8
lines changed
8 files changed +22
-8
lines changed Original file line number Diff line number Diff line change 23
23
$warn : map-get ($theme , warn );
24
24
$background : map-get ($theme , background );
25
25
$foreground : map-get ($theme , foreground );
26
+ $next-theme : mat-palette ($mat-red );
26
27
27
28
.docs-app-background {
28
29
background : mat-color ($background , background );
41
42
color : mat-color ($primary , default-contrast );
42
43
}
43
44
45
+ .is-next-version {
46
+ background : mat-color ($next-theme , 900 ) !important ;
47
+ }
48
+
44
49
@include component-category-list-theme ($theme );
45
50
@include component-list-theme ($theme );
46
51
@include component-viewer-sidenav-theme ($theme );
Original file line number Diff line number Diff line change 1
- < header class ="docs-header-background ">
1
+ < header class ="docs-header-background "
2
+ [class.is-next-version] ="isNextVersion ">
2
3
< div class ="docs-header-section ">
3
4
< div class ="docs-header-headline ">
4
5
< h1 class ="mat-h1 "> Angular Material</ h1 >
Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ import {ComponentPageTitle} from '../page-title/page-title';
11
11
styleUrls : [ './homepage.scss' ]
12
12
} )
13
13
export class Homepage implements OnInit {
14
+ isNextVersion = location . hostname . startsWith ( 'next.material.angular.io' ) ;
15
+
14
16
constructor ( public _componentPageTitle : ComponentPageTitle ) { }
15
17
16
18
ngOnInit ( ) : void {
Original file line number Diff line number Diff line change 1
- < footer class ="docs-footer ">
1
+ < footer class ="docs-footer "
2
+ [class.is-next-version] ="isNextVersion ">
2
3
< div class ="docs-footer-list ">
3
4
< div class ="docs-footer-logo ">
4
5
< div class ="footer-logo ">
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ import {materialVersion} from '../version/version';
7
7
styleUrls : [ './footer.scss' ]
8
8
} )
9
9
export class Footer {
10
+ isNextVersion = location . hostname . startsWith ( 'next.material.angular.io' ) ;
11
+
10
12
version = materialVersion ;
11
13
}
12
14
Original file line number Diff line number Diff line change 1
1
<!-- TODO: figure out if the <nav> should go inside of a <header> element. -->
2
- < nav class ="docs-navbar-header ">
2
+ < nav class ="docs-navbar-header "
3
+ [class.is-next-version] ="isNextVersion ">
3
4
< a mat-button class ="docs-button " routerLink ="/ " aria-label ="Angular Material ">
4
5
< img class ="docs-angular-logo "
5
6
src ="../../../assets/img/homepage/angular-white-transparent.svg "
Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ const SECTIONS_KEYS = Object.keys(SECTIONS);
14
14
styleUrls : [ './navbar.scss' ]
15
15
} )
16
16
export class NavBar {
17
+ isNextVersion = location . hostname . startsWith ( 'next.material.angular.io' ) ;
18
+
17
19
get sections ( ) {
18
20
return SECTIONS ;
19
21
}
You can’t perform that action at this time.
0 commit comments