File tree Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 13
13
{% for pkg in docs %}
14
14
< li class ="index-entity entity-package section ">
15
15
< a class ="package-toggle " onclick ="toggleSection(this); ">
16
- < i class ="fas fa-plus "> </ i >
16
+ < i class ="fas fa-angle-right "> </ i >
17
17
</ a >
18
18
< a class ="entity-name " href ="{{ site.baseurl }}/api/{{ pkg.path | join: "/" }}/index.html">
19
19
{{ pkg.name }}
Original file line number Diff line number Diff line change 3
3
---
4
4
< main class ="container ">
5
5
< header >
6
- < h1 class =" above-byline " > {{ page.title }}</ h1 >
6
+ < h1 > {{ page.title }}</ h1 >
7
7
< div class ="byline ">
8
8
< time class ="date ">
9
9
< i class ="far fa-calendar-alt "> </ i >
Original file line number Diff line number Diff line change 3
3
---
4
4
< main class ="container ">
5
5
< header >
6
- < h1 class =" above-byline " > {{ page.title }}</ h1 >
6
+ < h1 > {{ page.title }}</ h1 >
7
7
< div class ="byline ">
8
8
< a href ="{{ site.projectUrl }}/edit/master/{{ site.root }}/{{ page.url }} ">
9
- < i class ="fab fa-github "> </ i >
9
+ < i class ="far fa-edit "> </ i >
10
10
Edit this page on GitHub
11
11
</ a >
12
12
</ div >
13
13
</ header >
14
- < hr />
15
14
{{ content }}
16
15
</ main >
Original file line number Diff line number Diff line change 65
65
.sidebar a {
66
66
width : 100% ;
67
67
color : var (--contrast );
68
+ transition : color .2s ease-out;
68
69
}
69
-
70
70
.sidebar a : hover {
71
71
color : var (--accent ) !important ;
72
72
}
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ nav.navbar {
11
11
}
12
12
nav .navbar-dark * {
13
13
color : white;
14
+ transition : color .2s ease-out;
14
15
}
15
16
16
17
nav .navbar-dark a : hover * , nav .navbar-dark a : focus * {
Original file line number Diff line number Diff line change 2
2
function toggleSection ( titleElement ) {
3
3
const title = $ ( titleElement ) ;
4
4
title . siblings ( "ul" ) . toggle ( ) ;
5
- title . children ( "i.fas" ) . toggleClass ( "fa-plus " ) . toggleClass ( "fa-minus " ) ;
5
+ title . children ( "i.fas" ) . toggleClass ( "fa-angle-right " ) . toggleClass ( "fa-angle-down " ) ;
6
6
}
7
7
8
8
// Unfolds the sidebar section corresponding to the current page
You can’t perform that action at this time.
0 commit comments