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:
authormattab <matthieu.aubry@gmail.com>2013-09-18 04:28:38 +0400
committermattab <matthieu.aubry@gmail.com>2013-09-18 04:28:38 +0400
commit1cfd954bf8f8fe3140f95f4d0f5ea9f4b3fee8f8 (patch)
tree17bc98f17b9714aced65b12f61b4fc9fddcdbda0
parent079cc1c2b3bf578bae500e179b4f3af6201aeedd (diff)
parent7207c2167e212071a0f17155ac44399ba020609f (diff)
Merge remote-tracking branch 'origin/master'2.0-a4
-rw-r--r--plugins/CorePluginsAdmin/templates/extend.twig19
1 files changed, 12 insertions, 7 deletions
diff --git a/plugins/CorePluginsAdmin/templates/extend.twig b/plugins/CorePluginsAdmin/templates/extend.twig
index a0e4ed18cb..502c0c0cef 100644
--- a/plugins/CorePluginsAdmin/templates/extend.twig
+++ b/plugins/CorePluginsAdmin/templates/extend.twig
@@ -3,6 +3,11 @@
{% import '@CorePluginsAdmin/macros.twig' as plugins %}
{% block content %}
+ <style type="text/css">
+ .extend .header { font-size: 1.6em; }
+ .extend .callToAction { font-size: 1.1em;line-height: 2em; }
+ </style>
+
<div style="max-width:980px;">
<h2>Extend Piwik with Plugins and Themes</h2>
@@ -16,28 +21,28 @@
</em>
</div>
- <div>
+ <div class="extend">
<div style="width:50%;float:left;">
- <h3>Get new functionality</h3>
- by <a href="{{ linkTo({'action':'browsePlugins', 'sort': ''}) }}">installing a new plugin</a>
+ <h3 class="header">Get new functionality</h3>
+ <span class="callToAction">by <a href="{{ linkTo({'action':'browsePlugins', 'sort': ''}) }}">installing a new plugin</a></span>
<p>
<a href="{{ linkTo({'action':'browsePlugins', 'sort': ''}) }}"><img src="" width="250" height="250"/></a>
</p>
- <p>or <a href="#">write your own plugin</a></p>
+ <span class="callToAction">or <a href="#">write your own plugin</a></span>
</div>
<div style="width:50%;float:left;">
- <h3>Enjoy another look & feel</h3>
- by <a href="{{ linkTo({'action':'browseThemes', 'sort': ''}) }}">installing a new theme</a>
+ <h3 class="header">Enjoy another look & feel</h3>
+ <span class="callToAction">by <a href="{{ linkTo({'action':'browseThemes', 'sort': ''}) }}">installing a new theme</a></span>
<p>
<a href="{{ linkTo({'action':'browseThemes', 'sort': ''}) }}"><img src="" width="250" height="250"/></a>
</p>
- <p>or <a href="#">design your own theme</a></p>
+ <span class="callToAction">or <a href="#">design your own theme</a></span>
</div>
</div>
{% endblock %}