You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stratos.apache.org by da...@apache.org on 2015/05/15 03:45:01 UTC

[4/4] stratos git commit: fix no entity msg with lowercase

fix no entity msg with lowercase


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

Branch: refs/heads/master
Commit: c166bc3d606de3dd65aacab1c71e06e4f0252461
Parents: 9f4122a
Author: Dakshika Jayathilaka <si...@gmail.com>
Authored: Fri May 15 07:13:56 2015 +0530
Committer: Dakshika Jayathilaka <si...@gmail.com>
Committed: Fri May 15 07:13:56 2015 +0530

----------------------------------------------------------------------
 .../console/themes/theme0/css/custom/style.css                   | 4 ++++
 .../console/themes/theme0/partials/applications_form.hbs         | 2 +-
 .../console/themes/theme0/partials/configure_form.hbs            | 2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/stratos/blob/c166bc3d/components/org.apache.stratos.manager.console/console/themes/theme0/css/custom/style.css
----------------------------------------------------------------------
diff --git a/components/org.apache.stratos.manager.console/console/themes/theme0/css/custom/style.css b/components/org.apache.stratos.manager.console/console/themes/theme0/css/custom/style.css
index 400a642..fd971dc 100644
--- a/components/org.apache.stratos.manager.console/console/themes/theme0/css/custom/style.css
+++ b/components/org.apache.stratos.manager.console/console/themes/theme0/css/custom/style.css
@@ -277,4 +277,8 @@ button.hover-delete-autoscale{
 
 button.hover-delete-app-policy{
     margin-top: .7em;
+}
+
+h2>span {
+    text-transform: lowercase;
 }
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/stratos/blob/c166bc3d/components/org.apache.stratos.manager.console/console/themes/theme0/partials/applications_form.hbs
----------------------------------------------------------------------
diff --git a/components/org.apache.stratos.manager.console/console/themes/theme0/partials/applications_form.hbs b/components/org.apache.stratos.manager.console/console/themes/theme0/partials/applications_form.hbs
index e6ced2b..b48b9dc 100644
--- a/components/org.apache.stratos.manager.console/console/themes/theme0/partials/applications_form.hbs
+++ b/components/org.apache.stratos.manager.console/console/themes/theme0/partials/applications_form.hbs
@@ -99,7 +99,7 @@
             {{else}}
                 <div class="row no-item row-overide">
                     <div class="row title">
-                        <h2>No {{formTitle}}s found..</h2>
+                        <h2>No <span>{{formTitle}}s</span> found..</h2>
                         <a type="button" class="btn btn-primary btn-lg" href="new/">Add New {{formTitle}}</a>
                     </div>
                 </div>

http://git-wip-us.apache.org/repos/asf/stratos/blob/c166bc3d/components/org.apache.stratos.manager.console/console/themes/theme0/partials/configure_form.hbs
----------------------------------------------------------------------
diff --git a/components/org.apache.stratos.manager.console/console/themes/theme0/partials/configure_form.hbs b/components/org.apache.stratos.manager.console/console/themes/theme0/partials/configure_form.hbs
index 5d4a380..8af3c34 100644
--- a/components/org.apache.stratos.manager.console/console/themes/theme0/partials/configure_form.hbs
+++ b/components/org.apache.stratos.manager.console/console/themes/theme0/partials/configure_form.hbs
@@ -129,7 +129,7 @@
     {{else}}
         <div class="row no-item row-overide">
             <div class="row title">
-                <h2>No {{buttonText}} Found..</h2>
+                <h2>No <span>{{formTitle}}s</span> found..</h2>
                 {{#if dependancy}}
                     <h3>You need to add <i>{{dependancy}}</i> before {{formTitle}}</h3>
                     <a type="button" class="btn btn-primary btn-lg" href="../{{dependancy}}/new/">Add New {{dependancy}}</a>