dark theme bugfixes: focused input borders, weird lines in tables

This commit is contained in:
dragonwocky 2020-07-25 11:29:39 +10:00
parent 5752a95c23
commit c246b24af2
Signed by: dragonwocky
GPG Key ID: C7A48B7846AA706D

View File

@ -250,6 +250,9 @@
.DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):not(.DayPicker-Day--value):not(.DayPicker-Day--start):not(.DayPicker-Day--end) { .DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):not(.DayPicker-Day--value):not(.DayPicker-Day--start):not(.DayPicker-Day--end) {
transition: all 200ms ease !important; transition: all 200ms ease !important;
} }
.notion-token-remove-button {
transition: opacity 200ms ease !important;
}
/* fix inline-tables in pages (?) */ /* fix inline-tables in pages (?) */
.notion-page-content .notion-collection_view-block { .notion-page-content .notion-collection_view-block {
@ -275,8 +278,10 @@
/** colours **/ /** colours **/
.notion-dark-theme ::selection, .notion-dark-theme ::selection,
.notion-dark-theme [style*='background: rgba(46, 170, 220,'], .notion-dark-theme
.notion-dark-theme [style*='background-color: rgba(46, 170, 220,'] { [style*='background: rgba(46, 170, 220,']:not([style*='background: rgba(46, 170, 220, 0)']),
.notion-dark-theme
[style*='background-color: rgba(46, 170, 220,']:not([style*='background-color: rgba(46, 170, 220, 0)']) {
background: var(--theme_dark-selected) !important; background: var(--theme_dark-selected) !important;
} }
@ -288,6 +293,10 @@
[style*='box-shadow: rgb(46, 170, 220) 0px 0px 0px 2px inset'] { [style*='box-shadow: rgb(46, 170, 220) 0px 0px 0px 2px inset'] {
box-shadow: var(--theme_dark-primary) 0px 0px 0px 2px inset !important; box-shadow: var(--theme_dark-primary) 0px 0px 0px 2px inset !important;
} }
.notion-dark-theme .notion-focusable:focus-within {
box-shadow: var(--theme_dark-primary) 0px 0px 0px 1px inset,
var(--theme_dark-primary_hover) 0px 0px 0px 2px !important;
}
.notion-dark-theme [style*='background: rgb(6, 156, 205)'] { .notion-dark-theme [style*='background: rgb(6, 156, 205)'] {
background: var(--theme_dark-primary_hover) !important; background: var(--theme_dark-primary_hover) !important;
} }