diff --git a/src/components/_details.scss b/src/components/_details.scss index 8fc149f..3425f1e 100644 --- a/src/components/_details.scss +++ b/src/components/_details.scss @@ -279,6 +279,14 @@ span[class*="channelMention"]:hover, color: $crust; } +span[class^="attachmentLink"]:hover { + color: $crust; + + svg path { + fill: $crust !important; + } +} + div[class^="checkbox"][class*="checked_"] { border-color: $crust !important; diff --git a/src/components/_popouts.scss b/src/components/_popouts.scss index 96fb05f..707dc6b 100644 --- a/src/components/_popouts.scss +++ b/src/components/_popouts.scss @@ -294,11 +294,9 @@ section[class*="positionContainer_"] { } > div[class^="focusLock"] > div[class^="root"] { - box-shadow: - 0 0 0 1px $surface0, + box-shadow: 0 0 0 1px $surface0, 0 2px 10px 0 hsla(0, calc(var(--saturation-factor, 1) * 0%), 0%, 0.1); - -webkit-box-shadow: - 0 0 0 1px $surface0, + -webkit-box-shadow: 0 0 0 1px $surface0, 0 2px 10px 0 hsla(0, calc(var(--saturation-factor, 1) * 0%), 0%, 0.1); } @@ -818,3 +816,15 @@ div[class^="containerTop"] div[class^="toast"] { fill: $green !important; } } + +// oauth popouts +div[class^="oauth2Wrapper"] div[class^="scope"] svg { + color: $crust; +} + +// timeout selected text +div[class^="layerContainer"] + button[class*="selectorButtonSelected"] + div[class*="selectorTextSelected"] { + color: $crust; +}