diff --git a/app/views/layouts/default.rhtml b/app/views/layouts/default.rhtml index da13eee5..cdf4c141 100644 --- a/app/views/layouts/default.rhtml +++ b/app/views/layouts/default.rhtml @@ -51,6 +51,10 @@

<%= @flash[:error].to_s %>


<% end %> +<% if @flash[:info] %>
+

<%= @flash[:info].to_s %>


+<% end %> + <%= render 'navigation' unless @web.nil? || @hide_navigation %> <%= @content_for_layout %> diff --git a/public/stylesheets/instiki.css b/public/stylesheets/instiki.css index 30040e49..55e3641f 100755 --- a/public/stylesheets/instiki.css +++ b/public/stylesheets/instiki.css @@ -154,6 +154,12 @@ ol.setup li { width: 450px; } +#info { + color: darkgreen; + font-style: italic; + width: 450px; +} + #TextileHelp table { margin-bottom: 0; }