From a7796bec1be01b51f400e9a3a698535b12b636aa Mon Sep 17 00:00:00 2001 From: Marius Burkard <m.burkard@pixcept.de> Date: Thu, 11 Feb 2016 13:44:27 -0500 Subject: [PATCH] Merge branch 'stable-3.1' --- interface/web/dashboard/dashlets/templates/modules.htm | 18 ++++++++++++------ 1 files changed, 12 insertions(+), 6 deletions(-) diff --git a/interface/web/dashboard/dashlets/templates/modules.htm b/interface/web/dashboard/dashlets/templates/modules.htm index 03fb8cb..d42bf2e 100644 --- a/interface/web/dashboard/dashlets/templates/modules.htm +++ b/interface/web/dashboard/dashlets/templates/modules.htm @@ -1,10 +1,16 @@ <h2>{tmpl_var name='available_modules_txt'}</h2> - <div style="width:350px;"> + <div style='margin: 0 auto;'> + <ul class='modules clear'> <tmpl_loop name='modules'> - <div class="dashboard-modules {tmpl_var name='modules_name'}"> - <a href="#" onclick="capp('{tmpl_var name='modules_name'}')"> - {tmpl_var name='modules_title'} - </a> - </div> + <li> + <div class='clear'> + <div class='icon icon-{tmpl_var name='modules_name'}'></div> + <div class='left'> + <div class='title'>{tmpl_var name='modules_title'}</div> + </div> + </div> + <a href='#' class='btn btn-default button' data-capp='{tmpl_var name="modules_name"}'>Go to {tmpl_var name='modules_title'}</a> + </li> </tmpl_loop> + </ul> </div> \ No newline at end of file -- Gitblit v1.9.1