Commit a67eceff29d7cb467ea4295f96dcb93480fe65f0
1 parent
3c68e37e
Exists in
dev
Larger command column in agents commands list
Showing
1 changed file
with
8 additions
and
2 deletions
Show diff stats
src/core/pyros_django/dashboard/templates/dashboard/agents_commands.html
@@ -33,6 +33,12 @@ | @@ -33,6 +33,12 @@ | ||
33 | .red{ | 33 | .red{ |
34 | color: red; | 34 | color: red; |
35 | } | 35 | } |
36 | + .large-theader{ | ||
37 | + text-align: center; | ||
38 | + min-width: 15vw; | ||
39 | + wordwrap: none; | ||
40 | + vertical-align:top; | ||
41 | + } | ||
36 | </style> | 42 | </style> |
37 | 43 | ||
38 | <div> | 44 | <div> |
@@ -68,7 +74,7 @@ | @@ -68,7 +74,7 @@ | ||
68 | class="table table-bordered table-hover table-striped tablesorter" id="cmd_table"> | 74 | class="table table-bordered table-hover table-striped tablesorter" id="cmd_table"> |
69 | <thead> | 75 | <thead> |
70 | <tr> | 76 | <tr> |
71 | - <th>Command</th> | 77 | + <th class="large-theader">Command</th> |
72 | <th>Sender</th> | 78 | <th>Sender</th> |
73 | <th>Recipient</th> | 79 | <th>Recipient</th> |
74 | <th>Status </th> | 80 | <th>Status </th> |
@@ -78,7 +84,7 @@ | @@ -78,7 +84,7 @@ | ||
78 | <th>Read (UTC)</th> | 84 | <th>Read (UTC)</th> |
79 | <th>Exec start (UTC)</th> | 85 | <th>Exec start (UTC)</th> |
80 | <th>Exec end (UTC)</th> | 86 | <th>Exec end (UTC)</th> |
81 | - <th>Result</th> | 87 | + <th class="large-theader">Result</th> |
82 | </tr> | 88 | </tr> |
83 | </thead> | 89 | </thead> |
84 | 90 |