diff options
| -rw-r--r-- | app/assets/stylesheets/main/help.css.scss | 16 | ||||
| -rw-r--r-- | app/views/stop_areas/_genealogical.html.erb | 2 | ||||
| -rw-r--r-- | config/environments/production.rb | 4 |
3 files changed, 18 insertions, 4 deletions
diff --git a/app/assets/stylesheets/main/help.css.scss b/app/assets/stylesheets/main/help.css.scss index 0760cf242..b815f511f 100644 --- a/app/assets/stylesheets/main/help.css.scss +++ b/app/assets/stylesheets/main/help.css.scss @@ -84,6 +84,22 @@ dt { dd { padding-left: 10px; } + + + table.meta { + width:50%; + } + th { + border-width:1px; + border-style:solid; + border-color:black; + } + td { + border-width:1px; + border-style:solid; + border-color:black; + } + } #sidebarhelp.help { h2 { diff --git a/app/views/stop_areas/_genealogical.html.erb b/app/views/stop_areas/_genealogical.html.erb index 8be229d05..54e117053 100644 --- a/app/views/stop_areas/_genealogical.html.erb +++ b/app/views/stop_areas/_genealogical.html.erb @@ -42,7 +42,7 @@ <div class="children"> <% @stop_area.routing_stops.each do |stop| %> <div class="child"> - <%= link_to([@referential, stop], :title => t("area_types.label.#{ @stop.stop_area_type}") + " #{ @stop.name}") do %> + <%= link_to([@referential, stop], :title => t("area_types.label.#{ stop.stop_area_type}") + " #{ stop.name}") do %> <%= image_tag "map/" + stop.stop_area_type + ".png" %><span><%= stop.name %></span> <% end %> </div> diff --git a/config/environments/production.rb b/config/environments/production.rb index 765ff8227..de408f29f 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -126,9 +126,7 @@ ChouetteIhm::Application.configure do end # api key to geoportail IGN (production key link to application url root referer) - if ENV['CHOUETTE_GEOPORTAIL_KEY'].nil? - config.geoportail_api_key = "aaaaaaaaaaaaaa" - else + if !ENV['CHOUETTE_GEOPORTAIL_KEY'].nil? config.geoportail_api_key = ENV['CHOUETTE_GEOPORTAIL_KEY'] end |
