Skip to content

Commit

Permalink
more shadow tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed Jan 8, 2025
1 parent 8ad5ac5 commit 547b20d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
opacity: 0;
transition: opacity 0.2s ease-in-out;
display: flex;
box-shadow: 0 2px 8px var(--vscode-widget-shadow);
}

.chat-diff-change-content-widget.hover {
Expand Down
16 changes: 16 additions & 0 deletions src/vs/workbench/contrib/chat/browser/media/chatEditorOverlay.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,22 @@
box-shadow: 0 2px 8px var(--vscode-widget-shadow);
}

@keyframes pulse {
0% {
box-shadow: 0 2px 8px 0 var(--vscode-widget-shadow);
}
50% {
box-shadow: 0 2px 8px 4px var(--vscode-widget-shadow);
}
100% {
box-shadow: 0 2px 8px 0 var(--vscode-widget-shadow);
}
}

.chat-editor-overlay-widget.busy {
animation: pulse ease-in 2.3s infinite;
}

.chat-editor-overlay-widget .chat-editor-overlay-progress {
align-items: center;
display: none;
Expand Down

0 comments on commit 547b20d

Please sign in to comment.