Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
software-engineering-project
front-end
Commits
0d77d9e9
Commit
0d77d9e9
authored
3 years ago
by
Thomas Mathieu
Browse files
Options
Download
Patches
Plain Diff
adding all tab
parent
e16ea756
master
No related merge requests found
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/app/pages/home/home.component.css
+1
-0
src/app/pages/home/home.component.css
src/app/pages/home/home.component.html
+65
-1
src/app/pages/home/home.component.html
src/app/pages/home/home.component.ts
+166
-69
src/app/pages/home/home.component.ts
src/app/toolbar/toolbar.component.css
+0
-2
src/app/toolbar/toolbar.component.css
with
232 additions
and
72 deletions
+232
-72
src/app/pages/home/home.component.css
+
1
−
0
View file @
0d77d9e9
...
...
@@ -15,6 +15,7 @@ mat-grid-list {
margin-left
:
15px
;
cursor
:
pointer
;
margin-top
:
50px
;
margin-bottom
:
50px
;
}
...
...
This diff is collapsed.
Click to expand it.
src/app/pages/home/home.component.html
+
65
−
1
View file @
0d77d9e9
<body>
<mat-grid-list
cols=
"4"
rowHeight=
"45px"
>
<nav>
<a><mat-grid-tile
...
...
@@ -17,7 +19,6 @@
</mat-grid-tile></a></nav>
</mat-grid-list>
<mat-grid-list
cols=
"5"
rowHeight=
"45px"
>
<nav>
<a><mat-grid-tile
...
...
@@ -34,7 +35,70 @@
</mat-grid-tile></a></nav>
</mat-grid-list>
<mat-grid-list
cols=
"4"
rowHeight=
"45px"
>
<nav>
<a><mat-grid-tile
*ngFor=
"let tile of tilesSupportDepartement"
[colspan]=
"tile.cols"
[rowspan]=
"tile.rows"
[style.background]=
"tile.color"
[style.color]=
"tile.textColor"
[style.border]=
"tile.border"
(mouseenter)=
"setColorHover(tile)"
(mouseleave)=
"setColorHover(tile)"
>
<strong>
{{tile.text}}
</strong>
</mat-grid-tile></a></nav>
</mat-grid-list>
<mat-grid-list
cols=
"3"
rowHeight=
"45px"
>
<nav>
<a><mat-grid-tile
*ngFor=
"let tile of tilesNombreCP"
[colspan]=
"tile.cols"
[rowspan]=
"tile.rows"
[style.background]=
"tile.color"
[style.color]=
"tile.textColor"
[style.border]=
"tile.border"
(mouseenter)=
"setColorHover(tile)"
(mouseleave)=
"setColorHover(tile)"
>
<strong>
{{tile.text}}
</strong>
</mat-grid-tile></a></nav>
</mat-grid-list>
<mat-grid-list
cols=
"4"
rowHeight=
"45px"
>
<nav>
<a><mat-grid-tile
*ngFor=
"let tile of tilesRetombeCP"
[colspan]=
"tile.cols"
[rowspan]=
"tile.rows"
[style.background]=
"tile.color"
[style.color]=
"tile.textColor"
[style.border]=
"tile.border"
(mouseenter)=
"setColorHover(tile)"
(mouseleave)=
"setColorHover(tile)"
>
<strong>
{{tile.text}}
</strong>
</mat-grid-tile></a></nav>
</mat-grid-list>
<mat-grid-list
cols=
"9"
rowHeight=
"45px"
>
<nav>
<a><mat-grid-tile
*ngFor=
"let tile of tilesThemeTonalite"
[colspan]=
"tile.cols"
[rowspan]=
"tile.rows"
[style.background]=
"tile.color"
[style.color]=
"tile.textColor"
[style.border]=
"tile.border"
(mouseenter)=
"setColorHover(tile)"
(mouseleave)=
"setColorHover(tile)"
>
<strong>
{{tile.text}}
</strong>
</mat-grid-tile></a></nav>
</mat-grid-list>
</body>
...
...
This diff is collapsed.
Click to expand it.
src/app/pages/home/home.component.ts
+
166
−
69
View file @
0d77d9e9
This diff is collapsed.
Click to expand it.
src/app/toolbar/toolbar.component.css
+
0
−
2
View file @
0d77d9e9
...
...
@@ -10,8 +10,6 @@ mat-grid-list {
.img-logo
{
transform
:
scale
(
1
);
width
:
90%
;
height
:
65%
;
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets