1
0

fix: Oauth, timeout popouts, link shorten hover (#280)

This commit is contained in:
Jade Herd
2023-12-18 12:43:07 -05:00
committed by GitHub
parent 3c16fb467e
commit fa735cd9a8
2 changed files with 22 additions and 4 deletions

View File

@@ -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;

View File

@@ -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;
}