summaryrefslogtreecommitdiffstats
path: root/modules-available/usblockoff/templates/usb-configuration-table.html
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/usblockoff/templates/usb-configuration-table.html')
-rw-r--r--modules-available/usblockoff/templates/usb-configuration-table.html22
1 files changed, 11 insertions, 11 deletions
diff --git a/modules-available/usblockoff/templates/usb-configuration-table.html b/modules-available/usblockoff/templates/usb-configuration-table.html
index 35eede5a..dc8254df 100644
--- a/modules-available/usblockoff/templates/usb-configuration-table.html
+++ b/modules-available/usblockoff/templates/usb-configuration-table.html
@@ -62,28 +62,28 @@
<div class="row">
<div class="col-md-12">
- <table id="configurationTable" class="table table-condensed table-hover stupidtable">
+ <table id="configurationTable" class="table table-condensed table-hover stupidtable fixedTableLayout">
<thead>
<tr>
- <th style="width: 5%" data-sort="int">ID</th>
- <th style="width: 35%" data-sort="string">{{lang_configName}}</th>
- <th style="width: 40%">{{lang_description}}</th>
- <th style="width: 10%">{{lang_edit}}</th>
- <th style="width: 10%">{{lang_delete}}</th>
+ <th style="width: 5%" class="tableWrapBreakWord" data-sort="int">ID</th>
+ <th style="width: 35%" class="tableWrapBreakWord" data-sort="string">{{lang_configName}}</th>
+ <th style="width: 40%" class="tableWrapBreakWord">{{lang_description}}</th>
+ <th style="width: 10%" class="tableWrapBreakWord">{{lang_edit}}</th>
+ <th style="width: 10%" class="tableWrapBreakWord">{{lang_delete}}</th>
</tr>
</thead>
<tbody>
{{#config_list}}
<tr>
- <td>{{config_id}}</td>
- <td data-sort-value="{{config_name}}">{{config_name}}</td>
- <td>{{config_desc}}</td>
- <td>
+ <td class="tableWrapBreakWord">{{config_id}}</td>
+ <td class="tableWrapBreakWord" data-sort-value="{{config_name}}">{{config_name}}</td>
+ <td class="tableWrapBreakWord">{{config_desc}}</td>
+ <td class="tableWrapBreakWord">
<a class="btn btn-xs btn-info" href="?do=usblockoff&amp;show=edit-config&amp;configid={{config_id}}">
<span class="glyphicon glyphicon-edit"></span>
</a>
</td>
- <td>
+ <td class="tableWrapBreakWord">
<a class="btn btn-xs btn-danger" onclick="deleteConfig(event, {{config_id}});">
<span class="glyphicon glyphicon-trash"></span>
</a>