Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/pull/4686'
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhughes committed Apr 12, 2024
2 parents de18a0f + 485ac16 commit df77a93
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
3 changes: 0 additions & 3 deletions app/assets/stylesheets/common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ time[title] {
header {
height: $headerHeight;
position: relative;
z-index: 1001;
font-size: 14px;

h1, nav, nav > ul, nav > ul > li {
Expand Down Expand Up @@ -329,7 +328,6 @@ body.small-nav {

.overlay-sidebar #sidebar {
position: absolute;
z-index: 1000;
height: auto;
overflow: hidden;

Expand Down Expand Up @@ -396,7 +394,6 @@ body.small-nav {
}

#map-ui {
z-index: 9999;
width: 100%;
height: 50%;
overflow-y: scroll;
Expand Down
2 changes: 1 addition & 1 deletion app/views/layouts/_header.html.erb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<header class="d-flex bg-body text-nowrap closed">
<header class="d-flex bg-body text-nowrap closed z-3">
<h1 class="m-0 fw-semibold">
<a href="<%= root_path %>" class="text-body-emphasis text-decoration-none geolink">
<%= image_tag "osm_logo.png", :srcset => image_path("osm_logo.svg"), :alt => t("layouts.logo.alt_text"), :width => 30, :height => 30, :class => "logo" %>
Expand Down
6 changes: 3 additions & 3 deletions app/views/layouts/map.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<% end %>
<% content_for :content do %>
<div id="sidebar" class="bg-body">
<div id="sidebar" class="bg-body z-1">
<%= render :partial => "layouts/search", :locals => { :autofocus => true } %>

<div id="flash">
Expand Down Expand Up @@ -66,10 +66,10 @@
</div>
</noscript>

<div id="map-ui" class="bg-body">
<div id="map-ui" class="bg-body z-2">
</div>

<div id="map" tabindex="2">
<div id="map" tabindex="2" class="z-0">
</div>

<div id="attribution" class="d-none">
Expand Down

0 comments on commit df77a93

Please sign in to comment.