CSS fixes
parent
4f0601cff7
commit
0791a4c2c9
|
@ -30,5 +30,5 @@
|
|||
<?php } ?>
|
||||
<span id="cacheInfo<?= htmlspecialchars($agent['id']) ?>" style="margin: 5px 0;"></span>
|
||||
</p>
|
||||
<pre class="agent_result" id="result<?= htmlspecialchars($agent['id']) ?>">click a button to fetch data from the agent.</pre>
|
||||
<pre class="results" id="result<?= htmlspecialchars($agent['id']) ?>">click a button to fetch data from the agent.</pre>
|
||||
<?php } ?>
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
<span class="m-3"><a class="btn btn-light" href="<?= $app_root ?>?platform=<?= htmlspecialchars($platform_id) ?>&page=config&item=configjs&mode=raw">view raw file contents</a></span>
|
||||
<?php } ?>
|
||||
</p>
|
||||
<pre style="text-align: left;">
|
||||
<pre class="results">
|
||||
<?php
|
||||
echo htmlspecialchars($platformConfigjs);
|
||||
?>
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
<span class="m-3"><a class="btn btn-light" href="<?= $app_root ?>?platform=<?= htmlspecialchars($platform_id) ?>&page=config&item=interfaceconfigjs&mode=raw">view raw file contents</a></span>
|
||||
<?php } ?>
|
||||
</p>
|
||||
<pre style="text-align: left;">
|
||||
<pre class="results">
|
||||
<?php
|
||||
echo htmlspecialchars($platformInterfaceConfigjs);
|
||||
?>
|
||||
|
|
|
@ -25,7 +25,6 @@
|
|||
</script>
|
||||
<?php if ($page === 'agents') { ?>
|
||||
<script src="<?= $app_root ?>static/agents.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="<?= $app_root ?>static/css/agents.css">
|
||||
<?php } ?>
|
||||
<title>Jilo Web</title>
|
||||
<link rel="icon" type="image/x-icon" href="<?= $app_root ?>static/favicon.ico">
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
|
||||
.agent_result {
|
||||
text-align: left;
|
||||
font-family: monospace;
|
||||
white-space: pre-wrap;
|
||||
background-color: #f4f4f4;
|
||||
padding: 10px;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 5px;
|
||||
overflow-x: auto;
|
||||
}
|
|
@ -172,3 +172,14 @@
|
|||
.th-time {
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
.results {
|
||||
text-align: left;
|
||||
font-family: monospace;
|
||||
white-space: pre-wrap;
|
||||
background-color: #f4f4f4;
|
||||
padding: 10px;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 5px;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue