Commit a67eceff29d7cb467ea4295f96dcb93480fe65f0

Authored by Alexis Koralewski
1 parent 3c68e37e
Exists in dev

Larger command column in agents commands list

src/core/pyros_django/dashboard/templates/dashboard/agents_commands.html
... ... @@ -33,6 +33,12 @@
33 33 .red{
34 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 42 </style>
37 43  
38 44 <div>
... ... @@ -68,7 +74,7 @@
68 74 class="table table-bordered table-hover table-striped tablesorter" id="cmd_table">
69 75 <thead>
70 76 <tr>
71   - <th>Command</th>
  77 + <th class="large-theader">Command</th>
72 78 <th>Sender</th>
73 79 <th>Recipient</th>
74 80 <th>Status </th>
... ... @@ -78,7 +84,7 @@
78 84 <th>Read (UTC)</th>
79 85 <th>Exec start (UTC)</th>
80 86 <th>Exec end (UTC)</th>
81   - <th>Result</th>
  87 + <th class="large-theader">Result</th>
82 88 </tr>
83 89 </thead>
84 90  
... ...