Skip to content

Commit 5dbcd05

Browse files
committed
Fix tooltip in header overlaid by sticky navigation tabs
1 parent fa6c770 commit 5dbcd05

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

dist/assets/stylesheets/classic/main.59dc44d5.min.css renamed to dist/assets/stylesheets/classic/main.6f483be1.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/assets/stylesheets/modern/main.bd6182e7.min.css renamed to dist/assets/stylesheets/modern/main.09f707be.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/base.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@
4747
{% endblock %}
4848
{% block styles %}
4949
{% if config.theme.variant == "modern" %}
50-
{% set href = 'assets/stylesheets/modern/main.bd6182e7.min.css' | url %}
50+
{% set href = 'assets/stylesheets/modern/main.09f707be.min.css' | url %}
5151
{% else %}
52-
{% set href = 'assets/stylesheets/classic/main.59dc44d5.min.css' | url %}
52+
{% set href = 'assets/stylesheets/classic/main.6f483be1.min.css' | url %}
5353
{% endif %}
5454
<link rel="stylesheet" href="{{ href }}">
5555
{% if config.theme.palette %}

src/assets/stylesheets/classic/main/components/_tooltip2.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112

113113
// Tooltip is visible
114114
&--active {
115-
z-index: 2;
115+
z-index: 4;
116116
opacity: 1;
117117
transition:
118118
transform 400ms cubic-bezier(0, 1, 0.5, 1),

src/assets/stylesheets/modern/main/components/_tooltip2.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112

113113
// Tooltip is visible
114114
&--active {
115-
z-index: 2;
115+
z-index: 4;
116116
opacity: 1;
117117
transition:
118118
transform 400ms cubic-bezier(0, 1, 0.35, 1),

0 commit comments

Comments
 (0)