Skip to content
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

Add plugin overrides for One Dark and One Light #134

Merged
merged 23 commits into from
Sep 14, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
b3aa3dd
Standardise formatting (0 in front of decimals, no unneccessary breaks)
hoonweiting Sep 12, 2021
205cdef
Add overrides for show invisibles plugin
hoonweiting Sep 12, 2021
21442a9
Remove text shadow from invisibles
hoonweiting Sep 12, 2021
41c31a5
Add overrides for toolbar plugin
hoonweiting Sep 12, 2021
3c09de7
Add overrides for match braces plugin
hoonweiting Sep 12, 2021
1595fc3
Add overrides for diff highlight plugin
hoonweiting Sep 12, 2021
235e8aa
Add overrides for command line plugin
hoonweiting Sep 12, 2021
0567b34
Fix text colour on user selection/highlight
hoonweiting Sep 12, 2021
46a5c41
Add overrides for line numbers plugin
hoonweiting Sep 12, 2021
eb1853e
Add overrides for line highlight plugin
hoonweiting Sep 12, 2021
578c1b2
Add overrides for previewers plugin
hoonweiting Sep 12, 2021
f317939
Add notes; Combine line numbers and command line
hoonweiting Sep 12, 2021
8dbc3a6
Remove underlines from urls (without plugin)
hoonweiting Sep 12, 2021
83d0ebf
Fix typos
hoonweiting Sep 12, 2021
5ae8abf
Separate `::-moz-selection` and `::selection` in diff highlight
hoonweiting Sep 12, 2021
3a00a97
Declare only `border-color` instead of `border` for previewers plugin
hoonweiting Sep 13, 2021
3b0547a
Space out buttons in toolbar
hoonweiting Sep 13, 2021
4eb2afe
Declare only `border-right-color` for line numbers and command line
hoonweiting Sep 13, 2021
1ffef8c
Adjust `border-radius` only for non-circular popups
hoonweiting Sep 13, 2021
d1e885f
Use hsl instead of hex
hoonweiting Sep 13, 2021
e55b3e8
Change gutter text colour
hoonweiting Sep 14, 2021
d592598
Increase selector specificity for plugin overrides
hoonweiting Sep 14, 2021
fa3b286
Change strategy for increasing selector specificity
hoonweiting Sep 14, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove underlines from urls (without plugin)
  • Loading branch information
hoonweiting committed Sep 12, 2021
commit 8dbc3a6811420500ac6b2cbd8c5b108ac6d75d75
8 changes: 0 additions & 8 deletions themes/prism-one-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ pre[class*="language-"] {

.token.url {
color: #56b6c2;
text-decoration: underline;
}

/* HTML overrides */
Expand All @@ -157,10 +156,6 @@ pre[class*="language-"] {
color: #abb2bf;
}

.language-css .token.url {
text-decoration: none;
}

.language-css .token.function,
.language-css .token.url > .token.function {
color: #56b6c2;
Expand Down Expand Up @@ -198,18 +193,15 @@ pre[class*="language-"] {
.language-markdown .token.url > .token.operator,
.language-markdown .token.url-reference.url > .token.string {
color: #abb2bf;
text-decoration: none;
}

.language-markdown .token.url > .token.content {
color: #61afef;
text-decoration: none;
}

.language-markdown .token.url > .token.url,
.language-markdown .token.url-reference.url {
color: #56b6c2;
text-decoration: underline;
}

.language-markdown .token.blockquote.punctuation,
Expand Down
8 changes: 0 additions & 8 deletions themes/prism-one-light.css
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ pre[class*="language-"] {

.token.url {
color: #0184bc;
text-decoration: underline;
}

/* HTML overrides */
Expand All @@ -146,10 +145,6 @@ pre[class*="language-"] {
color: #383a42;
}

.language-css .token.url {
text-decoration: none;
}

.language-css .token.function,
.language-css .token.url > .token.function {
color: #0184bc;
Expand Down Expand Up @@ -187,18 +182,15 @@ pre[class*="language-"] {
.language-markdown .token.url > .token.operator,
.language-markdown .token.url-reference.url > .token.string {
color: #383a42;
text-decoration: none;
}

.language-markdown .token.url > .token.content {
color: #4078f2;
text-decoration: none;
}

.language-markdown .token.url > .token.url,
.language-markdown .token.url-reference.url {
color: #0184bc;
text-decoration: underline;
}

.language-markdown .token.blockquote.punctuation,
Expand Down