diff --git a/src/main/webapp/app/layouts/navbar/navbar.component.html b/src/main/webapp/app/layouts/navbar/navbar.component.html
index c60b537..b57429a 100644
--- a/src/main/webapp/app/layouts/navbar/navbar.component.html
+++ b/src/main/webapp/app/layouts/navbar/navbar.component.html
@@ -2,7 +2,7 @@
- Myprojectoauth
+
{{ version }}
- Home
+ Home
+
diff --git a/src/main/webapp/app/table-screen-es/table-screen-es.component.scss b/src/main/webapp/app/table-screen-es/table-screen-es.component.scss
index e69de29..4724020 100644
--- a/src/main/webapp/app/table-screen-es/table-screen-es.component.scss
+++ b/src/main/webapp/app/table-screen-es/table-screen-es.component.scss
@@ -0,0 +1,24 @@
+mat-option {
+ font-size: 14px;
+ width: 100%;
+ display:block
+ }
+
+th.mat-header-cell, td.mat-cell, td.mat-footer-cell{
+ padding:18px;
+}
+
+.mat-header-cell {
+ font-size: 18px;
+ font-weight: 800;
+}
+
+
+::ng-deep .tableTooltip{
+ transform: scale(1.5)!important;
+ background-color: bisque!important;
+ position: relative !important;
+ font-size: 10px;
+ color: black!important;
+ font-weight: bold;
+}
\ No newline at end of file
diff --git a/src/main/webapp/app/table-screen-es/table-screen-es.component.ts b/src/main/webapp/app/table-screen-es/table-screen-es.component.ts
index 67f10bf..08044de 100644
--- a/src/main/webapp/app/table-screen-es/table-screen-es.component.ts
+++ b/src/main/webapp/app/table-screen-es/table-screen-es.component.ts
@@ -33,7 +33,7 @@ import { ResourcesImplService } from 'app/services/resources-impl.service';
export class TableScreenEsComponent implements OnInit, AfterViewInit, OnChanges {
//NB 'actions' CI DEVE ESSERE, altrimenti la tabella non viene visualizzata
//displayedColumns: string[] = ['name', 'id', 'status', 'lastMod', 'artifact', 'group', 'version', 'endpoint','actions'];
- displayedColumns: string[] = ['name', 'id', 'status', 'lastMod', 'endpoint','actions'];
+ displayedColumns: string[] = ['name', 'id', 'status', 'lastMod', 'endpoint','actions1','actions2','actions3'];
dataFromService: IEService[];
dataSource = new MatTableDataSource();
tableDetail: IEService;
diff --git a/src/main/webapp/app/table-screen/table-screen.component.html b/src/main/webapp/app/table-screen/table-screen.component.html
index 205275b..f5558da 100644
--- a/src/main/webapp/app/table-screen/table-screen.component.html
+++ b/src/main/webapp/app/table-screen/table-screen.component.html
@@ -1,7 +1,7 @@
-
+
Type: {{resourceType}}
-
+
Search by Name
@@ -15,7 +15,7 @@
Id |
- {{ item.id }} |
+ {{ item.id }} |
@@ -38,10 +38,22 @@
{{ item.hdSpace }} |
-
- Actions |
+
+ View JSON |
-
+
+ |
+
+
+ Edit |
+
+
+ |
+
+
+ Remove |
+
+
|
diff --git a/src/main/webapp/app/table-screen/table-screen.component.scss b/src/main/webapp/app/table-screen/table-screen.component.scss
index cad18be..6897b1c 100644
--- a/src/main/webapp/app/table-screen/table-screen.component.scss
+++ b/src/main/webapp/app/table-screen/table-screen.component.scss
@@ -1,5 +1,3 @@
-@import url('https://fonts.googleapis.com/css?family=Roboto:400,700|Material+Icons');
-
mat-option {
font-size: 14px;
width: 100%;
@@ -13,4 +11,15 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell{
.mat-header-cell {
font-size: 18px;
font-weight: 800;
-}
\ No newline at end of file
+}
+
+::ng-deep .tableTooltip{
+ /* your own custom styles here */
+ /* e.g. */
+ transform: scale(1.5)!important;
+ background-color: bisque!important;
+ position: relative !important;
+ font-size: 10px;
+ color: black!important;
+ font-weight: bold;
+}
diff --git a/src/main/webapp/app/table-screen/table-screen.component.ts b/src/main/webapp/app/table-screen/table-screen.component.ts
index 6b09173..e8cbed9 100644
--- a/src/main/webapp/app/table-screen/table-screen.component.ts
+++ b/src/main/webapp/app/table-screen/table-screen.component.ts
@@ -32,7 +32,7 @@ import { ResourcesImplService } from 'app/services/resources-impl.service';
export class TableScreenComponent implements OnInit, AfterViewInit, OnChanges {
//NB 'actions' CI DEVE ESSERE, altrimenti la tabella non viene visualizzata
- displayedColumns: string[] = ['name', 'id', 'status', 'lastMod', 'avMemory', 'hdSpace', 'actions'];
+ displayedColumns: string[] = ['name', 'id', 'status', 'lastMod', 'avMemory', 'hdSpace', 'actions1','actions2','actions3'];
dataFromService: IHostingNode[];
dataSource = new MatTableDataSource();
tableDetail: IHostingNode;