forked from PnX-SI/gn_module_monitoring
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP feat(front): DataTable sites_groups
- Table with specific data value (OK) - Table with sort column (OK) - Datatable , select row event and change color (wip). Reviewed-by: andriac [Refs ticket]: #4
- Loading branch information
Showing
3 changed files
with
353 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
.flex-container { | ||
background-color: rgb(240, 240, 240); | ||
display: flex; | ||
} | ||
|
||
.flex-container > div { | ||
width: 50%; | ||
padding: 10px; | ||
margin: 10px; | ||
} | ||
|
||
.flex-container > div:first-child { | ||
margin-right: 0; | ||
} | ||
|
||
.scroll { | ||
overflow-y: scroll; | ||
} | ||
|
||
|
||
:host ::ng-deep .cadre { | ||
background-color: white; | ||
/* border: 1px solid grey;*/ | ||
border-radius: 5px; | ||
padding: 5px; | ||
margin: 5px; | ||
/* display: inline-block; */ | ||
} | ||
|
||
|
||
/* TABLE */ | ||
|
||
.cell-link { | ||
cursor: pointer; | ||
} | ||
|
||
:host::ng-deep .datatable-body-row.active .datatable-row-group { | ||
background-color: rgb(117, 227, 118) !important; | ||
} | ||
|
||
.link:hover { | ||
background-color: rgba(0, 0, 0, 0.2) !important; | ||
transition: background-color 0.5; | ||
} | ||
|
||
.link { | ||
display: inline; | ||
transition: background-color 0.5s; | ||
border-radius: 5px; | ||
} | ||
|
||
.header-filter-span > input { | ||
width: 100%; | ||
} | ||
|
||
.header-sort-span { | ||
/* width: 100%; */ | ||
cursor: pointer; | ||
text-overflow: ellipsis; | ||
overflow: hidden; | ||
white-space:nowrap | ||
} | ||
|
||
|
||
.header-sort-span:hover { | ||
background-color: rgb(245, 245, 245); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters