summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Rettberg2020-07-07 16:39:20 +0200
committerSimon Rettberg2020-07-07 16:39:20 +0200
commit5e976d706475f31730749be45011fcb463f2baf6 (patch)
treedce5c7a800132406417af29f92e3eb23115fa588
parent[systemstatus/sysconfig] Manage LDADP via systemd (diff)
downloadslx-admin-5e976d706475f31730749be45011fcb463f2baf6.tar.gz
slx-admin-5e976d706475f31730749be45011fcb463f2baf6.tar.xz
slx-admin-5e976d706475f31730749be45011fcb463f2baf6.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 2e36a287..91464031 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="#">{{systemmodel}}</a>
</td></tr></table>
</td>