Fix light mode Play button gradient border visibility
- Change gradient from white/light-gray to darker gray tones - Old: rgba(255,255,255,0.8) → rgba(200,200,200,0.3) (too subtle) - New: rgba(100,100,100,0.4) → rgba(50,50,50,0.2) (visible) - Creates subtle dark outline that's visible on white button - Matches design system glassmorphism with proper gradient borders Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -406,7 +406,7 @@ onUnmounted(() => {
|
|||||||
inset: 0;
|
inset: 0;
|
||||||
border-radius: inherit;
|
border-radius: inherit;
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(200, 200, 200, 0.3));
|
background: linear-gradient(135deg, rgba(100, 100, 100, 0.4), rgba(50, 50, 50, 0.2));
|
||||||
-webkit-mask:
|
-webkit-mask:
|
||||||
linear-gradient(#fff 0 0) content-box,
|
linear-gradient(#fff 0 0) content-box,
|
||||||
linear-gradient(#fff 0 0);
|
linear-gradient(#fff 0 0);
|
||||||
|
|||||||
Reference in New Issue
Block a user