diff options
author | Christian Hofmaier | 2017-10-13 14:18:42 +0200 |
---|---|---|
committer | Christian Hofmaier | 2017-10-13 14:18:42 +0200 |
commit | d55c6e4f3c63b707fbddf1fccd3583f4a8a00c4a (patch) | |
tree | 03dc72aaaf7974c2ac17a765fc8b806a8b5898f0 /modules-available/dozmod | |
parent | Merge branch 'permission-manager' of git.openslx.org:openslx-ng/slx-admin int... (diff) | |
download | slx-admin-d55c6e4f3c63b707fbddf1fccd3583f4a8a00c4a.tar.gz slx-admin-d55c6e4f3c63b707fbddf1fccd3583f4a8a00c4a.tar.xz slx-admin-d55c6e4f3c63b707fbddf1fccd3583f4a8a00c4a.zip |
[dozmod] button margin to other fields, labels at Email-config left-aligned, users&perm tables got hover-effect and checkboxes got right-aligned
Diffstat (limited to 'modules-available/dozmod')
-rw-r--r-- | modules-available/dozmod/style.css | 1 | ||||
-rw-r--r-- | modules-available/dozmod/templates/images-delete.html | 2 | ||||
-rw-r--r-- | modules-available/dozmod/templates/orglist.html | 10 | ||||
-rw-r--r-- | modules-available/dozmod/templates/userlist.html | 2 |
4 files changed, 8 insertions, 7 deletions
diff --git a/modules-available/dozmod/style.css b/modules-available/dozmod/style.css index 15b0afe0..07853324 100644 --- a/modules-available/dozmod/style.css +++ b/modules-available/dozmod/style.css @@ -38,6 +38,7 @@ .input-group-addon { min-width:200px; + text-align: left; } .table > tbody > tr > td { diff --git a/modules-available/dozmod/templates/images-delete.html b/modules-available/dozmod/templates/images-delete.html index 94caf3bc..dd4c61bc 100644 --- a/modules-available/dozmod/templates/images-delete.html +++ b/modules-available/dozmod/templates/images-delete.html @@ -45,7 +45,7 @@ {{/images}} </tbody> </table> - <button id="delbtn" class="btn btn-danger pull-right" type="submit" name="button" value="save"><span class="glyphicon glyphicon-trash"></span> {{lang_delButton}}</button> + <button style="margin-left: 20px" id="delbtn" class="btn btn-danger pull-right" type="submit" name="button" value="save"><span class="glyphicon glyphicon-trash"></span> {{lang_delButton}}</button> </form> <pre style="display:none" id="deloutput"></pre> </div> diff --git a/modules-available/dozmod/templates/orglist.html b/modules-available/dozmod/templates/orglist.html index ef4f8d8b..361421c5 100644 --- a/modules-available/dozmod/templates/orglist.html +++ b/modules-available/dozmod/templates/orglist.html @@ -4,18 +4,18 @@ </div> <div class="panel-body"> <div class="table-responsive"> - <table class="table table-stripped table-condensed stupidtable"> + <table class="table table-stripped table-condensed table-hover stupidtable"> <thead> <tr> - <th data-sort="string">{{lang_organization}}</th> - <th><span class="glyphicon glyphicon-ok" title="{{lang_canLoginOrganization}}"></span></th> + <th width="95%" data-sort="string">{{lang_organization}}</th> + <th width="5%"><span class="glyphicon glyphicon-ok" title="{{lang_canLoginOrganization}}"></span></th> </tr> </thead> <tbody> {{#organizations}} <tr> - <td class="text-left text-nowrap">{{displayname}}</td> - <td> + <td width="95%" class="text-left text-nowrap">{{displayname}}</td> + <td width="5%"> <div class="checkbox"> <input onclick="seto('setorglogin', this, '{{organizationid}}')" type="checkbox" {{{canlogin}}}> <label></label> diff --git a/modules-available/dozmod/templates/userlist.html b/modules-available/dozmod/templates/userlist.html index 29f55708..8bba4ef8 100644 --- a/modules-available/dozmod/templates/userlist.html +++ b/modules-available/dozmod/templates/userlist.html @@ -7,7 +7,7 @@ <div class="panel-body"> <p>{{lang_userListDescription}}</p> <div class="table-responsive"> - <table class="table table-stripped table-condensed stupidtable"> + <table class="table table-stripped table-condensed table-hover stupidtable"> <thead> <tr> <th data-sort="string">{{lang_user}}</th> |