Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions src/vs/sessions/browser/media/openInVSCode.css
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@

.monaco-enable-motion .monaco-workbench .open-in-vscode-titlebar-widget > .open-in-vscode-titlebar-widget-icon,
.monaco-workbench.monaco-enable-motion .open-in-vscode-titlebar-widget > .open-in-vscode-titlebar-widget-icon {
transition: filter 150ms ease;
transition: filter 160ms ease;
}

.monaco-reduce-motion .monaco-workbench .open-in-vscode-titlebar-widget > .open-in-vscode-titlebar-widget-icon,
Expand All @@ -82,7 +82,15 @@

.monaco-enable-motion .monaco-workbench .open-in-vscode-titlebar-widget > .open-in-vscode-titlebar-widget-label,
.monaco-workbench.monaco-enable-motion .open-in-vscode-titlebar-widget > .open-in-vscode-titlebar-widget-label {
transition: max-width 150ms ease, opacity 150ms ease, margin-left 150ms ease;
transition: max-width 160ms ease, opacity 160ms ease, margin-left 160ms ease;
transition-delay: 200ms;
}

.monaco-enable-motion .monaco-workbench .open-in-vscode-titlebar-widget:hover > .open-in-vscode-titlebar-widget-label,
.monaco-enable-motion .monaco-workbench .open-in-vscode-titlebar-widget:focus-visible > .open-in-vscode-titlebar-widget-label,
.monaco-workbench.monaco-enable-motion .open-in-vscode-titlebar-widget:hover > .open-in-vscode-titlebar-widget-label,
.monaco-workbench.monaco-enable-motion .open-in-vscode-titlebar-widget:focus-visible > .open-in-vscode-titlebar-widget-label {
transition-delay: 0ms;
}
Comment thread
mrleemurray marked this conversation as resolved.

.monaco-reduce-motion .monaco-workbench .open-in-vscode-titlebar-widget > .open-in-vscode-titlebar-widget-label,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@
background-size: contain;
/* Keep desaturated for legibility against light/dark titlebar backgrounds; brighten on hover/focus. */
filter: grayscale(1);
transition: filter 150ms ease;
}

.monaco-enable-motion .monaco-workbench .open-in-agents-titlebar-widget > .open-in-agents-titlebar-widget-icon,
.monaco-workbench.monaco-enable-motion .open-in-agents-titlebar-widget > .open-in-agents-titlebar-widget-icon {
transition: filter 160ms ease;
}

.monaco-workbench .open-in-agents-titlebar-widget:hover > .open-in-agents-titlebar-widget-icon,
Expand All @@ -57,7 +61,12 @@
font: inherit;
overflow: hidden;
white-space: nowrap;
transition: max-width 150ms ease, opacity 150ms ease, margin-left 150ms ease;
}

.monaco-enable-motion .monaco-workbench .open-in-agents-titlebar-widget > .open-in-agents-titlebar-widget-label,
.monaco-workbench.monaco-enable-motion .open-in-agents-titlebar-widget > .open-in-agents-titlebar-widget-label {
transition: max-width 160ms ease, opacity 160ms ease, margin-left 160ms ease;
transition-delay: 200ms;
}
Comment thread
mrleemurray marked this conversation as resolved.

.monaco-workbench .open-in-agents-titlebar-widget:hover,
Expand All @@ -73,6 +82,13 @@
margin-left: 6px;
}

.monaco-enable-motion .monaco-workbench .open-in-agents-titlebar-widget:hover > .open-in-agents-titlebar-widget-label,
.monaco-enable-motion .monaco-workbench .open-in-agents-titlebar-widget:focus-visible > .open-in-agents-titlebar-widget-label,
.monaco-workbench.monaco-enable-motion .open-in-agents-titlebar-widget:hover > .open-in-agents-titlebar-widget-label,
.monaco-workbench.monaco-enable-motion .open-in-agents-titlebar-widget:focus-visible > .open-in-agents-titlebar-widget-label {
transition-delay: 0ms;
Comment thread
mrleemurray marked this conversation as resolved.
}

.monaco-workbench .open-in-agents-titlebar-widget:focus-visible {
outline: 1px solid var(--vscode-focusBorder);
outline-offset: -1px;
Expand Down
Loading