-
Notifications
You must be signed in to change notification settings - Fork 16
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
👩💻 Fix SSR styling of code-blocks #480
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
ea67e49
feat: add client-side styling for code blocks theme
agoose77 3158e71
chore: add changeset
agoose77 56948f9
Update packages/myst-to-react/src/code.tsx
agoose77 e939fda
fix: roll our own styles
agoose77 7bd4914
fix: background colour
agoose77 5a2eea7
refactor: split out new styles
agoose77 21679d3
chore: add new changeset
agoose77 e561a28
remove unused imports
rowanc1 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 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,5 @@ | ||
--- | ||
'@myst-theme/styles': patch | ||
--- | ||
|
||
Add styling for code-blocks |
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,5 @@ | ||
--- | ||
'myst-to-react': patch | ||
--- | ||
|
||
Fix themeing of code-blocks |
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,146 @@ | ||
/* | ||
BSD 3-Clause License | ||
|
||
Copyright (c) 2006, Ivan Sagalaev. | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
||
* Redistributions of source code must retain the above copyright notice, this | ||
list of conditions and the following disclaimer. | ||
|
||
* Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
|
||
* Neither the name of the copyright holder nor the names of its | ||
contributors may be used to endorse or promote products derived from | ||
this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
|
||
Visual Studio 2015 dark style | ||
Author: Nicolas LLOBERA <[email protected]> | ||
*/ | ||
|
||
.dark .hljs { | ||
background: #1e1e1e !important; | ||
color: #dcdcdc; | ||
} | ||
|
||
.dark .hljs-keyword, | ||
.dark .hljs-literal, | ||
.dark .hljs-symbol, | ||
.dark .hljs-name { | ||
color: #569cd6; | ||
} | ||
.dark .hljs-link { | ||
color: #569cd6; | ||
text-decoration: underline; | ||
} | ||
|
||
.dark .hljs-built_in, | ||
.dark .hljs-type { | ||
color: #4ec9b0; | ||
} | ||
|
||
.dark .hljs-number, | ||
.dark .hljs-class { | ||
color: #b8d7a3; | ||
} | ||
|
||
.dark .hljs-string, | ||
.dark .hljs-meta .hljs-string { | ||
color: #d69d85; | ||
} | ||
|
||
.dark .hljs-regexp, | ||
.dark .hljs-template-tag { | ||
color: #9a5334; | ||
} | ||
|
||
.dark .hljs-subst, | ||
.dark .hljs-function, | ||
.dark .hljs-title, | ||
.dark .hljs-params, | ||
.dark .hljs-formula { | ||
color: #dcdcdc; | ||
} | ||
|
||
.dark .hljs-comment, | ||
.dark .hljs-quote { | ||
color: #57a64a; | ||
font-style: italic; | ||
} | ||
|
||
.dark .hljs-doctag { | ||
color: #608b4e; | ||
} | ||
|
||
.dark .hljs-meta, | ||
.dark .hljs-meta .hljs-keyword, | ||
.dark .hljs-tag { | ||
color: #9b9b9b; | ||
} | ||
|
||
.dark .hljs-variable, | ||
.dark .hljs-template-variable { | ||
color: #bd63c5; | ||
} | ||
|
||
.dark .hljs-attr, | ||
.dark .hljs-attribute { | ||
color: #9cdcfe; | ||
} | ||
|
||
.dark .hljs-section { | ||
color: gold; | ||
} | ||
|
||
.dark .hljs-emphasis { | ||
font-style: italic; | ||
} | ||
|
||
.dark .hljs-strong { | ||
font-weight: bold; | ||
} | ||
|
||
/*.hljs-code { | ||
font-family:'Monospace'; | ||
}*/ | ||
|
||
.dark .hljs-bullet, | ||
.dark .hljs-selector-tag, | ||
.dark .hljs-selector-id, | ||
.dark .hljs-selector-class, | ||
.dark .hljs-selector-attr, | ||
.dark .hljs-selector-pseudo { | ||
color: #d7ba7d; | ||
} | ||
|
||
.dark .hljs-addition { | ||
background-color: #144212; | ||
display: inline-block; | ||
width: 100%; | ||
} | ||
|
||
.dark .hljs-deletion { | ||
background-color: #600; | ||
display: inline-block; | ||
width: 100%; | ||
} | ||
|
||
.dark .hljs-code { | ||
color: unset; | ||
} |
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,124 @@ | ||
/* | ||
BSD 3-Clause License | ||
|
||
Copyright (c) 2006, Ivan Sagalaev. | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
||
* Redistributions of source code must retain the above copyright notice, this | ||
list of conditions and the following disclaimer. | ||
|
||
* Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
|
||
* Neither the name of the copyright holder nor the names of its | ||
contributors may be used to endorse or promote products derived from | ||
this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
XCode style (c) Angel Garcia <[email protected]> | ||
*/ | ||
|
||
/* Gray DOCTYPE selectors like WebKit */ | ||
.xml .hljs-meta { | ||
color: #c0c0c0; | ||
background: transparent; | ||
} | ||
|
||
.hljs-comment, | ||
.hljs-quote { | ||
color: #007400; | ||
} | ||
|
||
.hljs-tag, | ||
.hljs-attribute, | ||
.hljs-keyword, | ||
.hljs-selector-tag, | ||
.hljs-literal, | ||
.hljs-name { | ||
color: #aa0d91; | ||
} | ||
|
||
.hljs-variable, | ||
.hljs-template-variable { | ||
color: #3f6e74; | ||
} | ||
|
||
.hljs-code, | ||
.hljs-string, | ||
.hljs-meta .hljs-string { | ||
color: #c41a16; | ||
} | ||
|
||
.hljs-regexp, | ||
.hljs-link { | ||
color: #0e0eff; | ||
} | ||
|
||
.hljs-title, | ||
.hljs-symbol, | ||
.hljs-bullet, | ||
.hljs-number { | ||
color: #1c00cf; | ||
} | ||
|
||
.hljs-section, | ||
.hljs-meta { | ||
color: #643820; | ||
} | ||
|
||
.hljs-title.class_, | ||
.hljs-class .hljs-title, | ||
.hljs-type, | ||
.hljs-built_in, | ||
.hljs-params { | ||
color: #5c2699; | ||
} | ||
|
||
.hljs-attr { | ||
color: #836c28; | ||
} | ||
|
||
.hljs-subst { | ||
color: #000; | ||
} | ||
|
||
.hljs-formula { | ||
background-color: #eee; | ||
font-style: italic; | ||
} | ||
|
||
.hljs-addition { | ||
background-color: #baeeba; | ||
} | ||
|
||
.hljs-deletion { | ||
background-color: #ffc8bd; | ||
} | ||
|
||
.hljs-selector-id, | ||
.hljs-selector-class { | ||
color: #9b703f; | ||
} | ||
|
||
.hljs-doctag, | ||
.hljs-strong { | ||
font-weight: bold; | ||
} | ||
|
||
.hljs-emphasis { | ||
font-style: italic; | ||
} |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🤮