mirror of
https://github.com/portainer/portainer.git
synced 2025-08-05 13:55:21 +02:00
feat(swarm-visualizer): swarm visualizer color by service (#1683)
This commit is contained in:
parent
76aeee7237
commit
1b8d5e89d1
3 changed files with 26 additions and 7 deletions
|
@ -661,28 +661,24 @@ ul.sidebar .sidebar-list .sidebar-sublist a.active {
|
|||
}
|
||||
|
||||
.visualizer_container .node .tasks .task_running {
|
||||
border: 2px solid #23ae89;
|
||||
border-radius: 4px;
|
||||
background-color: rgb(35, 174, 137);
|
||||
background-color: rgba(35, 174, 137, 0.2);
|
||||
}
|
||||
|
||||
.visualizer_container .node .tasks .task_stopped {
|
||||
border: 2px solid #ae2323;
|
||||
border-radius: 4px;
|
||||
background-color: rgb(174, 35, 35);
|
||||
background-color: rgba(174, 35, 35, 0.2);
|
||||
}
|
||||
|
||||
.visualizer_container .node .tasks .task_warning {
|
||||
border: 2px solid #f0ad4e;
|
||||
border-radius: 4px;
|
||||
background-color: rgb(240, 173, 78);
|
||||
background-color: rgba(240, 173, 78, 0.2);
|
||||
}
|
||||
|
||||
.visualizer_container .node .tasks .task_info {
|
||||
border: 2px solid #46b8da;
|
||||
border-radius: 4px;
|
||||
background-color: rgb(70, 184, 218);
|
||||
background-color: rgba(70, 184, 218, 0.2);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue