diff --git a/src/components/status.css b/src/components/status.css index a988219a..0ac1aafe 100644 --- a/src/components/status.css +++ b/src/components/status.css @@ -2,23 +2,23 @@ .status-reblog { background: linear-gradient( - to bottom right, + 160deg, var(--reblog-faded-color), - transparent 160px + transparent min(160px, 50%) ); } .status-reply-to { background: linear-gradient( - to bottom right, + 160deg, var(--reply-to-faded-color), - transparent 160px + transparent min(160px, 50%) ); } .status-reblog .status-reply-to { background: linear-gradient( - to top left, + -20deg, var(--reply-to-faded-color), - transparent 160px + transparent min(160px, 50%) ); } .visibility-direct { diff --git a/src/index.css b/src/index.css index 35657fb6..e1f96bd3 100644 --- a/src/index.css +++ b/src/index.css @@ -28,7 +28,7 @@ --reply-to-color: var(--orange-color); --reply-to-text-color: #b36200; --favourite-color: var(--red-color); - --reply-to-faded-color: #ffa6001a; + --reply-to-faded-color: #ffa60030; --outline-color: rgba(128, 128, 128, 0.2); --outline-hover-color: rgba(128, 128, 128, 0.7); --divider-color: rgba(0, 0, 0, 0.1); @@ -61,9 +61,9 @@ --link-light-color: #6494ed99; --link-faded-color: #6494ed88; --link-bg-hover-color: #34353799; - --reblog-faded-color: #b190f155; + --reblog-faded-color: #b190f141; --reply-to-text-color: var(--reply-to-color); - --reply-to-faded-color: #ffa60033; + --reply-to-faded-color: #ffa60027; --divider-color: rgba(255, 255, 255, 0.1); --bg-blur-color: #24252699; --backdrop-color: rgba(0, 0, 0, 0.5);