Skip to content

Commit

Permalink
Fixed back-to-top button overlaying active search bar
Browse files Browse the repository at this point in the history
  • Loading branch information
squidfunk committed Jul 24, 2021
1 parent f151f71 commit b740dbc
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion material/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
{% endif %}
{% endblock %}
{% block styles %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.fe914879.min.css' | url }}">
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.1118c9be.min.css' | url }}">
{% if config.theme.palette %}
{% set palette = config.theme.palette %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/palette.ba0d045b.min.css' | url }}">
Expand Down
2 changes: 1 addition & 1 deletion src/assets/stylesheets/main/layout/_dialog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
right: px2rem(16px);
bottom: px2rem(16px);
left: initial;
z-index: 2;
z-index: 3;
min-width: px2rem(222px);
padding: px2rem(8px) px2rem(12px);
background-color: var(--md-default-fg-color);
Expand Down
2 changes: 1 addition & 1 deletion src/assets/stylesheets/main/layout/_header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
top: 0;
right: 0;
left: 0;
z-index: 2;
z-index: 3;
color: var(--md-primary-bg-color);
background-color: var(--md-primary-fg-color);
// Hack: reduce jitter by adding a transparent box shadow of the same size
Expand Down
4 changes: 2 additions & 2 deletions src/assets/stylesheets/main/layout/_sidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
position: fixed;
top: 0;
left: px2rem(-242px);
z-index: 3;
z-index: 4;
display: block;
width: px2rem(242px);
height: 100%;
Expand Down Expand Up @@ -167,7 +167,7 @@
.md-overlay {
position: fixed;
top: 0;
z-index: 3;
z-index: 4;
width: 0;
height: 0;
background-color: hsla(0, 0%, 0%, 0.54);
Expand Down

0 comments on commit b740dbc

Please sign in to comment.