changeset 7286:99f7ec293293

admin: system info: add title attribute for truncated items On the System Info page, the item names may be truncated, e.g. "Kallithea configur...". In these cases, it is not possible for a user to retrieve the full name. Add a title attribute that will show the full name on hover.
author Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
date Mon, 21 May 2018 14:44:15 +0200
parents 5fc420b5c49c
children b4c77ea1221f
files kallithea/templates/admin/settings/settings_system.html
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/templates/admin/settings/settings_system.html	Mon May 21 14:26:06 2018 +0200
+++ b/kallithea/templates/admin/settings/settings_system.html	Mon May 21 14:44:15 2018 +0200
@@ -15,7 +15,7 @@
 %>
 <dl class="dl-horizontal">
 %for dt, dd, tt in elems:
-  <dt>${dt}:</dt>
+  <dt title="${dt}">${dt}:</dt>
   <dd title="${tt}">${dd}</dd>
 %endfor
 </dl>