diff options
author | Simon Rettberg | 2016-08-17 12:30:53 +0200 |
---|---|---|
committer | Simon Rettberg | 2016-08-17 12:30:53 +0200 |
commit | 35667fcedba31d809ded2a2c4eb105d75eb2f6f1 (patch) | |
tree | af6cc079abb521a62924e24341221402c6622fc4 /modules-available/sysconfig | |
parent | [main] Show submenu as extra row when not in large mode (diff) | |
download | slx-admin-35667fcedba31d809ded2a2c4eb105d75eb2f6f1.tar.gz slx-admin-35667fcedba31d809ded2a2c4eb105d75eb2f6f1.tar.xz slx-admin-35667fcedba31d809ded2a2c4eb105d75eb2f6f1.zip |
Clean up css a bit
Diffstat (limited to 'modules-available/sysconfig')
4 files changed, 9 insertions, 9 deletions
diff --git a/modules-available/sysconfig/templates/custom-filelist.html b/modules-available/sysconfig/templates/custom-filelist.html index 3ad241dd..344eece3 100644 --- a/modules-available/sysconfig/templates/custom-filelist.html +++ b/modules-available/sysconfig/templates/custom-filelist.html @@ -4,7 +4,7 @@ {{#files}} <tr> {{#isdir}} - <td class="fileEntry isdir" colspan="2">{{name}}</td> + <td class="fileEntry slx-bold" colspan="2">{{name}}</td> {{/isdir}} {{^isdir}} <td class="fileEntry">{{name}}</td> diff --git a/modules-available/sysconfig/templates/custom-fileselect.html b/modules-available/sysconfig/templates/custom-fileselect.html index 000c8d10..f14a6fde 100644 --- a/modules-available/sysconfig/templates/custom-fileselect.html +++ b/modules-available/sysconfig/templates/custom-fileselect.html @@ -16,7 +16,7 @@ {{#files}} <tr> {{#isdir}} - <td class="fileEntry isdir" colspan="2">{{name}}</td> + <td class="fileEntry slx-bold" colspan="2">{{name}}</td> {{/isdir}} {{^isdir}} <td class="fileEntry">{{name}}</td> diff --git a/modules-available/sysconfig/templates/list-configs.html b/modules-available/sysconfig/templates/list-configs.html index ed027385..987becfd 100644 --- a/modules-available/sysconfig/templates/list-configs.html +++ b/modules-available/sysconfig/templates/list-configs.html @@ -21,7 +21,7 @@ <table id="conftable" class="slx-table" style="max-width:100px !important"> {{#configs}} <tr> - <td data-modlist="{{modlist}}" class="slx-pointer slx-width-ignore slx-nowrap"onclick="showmod(this, 'bold')" onmouseover="showmod(this, 'fade')" onmouseout="showmod(this, 'reset')" width="100%"> + <td data-modlist="{{modlist}}" class="slx-pointer slx-width-ignore text-nowrap"onclick="showmod(this, 'bold')" onmouseover="showmod(this, 'fade')" onmouseout="showmod(this, 'reset')" width="100%"> <div class="slx-dyn-ellipsis">{{config}}</div> </td> <td> @@ -45,7 +45,7 @@ </span> {{/locationCount}} </td> - <td class="slx-nowrap"> + <td class="text-nowrap"> <button {{#needrebuild}} class="refconf btn btn-primary btn-xs" @@ -55,7 +55,7 @@ {{/needrebuild}} name="rebuild" value="{{configid}}" title="{{lang_rebuild}}"><span class="glyphicon glyphicon-refresh"></span></button> </td> - <td class="slx-nowrap"> + <td class="text-nowrap"> <a class="btn btn-success btn-xs" href="?do=SysConfig&action=addconfig&edit={{configid}}" title="{{lang_edit}}"><span class="glyphicon glyphicon-edit"></span></a> <button class="btn btn-danger btn-xs" name="del" value="{{configid}}" title="{{lang_delete}}"><span class="glyphicon glyphicon-trash"></span></button> </td> diff --git a/modules-available/sysconfig/templates/list-modules.html b/modules-available/sysconfig/templates/list-modules.html index 5b2c940b..29726c5d 100644 --- a/modules-available/sysconfig/templates/list-modules.html +++ b/modules-available/sysconfig/templates/list-modules.html @@ -11,15 +11,15 @@ <table id="modtable" class="slx-table" style="max-width:100px !important"> {{#modules}} <tr> - <td class="badge slx-nowrap">{{moduleType}}</td> - <td data-id="{{id}}" class="modrow slx-width-ignore slx-nowrap" width="100%"><div class="slx-dyn-ellipsis">{{title}}</div></td> - <td class="slx-nowrap"> + <td class="badge text-nowrap">{{moduleType}}</td> + <td data-id="{{id}}" class="modrow slx-width-ignore text-nowrap" width="100%"><div class="slx-dyn-ellipsis">{{title}}</div></td> + <td class="text-nowrap"> {{#allowDownload}} <button class="btn btn-default btn-xs" name="list" value="{{id}}" title="{{lang_show}}"><span class="glyphicon glyphicon-eye-open"></span></button> <button class="btn btn-default btn-xs" name="download" value="{{id}}" title="{{lang_download}}"><span class="glyphicon glyphicon-download-alt"></span></button> {{/allowDownload}} </td> - <td class="slx-nowrap"> + <td class="text-nowrap"> <button {{#needRebuild}} class="refmod btn btn-primary btn-xs" |