13419-Fix text color in Agents/alert view dark theme
This commit is contained in:
parent
aaa3761a86
commit
60974019aa
|
@ -685,7 +685,7 @@ class AgentsAlerts extends HTML
|
|||
$alias = db_get_row('tagente', 'id_agente', $agent['id_agente']);
|
||||
echo '<tr>';
|
||||
// Name of the agent.
|
||||
echo '<td style="text-align: left;font-weight: bold;color: #3f3f3f;">'.$alias['alias'].'</td>';
|
||||
echo '<td style="text-align: left;font-weight: bold;color: var(--text-color-4);">'.$alias['alias'].'</td>';
|
||||
// Alerts of the agent.
|
||||
foreach ($templates as $tid => $tname) {
|
||||
$anyfired = 0;
|
||||
|
|
|
@ -35,6 +35,7 @@
|
|||
--text-color: #333;
|
||||
--text-color-2: #161628;
|
||||
--text-color-3: #454545;
|
||||
--text-color-4: #3f3f3f;
|
||||
|
||||
--background-main-color: #f6f7fb;
|
||||
|
||||
|
|
|
@ -28,6 +28,7 @@ Description: The default Pandora FMS theme layout
|
|||
--text-color: #fff;
|
||||
--text-color-2: #ededed;
|
||||
--text-color-3: #d5d5d5;
|
||||
--text-color-4: #dddddd;
|
||||
|
||||
--background-main-color: #f6f7fb;
|
||||
--background-2: #95a3bf;
|
||||
|
|
Loading…
Reference in New Issue