Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Napoli <matthieu@mnapoli.fr>2015-06-15 12:44:24 +0300
committerMatthieu Napoli <matthieu@mnapoli.fr>2015-06-15 12:44:24 +0300
commit5fd2f65f009d5573fcbc7b05d1a37bbd66e778ab (patch)
treeeb6a058a9470e1aad2dbb081512b333563113391 /plugins/Dashboard
parent22a268eab207a418f58407760a33d1cff08d5a2f (diff)
#8035 Fix the design of the "Create a new dashboard" popup
Diffstat (limited to 'plugins/Dashboard')
-rw-r--r--plugins/Dashboard/templates/embeddedIndex.twig15
1 files changed, 10 insertions, 5 deletions
diff --git a/plugins/Dashboard/templates/embeddedIndex.twig b/plugins/Dashboard/templates/embeddedIndex.twig
index 3aacb31ee3..af1dbeb887 100644
--- a/plugins/Dashboard/templates/embeddedIndex.twig
+++ b/plugins/Dashboard/templates/embeddedIndex.twig
@@ -77,11 +77,16 @@
<div id="createDashboardNameInput">
<label>{{ 'Dashboard_DashboardName'|translate }} <input type="input" name="newDashboardName" id="createDashboardName" value=""/></label><br/>
- <input type="radio" checked="checked" name="type" value="default" id="dashboard_type_default" />
- <label for="dashboard_type_default">{{ 'Dashboard_DefaultDashboard'|translate }}</label><br/>
-
- <input type="radio" name="type" value="empty" id="dashboard_type_empty" />
- <label for="dashboard_type_empty">{{ 'Dashboard_EmptyDashboard'|translate }}</label>
+ <label for="dashboard_type_default">
+ <input type="radio" checked="checked" name="type" value="default" id="dashboard_type_default" />
+ {{ 'Dashboard_DefaultDashboard'|translate }}
+ </label>
+ <br/><br/>
+
+ <label for="dashboard_type_empty">
+ <input type="radio" name="type" value="empty" id="dashboard_type_empty" />
+ {{ 'Dashboard_EmptyDashboard'|translate }}
+ </label>
</div>
<input role="yes" type="button" value="{{ 'General_Yes'|translate }}"/>
<input role="no" type="button" value="{{ 'General_Cancel'|translate }}"/>