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
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
gem 'jekyll-redirect-from'
gem 'jekyll-sitemap'
gem 'jemoji'
gem 'just-the-docs', '0.10.0'
gem 'just-the-docs', '0.12.0'
gem 'jekyll-target-blank'

Check warning on line 20 in Gemfile

View workflow job for this annotation

GitHub Actions / runner / rubocop

[rubocop] reported by reviewdog 🐶 Gems should be sorted in an alphabetical order within their section of the Gemfile. Gem `jekyll-target-blank` should appear before `just-the-docs`. Raw Output: Gemfile:20:3: C: Bundler/OrderedGems: Gems should be sorted in an alphabetical order within their section of the Gemfile. Gem `jekyll-target-blank` should appear before `just-the-docs`.
end

# These tools are use for running tests.
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ GEM
html-pipeline (~> 2.2)
jekyll (>= 3.0, < 5.0)
json (2.7.2)
just-the-docs (0.10.0)
just-the-docs (0.12.0)
jekyll (>= 3.8.5)
jekyll-include-cache
jekyll-seo-tag (>= 2.0)
Expand Down Expand Up @@ -271,7 +271,7 @@ DEPENDENCIES
jekyll-sitemap
jekyll-target-blank
jemoji
just-the-docs (= 0.10.0)
just-the-docs (= 0.12.0)
kramdown-parser-gfm
rack
rackup
Expand Down
4 changes: 2 additions & 2 deletions _includes/nav_footer_custom.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<!-- This file adds links at the bottom of the sidebar on the left. -->

{% if site.class_archive_path %}
<section class="site-footer py-1" aria-label="Footer: site archive">
<section class="py-2" aria-label="Footer: site archive"></section>
<a href="{{ site.class_archive_path }}"
target="_blank" rel="noopener nofollow">View all course offerings
</a>
</section>
{% endif %}

{% if site.hide_color_scheme_toggle != 'true' %}
<div class="site-footer m-1">
<div class="m-1 py-4">
{% include toggle-color-scheme.html %}
</div>
{% endif %}
2 changes: 2 additions & 0 deletions _sass/berkeley/berkeley.scss
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ summary {
a[target="_blank"]:not(.btn)::after {
font-family: 'Font Awesome 6 Free';
font-weight: 900;
font-size: 0.8em;
content: "\f08e";
vertical-align: 0.15em;
padding: 0 0.25rem;
}

Expand Down
10 changes: 10 additions & 0 deletions _sass/custom/custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,13 @@ div.highlighter-rouge div.highlight {

// Place all of your course-specific CSS here.
@import './course_overrides';

// fix Note block colors for dark mode
p.note, blockquote.note {
border-left-color: #7253ed;

}
p.note::before {
color: #7253ed;
font-weight: bold;
}
Loading