-
Notifications
You must be signed in to change notification settings - Fork 12
DOC-261 dark theme #286
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
fantkolja
wants to merge
22
commits into
master
Choose a base branch
from
feature/doc-261-dark-theme
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
DOC-261 dark theme #286
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
72684c1
add basic switcher
fantkolja f0925c4
style switcher
fantkolja f8e0712
dark styles
fantkolja 6a526c6
dark styles
fantkolja 9a91c02
persist
fantkolja 5f13b55
persist
fantkolja 2dc467b
few style fixes
fantkolja 6b277b1
few style fixes
fantkolja 7a5ce54
few style fixes
fantkolja b831a85
few style fixes
fantkolja 0998a6a
few style fixes
fantkolja 35a80ab
Merge branch 'master' into feature/doc-261-dark-theme
fantkolja 6af52ee
few style fixes
fantkolja 9e76017
Update src/layouts/privacy.hbs
fantkolja a621d5e
Update src/layouts/privacy.hbs
fantkolja 4431cc8
Update src/partials/header-content.hbs
fantkolja c398f04
Update src/partials/header-content.hbs
fantkolja c508c34
few style fixes
fantkolja 49da2ed
Pawel review fixes
fantkolja 9e800e4
Pawel review fixes
fantkolja a86afe1
Pawel review fixes
fantkolja b15de50
Pawel review fixes
fantkolja File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,4 @@ | ||
= Privacy Policy | ||
:page-layout: privacy | ||
:!sectids: | ||
:!toc: |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,4 +1,3 @@ | ||
/*! Adapted from the GitHub style by Vasily Polovnyov <[email protected]> */ | ||
.hljs-comment, | ||
.hljs-quote { | ||
color: #998; | ||
|
@@ -8,8 +7,8 @@ | |
.hljs-keyword, | ||
.hljs-selector-tag, | ||
.hljs-subst { | ||
color: #333; | ||
font-weight: var(--monospace-font-weight-bold); | ||
color: light-dark(#333, #f1f1f1); | ||
font-weight: var(--code-font-weight-bold); | ||
} | ||
|
||
.hljs-number, | ||
|
@@ -29,7 +28,7 @@ | |
.hljs-section, | ||
.hljs-selector-id { | ||
color: #900; | ||
font-weight: var(--monospace-font-weight-bold); | ||
font-weight: var(--code-font-weight-bold); | ||
} | ||
|
||
.hljs-subst { | ||
|
@@ -38,14 +37,14 @@ | |
|
||
.hljs-type, | ||
.hljs-class .hljs-title { | ||
color: #458; | ||
font-weight: var(--monospace-font-weight-bold); | ||
color: light-dark(#458, #ba7); | ||
font-weight: var(--code-font-weight-bold); | ||
} | ||
|
||
.hljs-tag, | ||
.hljs-name, | ||
.hljs-attribute { | ||
color: #000080; | ||
color: light-dark(#000080, #ffff7f); | ||
font-weight: normal; | ||
} | ||
|
||
|
@@ -67,7 +66,7 @@ | |
|
||
.hljs-meta { | ||
color: #999; | ||
font-weight: var(--monospace-font-weight-bold); | ||
font-weight: var(--code-font-weight-bold); | ||
} | ||
|
||
.hljs-deletion { | ||
|
@@ -83,5 +82,5 @@ | |
} | ||
|
||
.hljs-strong { | ||
font-weight: var(--monospace-font-weight-bold); | ||
font-weight: var(--code-font-weight-bold); | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.