-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4d9116b
commit 51327e1
Showing
3 changed files
with
15 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,16 @@ | ||
/* | ||
* Materialize links that open in a new window with a right-up arrow icon | ||
* Materialize external links that open in a new window with a right-up arrow icon | ||
* (except those in the header and footer). | ||
* Works with the material and readthedocs themes. | ||
* Author: @ebouchut (https://github.com/ebouchut) | ||
* https://github.com/JakubAndrysek/mkdocs-open-in-new-tab/issues/4 | ||
*/ | ||
a[target="_blank"]::after { | ||
content: "↗"; | ||
display: inline-block; | ||
margin-left: 0.2em; | ||
width: 1em; | ||
height: 1em; | ||
|
||
.md-main a[target="_blank"]::after, | ||
.document a[target="_blank"]::after { | ||
content: "↗"; | ||
display: inline-block; | ||
margin-left: 0.2em; | ||
width: 1em; | ||
height: 1em; | ||
} |
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