Path: blob/main/src/vs/sessions/contrib/tunnelHost/electron-browser/media/tunnelHost.css
13406 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45.tunnel-host-toggle {6display: flex;7align-items: center;8gap: 4px;9height: 16px;10padding: 3px 6px;11cursor: pointer;12color: var(--vscode-icon-foreground);13border-radius: 4px;14}1516.tunnel-host-toggle:hover {17background-color: var(--vscode-toolbar-hoverBackground);18}1920.tunnel-host-toggle:focus-visible {21outline: 1px solid var(--vscode-focusBorder);22outline-offset: -1px;23}2425.tunnel-host-toggle .tunnel-host-icon {26display: flex;27align-items: center;28}2930.tunnel-host-toggle.sharing .tunnel-host-icon .codicon {31color: var(--vscode-problemsWarningIcon-foreground) !important;32}3334.tunnel-host-toggle.connecting .tunnel-host-icon .codicon {35animation: tunnel-host-pulse 1.5s ease-in-out infinite;36}3738@keyframes tunnel-host-pulse {390%, 100% {40opacity: 1;41}4250% {43opacity: 0.3;44}45}4647@media (prefers-reduced-motion: reduce) {48.tunnel-host-toggle.connecting .tunnel-host-icon .codicon {49animation: none;50}51}5253.tunnel-host-toast {54max-width: 0;55overflow: hidden;56white-space: nowrap;57opacity: 0;58font-size: 11px;59transition: max-width 0.3s ease-out, opacity 0.3s ease-out;60}6162.tunnel-host-toast.visible {63max-width: 300px;64opacity: 1;65}666768