diff --git a/src/app/components/home/workspace/hours/hours.component.css b/src/app/components/home/workspace/hours/hours.component.css index d25fd8b..509e03d 100644 --- a/src/app/components/home/workspace/hours/hours.component.css +++ b/src/app/components/home/workspace/hours/hours.component.css @@ -7,7 +7,7 @@ } .process { - width: 100%; + width: 90%; height: 75%; } @@ -26,7 +26,7 @@ td { tr { text-align: center; - font-size: 0.78em; + font-size: 0.85em; } button { @@ -34,9 +34,21 @@ button { width: 90%; } +.radioprocess { + margin-top:1rem; + width: 90%; + font-size: 1em; +} + @media (max-width: 500px) { tr { text-align: center; - font-size:0.5em; + font-size: 0.5em; + } + + .radioprocess { + margin-top:1rem; + width: 90%; + font-size: 0.8em; } } diff --git a/src/app/components/home/workspace/hours/hours.component.html b/src/app/components/home/workspace/hours/hours.component.html index 950fec4..7a70c2b 100644 --- a/src/app/components/home/workspace/hours/hours.component.html +++ b/src/app/components/home/workspace/hours/hours.component.html @@ -6,7 +6,7 @@
-
+
{{operation}} diff --git a/src/app/components/home/workspace/infos/infos.component.css b/src/app/components/home/workspace/infos/infos.component.css index 102a990..9ebeecb 100644 --- a/src/app/components/home/workspace/infos/infos.component.css +++ b/src/app/components/home/workspace/infos/infos.component.css @@ -1,6 +1,4 @@ .container { - /* display: flex; */ - /*background-color: #b8b8b8;*/ margin-bottom: 100px; overflow-x: hidden; overflow-y: auto; @@ -14,3 +12,24 @@ .mat-spinner { margin-top: 3rem; } + +.info-card { + margin-top: 0.5rem; + margin-bottom: 0.5rem; + width: 85%; +} + +.info-title { + width: 100%; +} + +.info-content { + margin-top: 0.5rem; +} + +.sys-card { + margin-top: 0.5rem; + margin-bottom: 0.5rem; + width: 85%; +} + diff --git a/src/app/components/home/workspace/infos/infos.component.html b/src/app/components/home/workspace/infos/infos.component.html index fe6db65..a1b9624 100644 --- a/src/app/components/home/workspace/infos/infos.component.html +++ b/src/app/components/home/workspace/infos/infos.component.html @@ -5,25 +5,55 @@
- -

Module GSM

-
- Fabricant: - {{infos.manufacturer.identification}} -
-
- Modèle: - {{infos.manufacturer.model}} -
-
- Révision matérielle: - {{infos.manufacturer.hardware_rev}} -
-
- Numéro de série: - {{infos.manufacturer.serial_number}} -
+ fxLayoutAlign="space-around center"> + + + + Module GSM + + + + +
+ Fabricant: + {{infos.manufacturer.identification}} +
+
+ Modèle: + {{infos.manufacturer.model}} +
+
+ Révision matérielle: + {{infos.manufacturer.hardware_rev}} +
+
+ Numéro de série: + {{infos.manufacturer.serial_number}} +
+
+
+ + + + Système + + + + +
+ Architecture: + {{infos.system.arch}} +
+
+ Machine: + {{infos.system.machine}} +
+
+ OS: + {{infos.system.os}} {{infos.system.version}} +
+
+

Contrôle

Opérateur: @@ -43,5 +73,4 @@
check_circle
cancel
-
diff --git a/src/app/models/info.model.ts b/src/app/models/info.model.ts index 6d5b3aa..fe949d0 100644 --- a/src/app/models/info.model.ts +++ b/src/app/models/info.model.ts @@ -1,3 +1,10 @@ +export interface System { + arch:string; + machine:string; + os:string; + version:string; +} + export interface Manufacturer { identification:string; model:string; @@ -7,6 +14,7 @@ export interface Manufacturer { export interface Info { manufacturer:Manufacturer; + system:System; operator:string; provider:string; signal_dbm:string; diff --git a/src/assets/img/linux.png b/src/assets/img/linux.png new file mode 100644 index 0000000..45100b6 Binary files /dev/null and b/src/assets/img/linux.png differ