-
Notifications
You must be signed in to change notification settings - Fork 334
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
69ba5d3
commit e6f7ceb
Showing
10 changed files
with
145 additions
and
295 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Constants separated to allow importing into inline_html.js without | ||
// bringing in other code. | ||
export const SETTINGS_KEY = 'ex_doc:settings' | ||
export const DARK_MODE_CLASS = 'dark' | ||
export const THEME_SYSTEM = 'system' | ||
export const THEME_DARK = 'dark' | ||
export const THEME_LIGHT = 'light' |
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,7 @@ | ||
export const SIDEBAR_STATE_KEY = 'sidebar_state' | ||
export const SIDEBAR_PREF_CLOSED = 'closed' | ||
export const SIDEBAR_PREF_OPEN = 'open' | ||
export const SIDEBAR_WIDTH_KEY = 'sidebar_width' | ||
export const SMALL_SCREEN_BREAKPOINT = 768 | ||
export const SIDEBAR_CLASS_OPEN = 'sidebar-open' | ||
export const SIDEBAR_CLASS_TRANSITION = 'sidebar-transition' |
Oops, something went wrong.