You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by br...@apache.org on 2015/10/27 22:36:30 UTC

[04/47] allura git commit: [#8004] remove icons from project admin landing page

[#8004] remove icons from project admin landing page


Project: http://git-wip-us.apache.org/repos/asf/allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/allura/commit/6abb9542
Tree: http://git-wip-us.apache.org/repos/asf/allura/tree/6abb9542
Diff: http://git-wip-us.apache.org/repos/asf/allura/diff/6abb9542

Branch: refs/heads/db/7919
Commit: 6abb9542c913a9015d308e65cd505d6d6a47204d
Parents: 687e3f1
Author: Dave Brondsema <da...@brondsema.net>
Authored: Wed Oct 21 12:31:24 2015 -0400
Committer: Dave Brondsema <da...@brondsema.net>
Committed: Thu Oct 22 10:55:25 2015 -0400

----------------------------------------------------------------------
 .../ext/admin/templates/project_admin.html      | 32 +++++++++++++-------
 1 file changed, 21 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/allura/blob/6abb9542/Allura/allura/ext/admin/templates/project_admin.html
----------------------------------------------------------------------
diff --git a/Allura/allura/ext/admin/templates/project_admin.html b/Allura/allura/ext/admin/templates/project_admin.html
index 3c9b4f5..6920236 100644
--- a/Allura/allura/ext/admin/templates/project_admin.html
+++ b/Allura/allura/ext/admin/templates/project_admin.html
@@ -28,8 +28,8 @@
 {% block content %}
   <p>{{config.site_name}} projects come with a number of Tools, which can be configured and adjusted to your needs.</p>
 
-  <div class="grid-2">
-    <img src="{{g.forge_static('images/project_default.png')}}" alt="">
+  <div class="grid-1">
+    &nbsp;
   </div>
   <div class="grid-13">
     <h3>Project Setup</h3>
@@ -40,8 +40,8 @@
   </div>
   <div style="clear:both"></div>
 
-  <div class="grid-2">
-    <img src="{{ g.theme.app_icon_url('Wiki', 48) }}" alt="">
+  <div class="grid-1">
+    &nbsp;
   </div>
   <div class="grid-13">
     <h3>Wikis</h3>
@@ -59,9 +59,9 @@
   <div style="clear:both"></div>
   {% if scm_tools %}
     {% set tool = scm_tools[0] %}
-    <div class="grid-2">
-        <img src="{{ g.theme.app_icon_url('Git', 48) }}" alt="">
-    </div>
+      <div class="grid-1">
+        &nbsp;
+      </div>
     <div class="grid-13">
       <h3>Code</h3>
       <p>Source Control Management will help you keep track of code changes over time. A repository has already been created, checkout, add files and upload code.</p>
@@ -73,8 +73,8 @@
   {% endif %}
   <div style="clear:both"></div>
 
-  <div class="grid-2">
-    <img src="{{ g.theme.app_icon_url('Tickets', 48) }}" alt="">
+  <div class="grid-1">
+    &nbsp;
   </div>
   <div class="grid-13">
   <h3>Tickets</h3>
@@ -92,8 +92,8 @@
   </div>
   <div style="clear:both"></div>
 
-  <div class="grid-2">
-    <img src="{{ g.theme.app_icon_url('Discussion', 48) }}" alt="">
+  <div class="grid-1">
+    &nbsp;
   </div>
   <div class="grid-13">
     <h3>Forums</h3>
@@ -109,3 +109,13 @@
     {% endfor %}
   </div>
 {% endblock %}
+
+{% block extra_css %}
+<style>
+    .grid-20.pad .grid-1,
+    .grid-20.pad .grid-13,
+    .grid-20.pad .grid-4 {
+        margin-top: 2em;
+    }
+</style>
+{% endblock %}
\ No newline at end of file