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
c4a66d1b
Commit
c4a66d1b
authored
3 years ago
by
Thomas Mathieu
Browse files
Options
Download
Plain Diff
Merge branch '20-update-tab-on-dashboard' into 'master'
adding all tab Closes
#20
See merge request
!22
parents
e16ea756
0d77d9e9
master
1 merge request
!22
adding all tab
Changes
4
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 @
c4a66d1b
...
...
@@ -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 @
c4a66d1b
<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 @
c4a66d1b
...
...
@@ -8,7 +8,7 @@ export interface Tile {
rows
:
number
;
text
:
string
;
textColor
:
string
;
}
@
Component
({
...
...
@@ -46,97 +46,194 @@ export class HomeComponent{
{
text
:
'
Total
'
,
cols
:
2
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
71
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
6
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
Landes
'
,
cols
:
2
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
Landes
(40)
'
,
cols
:
2
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
17
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
1
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
Hautes Pyrénées
'
,
cols
:
2
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
80
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
Hautes Pyrénées
(65)
'
,
cols
:
2
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
43
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
3
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
Pyrénées Atlantiques
'
,
cols
:
2
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
1
9
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
Pyrénées Atlantiques
(64)
'
,
cols
:
2
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
1
1
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
2
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
];
tilesThemeRec
:
Tile
[]
=
[
{
text
:
'
Thèmes les plus récurents
'
,
cols
:
5
,
rows
:
1
,
textColor
:
'
black
'
,
color
:
"
white
"
,
border
:
"
none
"
},
{
text
:
'
Thèmes les plus récurents
'
,
cols
:
5
,
rows
:
1
,
textColor
:
''
,
color
:
""
,
border
:
"
none
"
},
{
text
:
'
Thème
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
Total
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
Landes
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
Hautes Pyrénées
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
Pyrénées Atlantiques
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
Landes
(40)
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
Hautes Pyrénées
(65)
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
Pyrénées Atlantiques
(64)
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
Partenariat
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
71
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
8
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
6
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
1
7
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
1
7
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
1
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
1
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
Sécurité
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
7
1
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
6
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
1
7
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
17
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
1
4
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
4
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
7
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
3
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
Transition énergétique
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
71
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
6
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
17
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
1
7
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
2
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
1
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
1
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
RH
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
71
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
6
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
1
7
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
17
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
9
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
5
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
1
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
3
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
Crise
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
7
1
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
6
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
1
7
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
17
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
1
1
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
2
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
1
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
8
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
Réseau
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
71
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
6
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
17
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
17
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
1
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
2
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
3
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
Linky∕Smartgrid
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
7
1
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
6
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
17
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
17
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
7
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
2
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
2
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
3
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
Envrionnement
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
71
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
6
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
17
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
17
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
3
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
1
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
2
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
]
public
displayTonaliteMed
(){
let
arrayTonaliteMed
=
new
Array
(
5
);
for
(
let
i
=
0
;
i
<
5
;
i
++
){
arrayTonaliteMed
[
i
]
=
new
Array
(
3
)
}
arrayTonaliteMed
[
0
][
0
]
=
'
TONALITES DES MEDIAS
'
;
arrayTonaliteMed
[
0
][
1
]
=
'
POSITIF
'
;
arrayTonaliteMed
[
0
][
2
]
=
'
NEGATIF
'
;
arrayTonaliteMed
[
1
][
0
]
=
'
TOTAL
'
;
arrayTonaliteMed
[
1
][
1
]
=
arrayTonaliteMed
[
2
][
1
]
+
arrayTonaliteMed
[
3
][
1
]
+
arrayTonaliteMed
[
4
][
1
];
arrayTonaliteMed
[
1
][
2
]
=
arrayTonaliteMed
[
2
][
2
]
+
arrayTonaliteMed
[
3
][
2
]
+
arrayTonaliteMed
[
4
][
2
];
arrayTonaliteMed
[
2
][
0
]
=
'
LANDES
'
;
arrayTonaliteMed
[
2
][
1
]
=
17
;
arrayTonaliteMed
[
2
][
2
]
=
1
;
arrayTonaliteMed
[
3
][
0
]
=
'
HAUTES PYRENEES
'
;
arrayTonaliteMed
[
3
][
1
]
=
80
;
arrayTonaliteMed
[
3
][
2
]
=
3
;
arrayTonaliteMed
[
4
][
0
]
=
'
PYRENNES ATLANTIQUES
'
;
arrayTonaliteMed
[
4
][
1
]
=
19
;
arrayTonaliteMed
[
4
][
2
]
=
2
;
return
arrayTonaliteMed
;
tilesSupportDepartement
:
Tile
[]
=
[
{
text
:
'
Support par département
'
,
cols
:
4
,
rows
:
1
,
textColor
:
''
,
color
:
""
,
border
:
"
none
"
},
{
text
:
'
Support
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
Landes (40)
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
Hautes Pyrénées (65)
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
Pyrénées Atlantiques (64)
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
PQR
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
2
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
1
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
1
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
WEB
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
7
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
11
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
5
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
Radio
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
4
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
2
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
TV
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
1
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
1
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
]
}
tilesNombreCP
:
Tile
[]
=
[
{
text
:
'
Nombre CP
'
,
cols
:
3
,
rows
:
1
,
textColor
:
''
,
color
:
""
,
border
:
"
none
"
},
{
text
:
'
Landes (40)
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
Hautes Pyrénées (65)
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
Pyrénées Atlantiques (64)
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
5
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
3
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
3
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
]
tilesRetombeCP
:
Tile
[]
=
[
{
text
:
'
Retombées liés aux CP
'
,
cols
:
4
,
rows
:
1
,
textColor
:
''
,
color
:
""
,
border
:
"
none
"
},
{
text
:
'
Totales
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
Landes (40)
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
Hautes Pyrénées (65)
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
Pyrénées Atlantiques (64)
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
34
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
10
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
15
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
9
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
]
tilesThemeTonalite
:
Tile
[]
=
[
{
text
:
'
Tonalité par thématique
'
,
cols
:
9
,
rows
:
1
,
textColor
:
''
,
color
:
""
,
border
:
"
none
"
},
{
text
:
'
Thème
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
Total positif
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
Total négatif
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
40 positif
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
40 négatif
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
65 positif
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
65 négatif
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
64 positif
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
64 négatif
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(0,94,184)
'
,
border
:
"
3px solid rgb(0,94,184)
"
},
{
text
:
'
Partenariat
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
11
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
5
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
6
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
Sécurité
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
Transition énergétique
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
9
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
2
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
7
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
RH
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
7
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
1
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
5
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
1
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
Crise
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
8
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
4
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
2
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
2
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
Réseau
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
25
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
1
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
3
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
16
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
6
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
1
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
Linky
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
6
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
5
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
2
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
1
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
1
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
3
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
3
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
1
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
Envrionnement
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(147,201,14)
'
,
border
:
"
3px solid rgb(147,201,14)
"
},
{
text
:
'
0
'
,
cols
:
1
,
rows
:
1
,
textColor
:
"
white
"
,
color
:
'
rgb(239,66,111)
'
,
border
:
"
3px solid rgb(239,66,111)
"
},
]
}
This diff is collapsed.
Click to expand it.
src/app/toolbar/toolbar.component.css
+
0
−
2
View file @
c4a66d1b
...
...
@@ -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