-
-
Notifications
You must be signed in to change notification settings - Fork 293
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Button to toggle presentation mode in export menu (#2660)
- Loading branch information
Showing
3 changed files
with
22 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -511,6 +511,7 @@ aside#export div#container { | |
max-width: 1000px; | ||
padding-right: 10em; | ||
margin: 0 auto; | ||
position: relative; | ||
} | ||
header aside#export div#container { | ||
/* to prevent the div from taking up horizontal page when the export pane is closed. On small screen this causes overscroll on the right. */ | ||
|
@@ -732,6 +733,10 @@ aside#export button.toggle_frontmatter_edit span { | |
background-image: url("https://cdn.jsdelivr.net/gh/ionic-team/[email protected]/src/svg/newspaper-outline.svg"); | ||
filter: invert(1); | ||
} | ||
aside#export button.toggle_presentation span { | ||
background-image: url("https://cdn.jsdelivr.net/gh/ionic-team/[email protected]/src/svg/easel-outline.svg"); | ||
filter: invert(1); | ||
} | ||
nav#at_the_top:after { | ||
margin-left: auto; | ||
align-self: center; | ||
|