Skip to content

Commit

Permalink
fix: mathjax class scope (#367)
Browse files Browse the repository at this point in the history
  • Loading branch information
arzola authored Oct 21, 2024
1 parent 8ec7fec commit 711a842
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 18,533 deletions.
45 changes: 35 additions & 10 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,48 @@
version: 2
updates:
- package-ecosystem: "npm"
# Maintain dependencies for Composer
- package-ecosystem: "composer"
directory: "/"
schedule:
interval: "monthly"
interval: "weekly"
allow:
- dependency-type: "direct"
open-pull-requests-limit: 10
- package-ecosystem: "composer"
open-pull-requests-limit: 5
versioning-strategy: "increase-if-necessary"
ignore:
- dependency-name: "*"
update-types: [ "version-update:semver-major" ]
groups:
composer-dependencies:
dependency-type: "production"
composer-dev-dependencies:
dependency-type: "development"

# Maintain dependencies for npm
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "monthly"
interval: "weekly"
allow:
- dependency-type: "direct"
open-pull-requests-limit: 10
open-pull-requests-limit: 5
versioning-strategy: "increase-if-necessary"
ignore:
- dependency-name: "*"
update-types: [ "version-update:semver-major" ]
groups:
npm-dependencies:
dependency-type: "production"
npm-dev-dependencies:
dependency-type: "development"

# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
allow:
- dependency-type: "direct"
open-pull-requests-limit: 10
interval: "weekly"
open-pull-requests-limit: 5
groups:
all-github-actions:
patterns:
- ".*"
12 changes: 8 additions & 4 deletions assets/styles/components/specials/_footnotes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@
footnote-style-position: outside;
}

.mathjax {
width: $footnote-mathjax-width;
padding-bottom: $footnote-mathjax-padding-bottom;
.footnotes {
.mathjax {
padding-bottom: $footnote-mathjax-padding-bottom;
}
}


// Footnote & Endnote number markers (in body text)

Expand Down Expand Up @@ -79,6 +79,10 @@

.footnotes {
font-size: if-map-get($footnote-font-size, $type);

.mathjax {
padding-bottom: $footnote-mathjax-padding-bottom;
}
}
}

Expand Down
1 change: 0 additions & 1 deletion assets/styles/variables/_specials.scss
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,6 @@ $footnote-blockquote-font-size: 0.95em !default;
/// @type String
$footnote-number-marker-font-size: $sup-sub-font-size !default;
$footnote-number-marker-line-height: $sup-sub-line-height !default;
$footnote-mathjax-width: 3em !default;
$footnote-mathjax-padding-bottom: 0.4em !default;

// Endnotes
Expand Down
Loading

0 comments on commit 711a842

Please sign in to comment.