Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
{% endblock %}
{% block styles %}
{% if config.theme.variant == "modern" %}
{% set href = 'assets/stylesheets/modern/main.6f2fbb28.min.css' | url %}
{% set href = 'assets/stylesheets/modern/main.0e2b161b.min.css' | url %}
{% else %}
{% set href = 'assets/stylesheets/classic/main.5b14e6eb.min.css' | url %}
{% set href = 'assets/stylesheets/classic/main.320d0ab1.min.css' | url %}
{% endif %}
<link rel="stylesheet" href="{{ href }}">
{% if config.theme.palette %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,17 +211,6 @@
box-shadow: px2rem(-1px) 0 var(--md-default-fg-color--lightest) inset;
}

// Code block line anchors - Chrome and Safari seem to have a strange bug
// where scroll margin is not applied to anchors inside code blocks. Setting
// positioning to absolute seems to fix the problem. Interestingly, this does
// not happen in Firefox. Furthermore we must set `visibility: hidden` or
// the copy to clipboard functionality will include an empty line between
// each set of lines.
code a[id] {
position: absolute;
visibility: hidden;
}

// Code annotations can be overlaid by the code block controls. Thus, if an
// annotation is inside the last child of a line span, we need to add some
// margin to the right, so it doesn't get overlaid by the controls. This is
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,17 +211,6 @@
box-shadow: px2rem(-1px) 0 var(--md-default-fg-color--lightest) inset;
}

// Code block line anchors - Chrome and Safari seem to have a strange bug
// where scroll margin is not applied to anchors inside code blocks. Setting
// positioning to absolute seems to fix the problem. Interestingly, this does
// not happen in Firefox. Furthermore we must set `visibility: hidden` or
// the copy to clipboard functionality will include an empty line between
// each set of lines.
code a[id] {
position: absolute;
visibility: hidden;
}

// Code annotations can be overlaid by the code block controls. Thus, if an
// annotation is inside the last child of a line span, we need to add some
// margin to the right, so it doesn't get overlaid by the controls. This is
Expand Down