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/dozmod | |
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/dozmod')
-rw-r--r-- | modules-available/dozmod/templates/images-delete.html | 10 | ||||
-rw-r--r-- | modules-available/dozmod/templates/orglist.html | 2 | ||||
-rw-r--r-- | modules-available/dozmod/templates/userlist.html | 8 |
3 files changed, 10 insertions, 10 deletions
diff --git a/modules-available/dozmod/templates/images-delete.html b/modules-available/dozmod/templates/images-delete.html index b85d2c06..0ee90835 100644 --- a/modules-available/dozmod/templates/images-delete.html +++ b/modules-available/dozmod/templates/images-delete.html @@ -27,11 +27,11 @@ <tbody> {{#images}} <tr> - <td class="text-left slx-nowrap {{name_extra_class}}">{{displayname}}<br><span class="small">{{imageversionid}}</span></td> - <td class="text-left slx-nowrap">{{version}}</td> - <td class="text-left slx-nowrap"><a href="mailto:{{email}}">{{lastname}}, {{firstname}}</a></td> - <td class="text-left slx-nowrap"><span class="glyphicon {{hasNewerClass}}"></span></td> - <td class="text-right slx-nowrap">{{filesize}}</td> + <td class="text-left text-nowrap {{name_extra_class}}">{{displayname}}<br><span class="small">{{imageversionid}}</span></td> + <td class="text-left text-nowrap">{{version}}</td> + <td class="text-left text-nowrap"><a href="mailto:{{email}}">{{lastname}}, {{firstname}}</a></td> + <td class="text-left text-nowrap"><span class="glyphicon {{hasNewerClass}}"></span></td> + <td class="text-right text-nowrap">{{filesize}}</td> <td><input class="del-check" name="images[{{imageversionid}}]" type="checkbox" {{checked}}></td> </tr> {{/images}} diff --git a/modules-available/dozmod/templates/orglist.html b/modules-available/dozmod/templates/orglist.html index bb002b3b..482864de 100644 --- a/modules-available/dozmod/templates/orglist.html +++ b/modules-available/dozmod/templates/orglist.html @@ -16,7 +16,7 @@ <tbody> {{#organizations}} <tr> - <td class="text-left slx-nowrap">{{displayname}}</td> + <td class="text-left text-nowrap">{{displayname}}</td> <td class="text-nowrap"> <input onclick="seto('setorglogin', this, '{{organizationid}}')" type="checkbox" {{{canlogin}}}> </td> diff --git a/modules-available/dozmod/templates/userlist.html b/modules-available/dozmod/templates/userlist.html index 7dd84fd4..93ef7b41 100644 --- a/modules-available/dozmod/templates/userlist.html +++ b/modules-available/dozmod/templates/userlist.html @@ -22,10 +22,10 @@ <tbody> {{#users}} <tr> - <td class="text-left slx-nowrap"><a href="?do=dozmod&section=actionlog&action=showuser&uuid={{userid}}">{{lastname}}, {{firstname}}</a></td> - <td class="text-left slx-nowrap">{{orgname}}</td> - <td class="text-left slx-nowrap">{{lastlogin}}</td> - <td class="text-left slx-nowrap"><a href="mailto:{{email}}">{{email}}</a></td> + <td class="text-left text-nowrap"><a href="?do=dozmod&section=actionlog&action=showuser&uuid={{userid}}">{{lastname}}, {{firstname}}</a></td> + <td class="text-left text-nowrap">{{orgname}}</td> + <td class="text-left text-nowrap">{{lastlogin}}</td> + <td class="text-left text-nowrap"><a href="mailto:{{email}}">{{email}}</a></td> <td><input onclick="setu('setmail', this, '{{userid}}')" type="checkbox" {{{emailnotifications}}}></td> <td><input onclick="setu('setsu', this, '{{userid}}')" type="checkbox" {{{issuperuser}}}></td> <td><input onclick="setu('setlogin', this, '{{userid}}')" type="checkbox" {{{canlogin}}}></td> |