summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Rettberg2020-07-07 16:39:20 +0200
committerSimon Rettberg2020-07-30 13:28:27 +0200
commitc3ead1ca5bad68dcf289a6fd0fd1442c8a2c89ca (patch)
tree7b6daab56519c3a10d3a11c2774316db434bdbef
parent[systemstatus] Add dnbd3-master-proxy to service status (diff)
downloadslx-admin-c3ead1ca5bad68dcf289a6fd0fd1442c8a2c89ca.tar.gz
slx-admin-c3ead1ca5bad68dcf289a6fd0fd1442c8a2c89ca.tar.xz
slx-admin-c3ead1ca5bad68dcf289a6fd0fd1442c8a2c89ca.zip
[statistics] Fix system model list width in summary mode
-rw-r--r--modules-available/statistics/templates/cpumodels.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules-available/statistics/templates/cpumodels.html b/modules-available/statistics/templates/cpumodels.html
index d89a5b2f..33a16349 100644
--- a/modules-available/statistics/templates/cpumodels.html
+++ b/modules-available/statistics/templates/cpumodels.html
@@ -10,15 +10,15 @@
<thead>
<tr>
<th data-sort="string">{{lang_modelName}}</th>
- <th data-sort="int" class="text-right text-nowrap">{{lang_cpuCores}}</th>
- <th data-sort="int" class="text-right text-nowrap">{{lang_modelCount}}</th>
+ <th data-sort="int" class="slx-smallcol text-right">{{lang_cpuCores}}</th>
+ <th data-sort="int" class="slx-smallcol text-right">{{lang_modelCount}}</th>
</tr>
</thead>
<tbody>
{{#rows}}
<tr id="{{id}}" class="{{collapse}}">
<td data-sort-value="{{systemmodel}}" class="text-left text-nowrap filter-col" data-filter-col="systemmodel">
- <table style="width:100%; table-layout: fixed;"><tr><td style="overflow:hidden;text-overflow: ellipsis;">
+ <table class="slx-ellipsis"><tr><td>
<a class="filter-val" data-filter-val="{{systemmodel}}" href="?do=Statistics&amp;show=summary&amp;filters={{query}}~,~systemmodel={{urlsystemmodel}}">{{systemmodel}}</a>
</td></tr></table>
</td>