You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by ke...@apache.org on 2018/11/07 16:29:22 UTC

allura git commit: [#8256] Hide tour on admin welcome page for small screens

Repository: allura
Updated Branches:
  refs/heads/kt/8256d [created] e6962608d


[#8256] Hide tour on admin welcome page for small screens


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

Branch: refs/heads/kt/8256d
Commit: e6962608d8700d95b469fae2ecdcb610937dca1c
Parents: d26f63f
Author: Kenton Taylor <kt...@slashdotmedia.com>
Authored: Wed Nov 7 16:28:00 2018 +0000
Committer: Kenton Taylor <kt...@slashdotmedia.com>
Committed: Wed Nov 7 16:28:00 2018 +0000

----------------------------------------------------------------------
 Allura/allura/ext/admin/templates/project_admin.html | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/allura/blob/e6962608/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 e4b4abf..e3cf0ba 100644
--- a/Allura/allura/ext/admin/templates/project_admin.html
+++ b/Allura/allura/ext/admin/templates/project_admin.html
@@ -83,10 +83,10 @@
 {% block content %}
     <p>This is the Admin area of your project, where you can set your project details, permissions, options and more.
         Your project has many tools available in the top menu, each with its own customization and settings.</p>
-    <p>Here's a quick tour of a few important things to get started:</p>
+    <p class="show-for-large">Here's a quick tour of a few important things to get started:</p>
 
     {% for step in tour.steps %}
-    <div class="tour-step-info">
+    <div class="tour-step-info show-for-large">
         <h2>{{ step.title }}</h2>
         <p>{{ step.content|safe }}
         </p>
@@ -135,4 +135,4 @@ $(function() {
     {% endif %}
 });
 </script>
-{% endblock %}
\ No newline at end of file
+{% endblock %}