-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Streamline web 3rd party dependencies (#367)
- Complete jQuery removal for new default light theme. - Improve anchors hover area by using absolute positions - Use ES2015 syntax and newer APIs to improve code readibility - Sidebar show/hide behaviour improvements - Update highlightjs to version 9.16.2 - Update highlightjs license - Get rid of unused files which were being copied unnecessarily - Replace Bootstrap Font Awesome CDN URL to use Cloudflare standard one - Make highlighting to happen once the DOM content has been loaded - Change jQuery val name to avoid confusion now that jQuery is gone - Update auxiliary languages highlighting through highlightjs to 9.15.10 - Make createResources method to copy only necessary hljs styles, not all - Adjust docs header anchors to be shown in a more friendly way - Make main page GitHub links to be external ones - Make docs page GitHub links to be external ones - Make rest of the external links really external by opening in new tabs - Use https everywhere when valid - Fix insecure deprecated http request on maven - Fix all docs links, and start using them through the link tag - Fix bad link with two slashes in the docs - Small layout fxes for a vertically responsive behaviour on empty content - Basic background slight improvements - Browser console notice message 🤓 - Homogenize page layouts with the rest of them, make them all vertically responsive - Slight style adjustments, having navbar in all layouts looking the same - Add more semantic tags, and include a11y attributes - Improve ScalaTags layout composing by using just TypedTags Lists
- Loading branch information
1 parent
e5fee83
commit 7569db0
Showing
58 changed files
with
2,229 additions
and
2,557 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// Buttons | ||
// ---------------------------------------------- | ||
// ---------------------------------------------- | ||
.button { | ||
display: block; | ||
background: none; | ||
border: none; | ||
outline: none; | ||
text-decoration: none; | ||
position: relative; | ||
|
||
&:hover { | ||
cursor: pointer; | ||
} | ||
|
||
> img { | ||
vertical-align: bottom; | ||
} | ||
} | ||
|
||
.close { | ||
height: 28px; | ||
position: absolute; | ||
left: 0; | ||
top: 0; | ||
width: 32px; | ||
|
||
&::after, | ||
&::before { | ||
background-color: #fff; | ||
content: " "; | ||
height: 100%; | ||
left: 98%; | ||
position: absolute; | ||
top: 34%; | ||
width: 2px; | ||
} | ||
|
||
&::before { | ||
transform: rotate(45deg); | ||
} | ||
|
||
&::after { | ||
transform: rotate(-45deg); | ||
} | ||
} |
Oops, something went wrong.