notion-enhancer/repo/tweaks/client.css
dragonwocky c4e6b6b62a theme: neutral
remove ids from mod folder names
2021-10-08 12:28:44 +11:00

136 lines
3.9 KiB
CSS

/*
* notion-enhancer: tweaks
* (c) 2021 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
* (c) 2020 arecsu
* (https://notion-enhancer.github.io/) under the MIT license
*/
.enhancer--tweak-responsive_breakpoint
.notion-column_list-block
[style='display: flex;']
> div {
width: 100% !important;
}
.enhancer--tweak-responsive_breakpoint .notion-column_list-block [style='display: flex;'] {
flex-direction: column !important;
}
.enhancer--tweak-responsive_breakpoint .notion-app-inner {
--theme--page-width: 100%;
--theme--page-padding: calc(48px + env(safe-area-inset-left));
}
.enhancer--tweak-normalise_table_scroll
.notion-frame
.notion-page-content
.notion-collection_view-block,
.enhancer--tweak-normalise_table_scroll .notion-peek-renderer .notion-collection_view-block,
.enhancer--tweak-normalise_table_scroll
.notion-page-template-modal
.notion-collection_view-block {
width: 100% !important;
}
.enhancer--tweak-normalise_table_scroll
.notion-frame
.notion-page-content
.notion-collection_view-block
[style*='padding-left: 126px'],
.enhancer--tweak-normalise_table_scroll
.notion-frame
.notion-page-content
.notion-collection_view-block
[style*='padding-left: 96px'],
.enhancer--tweak-normalise_table_scroll
.notion-peek-renderer
.notion-collection_view-block
[style*='padding-left: 126px'],
.enhancer--tweak-normalise_table_scroll
.notion-peek-renderer
.notion-collection_view-block
[style*='padding-left: 96px'],
.enhancer--tweak-normalise_table_scroll
.notion-page-template-modal
.notion-collection_view-block
[style*='padding-left: 126px'],
.enhancer--tweak-normalise_table_scroll
.notion-page-template-modal
.notion-collection_view-block
[style*='padding-left: 96px'] {
padding-left: 0 !important;
}
.enhancer--tweak-normalise_table_scroll
.notion-frame
.notion-page-content
.notion-collection_view-block
[style*='padding-right: 126px'],
.enhancer--tweak-normalise_table_scroll
.notion-frame
.notion-page-content
.notion-collection_view-block
[style*='padding-right: 96px'],
.enhancer--tweak-normalise_table_scroll
.notion-peek-renderer
.notion-collection_view-block
[style*='padding-right: 126px'],
.enhancer--tweak-normalise_table_scroll
.notion-peek-renderer
.notion-collection_view-block
[style*='padding-right: 96px'],
.enhancer--tweak-normalise_table_scroll
.notion-page-template-modal
.notion-collection_view-block
[style*='padding-right: 126px'],
.enhancer--tweak-normalise_table_scroll
.notion-page-template-modal
.notion-collection_view-block
[style*='padding-right: 96px'] {
padding-right: 0 !important;
}
.enhancer--tweak-snappy_transitions * {
animation-duration: 0s !important;
transition-duration: 0s !important;
}
.enhancer--tweak-snappy_transitions .notion-selectable-halo {
opacity: 1 !important;
}
.enhancer--tweak-hide_help .notion-help-button {
display: none !important;
}
.enhancer--tweak-hide_slash_for_commands [contenteditable]:empty:after {
content: ' ' !important;
}
.enhancer--tweak-thicker_bold .notion-page-content span[style*='font-weight:600'] {
font-weight: 700 !important;
}
.enhancer--tweak-spaced_lines .notion-page-content .notion-selectable.notion-text-block {
line-height: 1.65 !important;
margin-top: 0.75em !important;
}
.enhancer--tweak-condensed_bullets .notion-selectable.notion-bulleted_list-block {
margin-top: -1.5px !important;
margin-bottom: -1.5px !important;
}
.enhancer--tweak-bracketed_links .notion-link-token span {
border-bottom: none !important;
}
.enhancer--tweak-bracketed_links .notion-link-token:before {
content: '[[';
opacity: 0.7;
transition: opacity 100ms ease-in;
}
.enhancer--tweak-bracketed_links .notion-link-token:after {
content: ']]';
opacity: 0.7;
transition: opacity 100ms ease-in;
}
.enhancer--tweak-bracketed_links .notion-link-token:hover::before,
.enhancer--tweak-bracketed_links .notion-link-token:hover::after {
opacity: 1;
}