Merge pull request #73 from flipio-ru/leshchenko1979/issue71

Fix disappearing list markers and width issues
This commit is contained in:
Leonardo Cavaletti 2021-09-07 08:14:41 +01:00 committed by GitHub
commit 9273cf9cb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,13 @@ div[role="button"]:not(.notion-record-icon):hover {
/* stops inline databases from overflowing horizontally */
.notion-frame {
max-width: 100%;
width: 100vw !important;
}
.notion-selectable {
max-width: 100% !important;
}
.notion-scroller .notion-collection_view-block {
width: 100% !important;
max-width: 100% !important;
@ -132,3 +138,29 @@ a[data-token-index] svg.page {
width: fit-content;
}
}
.pseudoAfter:after {
color: var(--pseudoAfter--color);
content: var(--pseudoAfter--content);
border: var(--pseudoAfter--border);
width: var(--pseudoAfter--width);
height: var(--pseudoAfter--height);
display: var(--pseudoAfter--display);
background: var(--pseudoAfter--background);
}
.pseudoBefore:before {
color: var(--pseudoBefore--color);
content: var(--pseudoBefore--content);
border: var(--pseudoBefore--border);
width: var(--pseudoBefore--width);
height: var(--pseudoBefore--height);
display: var(--pseudoBefore--display) !important;
background: var(--pseudoBefore--background);
}
.pseudoSelection ::selection {
color: var(--pseudoSelection--color);
background: var(--pseudoSelection--background);
text-shadow: var(--pseudoSelection--textShadow);
}