mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
bugfixes so dracula will actually load
This commit is contained in:
parent
40b1dc0877
commit
b8b4af4f89
@ -135,9 +135,13 @@ module.exports = (store, __exports) => {
|
||||
'--theme--select_red',
|
||||
'--theme--line_text',
|
||||
'--theme--line_yellow',
|
||||
'--theme--line_yellow-text',
|
||||
'--theme--line_green',
|
||||
'--theme--line_green-text',
|
||||
'--theme--line_blue',
|
||||
'--theme--line_blue-text',
|
||||
'--theme--line_red',
|
||||
'--theme--line_red-text',
|
||||
'--theme--code_inline-text',
|
||||
'--theme--code_inline-background',
|
||||
].map((rule) => [rule, getStyle(rule)])
|
||||
|
@ -146,6 +146,7 @@ s {
|
||||
color: var(--theme--select_red);
|
||||
}
|
||||
#alerts .error {
|
||||
color: var(--theme--line_red-text);
|
||||
background: var(--theme--line_red);
|
||||
border-color: var(--theme--select_red);
|
||||
}
|
||||
@ -153,6 +154,7 @@ s {
|
||||
color: var(--theme--select_yellow);
|
||||
}
|
||||
#alerts .warning {
|
||||
color: var(--theme--line_yellow-text);
|
||||
background: var(--theme--line_yellow);
|
||||
border-color: var(--theme--select_yellow);
|
||||
}
|
||||
@ -160,6 +162,7 @@ s {
|
||||
color: var(--theme--select_blue);
|
||||
}
|
||||
#alerts .info {
|
||||
color: var(--theme--line_blue-text);
|
||||
background: var(--theme--line_blue);
|
||||
border-color: var(--theme--select_blue);
|
||||
}
|
||||
@ -168,6 +171,7 @@ s {
|
||||
color: var(--theme--select_green);
|
||||
}
|
||||
#alerts .success {
|
||||
color: var(--theme--line_green-text);
|
||||
background: var(--theme--line_green);
|
||||
border-color: var(--theme--select_green);
|
||||
}
|
||||
|
@ -1,6 +1,5 @@
|
||||
/*
|
||||
* dracula
|
||||
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
||||
* dracula-theme
|
||||
* (c) 2020 u/mimi-shahzad
|
||||
* (c) 2020 Dracula Theme
|
||||
* under the MIT license
|
||||
@ -12,11 +11,8 @@ module.exports = {
|
||||
id: '033bff54-50ba-4cec-bdc0-b2ca7e307086',
|
||||
tags: ['theme', 'dark'],
|
||||
name: 'dracula',
|
||||
desc: 'a theme based on the popular Dracula color palette originally by Zeno Rocha and friends. ',
|
||||
version: '0.1',
|
||||
author: {
|
||||
name: 'mimi-shahzad',
|
||||
link: 'https://github.com/mimi-shahzad',
|
||||
avatar: 'https://secure.gravatar.com/avatar/86c98dec3a06245dbf2291deb44441f5',
|
||||
}
|
||||
desc:
|
||||
'a theme based on the popular dracula color palette originally by zeno rocha and friends. ',
|
||||
version: '0.1.0',
|
||||
author: 'mimi-shahzad',
|
||||
};
|
||||
|
@ -1,6 +1,5 @@
|
||||
/*
|
||||
* Dracula Theme Palette
|
||||
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
||||
* dracula-theme
|
||||
* (c) 2020 u/mimi-shahzad
|
||||
* (c) 2020 Dracula Theme
|
||||
* under the MIT license
|
||||
@ -12,9 +11,9 @@
|
||||
--theme_dark--overlay: #282a36;
|
||||
--theme_dark--dragarea: #282a36;
|
||||
|
||||
--theme_dark--font_sans: -apple-system, BlinkMacSystemFont,
|
||||
'Segoe UI', Helvetica, 'Apple Color Emoji', Arial, sans-serif,
|
||||
'Segoe UI Emoji', 'Segoe UI Symbol';
|
||||
--theme_dark--font_sans: -apple-system, BlinkMacSystemFont, 'Segoe UI',
|
||||
Helvetica, 'Apple Color Emoji', Arial, sans-serif, 'Segoe UI Emoji',
|
||||
'Segoe UI Symbol';
|
||||
|
||||
--theme_dark--scrollbar: #282a36;
|
||||
--theme_dark--scrollbar_hover: #6272a4;
|
||||
@ -96,7 +95,7 @@
|
||||
--theme_dark--callout_red: var(--theme_dark--line_red);
|
||||
|
||||
--theme_dark--code_inline-text: #50fa7b;
|
||||
--theme_dark--code_inline-background:#44475a;
|
||||
--theme_dark--code_inline-background: #44475a;
|
||||
--theme_dark--code-text: var(--theme_dark--text);
|
||||
--theme_dark--code-background: #44475a;
|
||||
--theme_dark--code_function: var(--theme_dark--text_blue);
|
||||
@ -153,8 +152,7 @@
|
||||
[style*='height: 4px;']
|
||||
> .notion-selectable.notion-collection_view_page-block
|
||||
> *,
|
||||
.notion-dark-theme
|
||||
.notion-calendar-view-day[style*='background: #282a36;'],
|
||||
.notion-dark-theme .notion-calendar-view-day[style*='background: #282a36;'],
|
||||
.DayPicker-Day--today,
|
||||
.notion-dark-theme
|
||||
.DayPicker:not(.DayPicker--interactionDisabled)
|
Loading…
Reference in New Issue
Block a user