8267 lines
159 KiB
CSS
8267 lines
159 KiB
CSS
:root {
|
|
--accent-color: #007acc;
|
|
--accent-color-transparent: rgba(0, 122, 204, 0.25);
|
|
--vscode-editor-background: #1e1e1e;
|
|
--vscode-editor-foreground: #cccccc;
|
|
--vscode-sideBar-background: #252526;
|
|
--vscode-activityBar-background: #333333;
|
|
--vscode-activityBar-foreground: #ffffff;
|
|
--vscode-panel-background: #1e1e1e;
|
|
--vscode-titleBar-activeBackground: #252526;
|
|
--vscode-titleBar-activeForeground: #cccccc;
|
|
--vscode-statusBar-background: #007acc;
|
|
--vscode-statusBar-foreground: #ffffff;
|
|
--vscode-tab-activeBackground: #1e1e1e;
|
|
--vscode-tab-inactiveBackground: #2d2d2d;
|
|
--vscode-tab-activeForeground: #ffffff;
|
|
--vscode-tab-inactiveForeground: #969696;
|
|
--vscode-editorGroupHeader-tabsBackground: #252526;
|
|
--vscode-editorGroupHeader-tabsBorder: #1e1e1e;
|
|
--vscode-toolbar-hoverBackground: rgba(90, 93, 94, 0.31);
|
|
--vscode-toolbar-activeBackground: rgba(99, 102, 103, 0.31);
|
|
--vscode-foreground: #cccccc;
|
|
--vscode-descriptionForeground: #858585;
|
|
--vscode-panel-border: #80808059;
|
|
--vscode-sideBar-border: #80808059;
|
|
--vscode-tab-border: #252526;
|
|
--vscode-focusBorder: #007fd4;
|
|
--vscode-input-background: rgba(255, 255, 255, 0.06);
|
|
--vscode-input-border: rgba(255, 255, 255, 0.12);
|
|
--vscode-list-hoverBackground: #2a2d2e;
|
|
--vscode-list-activeSelectionBackground: #094771;
|
|
--vscode-list-activeSelectionForeground: #ffffff;
|
|
--vscode-activityBarBadge-background: #007acc;
|
|
--vscode-activityBarBadge-foreground: #ffffff;
|
|
--vscode-testing-iconPassed: #73c991;
|
|
--vscode-editorWarning-foreground: #cca700;
|
|
--vscode-input-foreground: #cccccc;
|
|
--vscode-input-placeholderForeground: #a6a6a6;
|
|
--vscode-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
--vscode-font-size: 13px;
|
|
--sidebar-width: 280px;
|
|
--assistant-width: 360px;
|
|
color-scheme: dark;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: var(--vscode-editor-background);
|
|
color: var(--vscode-foreground);
|
|
}
|
|
|
|
body {
|
|
overflow: hidden;
|
|
user-select: none;
|
|
font-family: var(--vscode-font-family);
|
|
font-size: var(--vscode-font-size);
|
|
}
|
|
|
|
body > [data-phx-session],
|
|
body > [data-phx-main] {
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 0;
|
|
}
|
|
|
|
button {
|
|
font-family: var(--vscode-font-family);
|
|
font-size: var(--vscode-font-size);
|
|
color: var(--vscode-button-foreground);
|
|
background-color: var(--vscode-button-background);
|
|
border: none;
|
|
padding: 6px 14px;
|
|
cursor: pointer;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: var(--vscode-button-hoverBackground);
|
|
}
|
|
|
|
button:focus {
|
|
outline: 1px solid var(--vscode-focusBorder);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
button.secondary {
|
|
background-color: var(--vscode-button-secondaryBackground);
|
|
}
|
|
|
|
button.secondary:hover {
|
|
background-color: #4a4d51;
|
|
}
|
|
|
|
button.compact {
|
|
padding: 4px 8px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
button.primary {
|
|
background-color: var(--vscode-button-background);
|
|
font-weight: 500;
|
|
}
|
|
|
|
button.primary:hover {
|
|
background-color: var(--vscode-button-hoverBackground);
|
|
}
|
|
|
|
button.success {
|
|
background-color: #28a745;
|
|
}
|
|
|
|
button.success:hover {
|
|
background-color: #218838;
|
|
}
|
|
|
|
button.danger {
|
|
background-color: #dc3545;
|
|
}
|
|
|
|
button.danger:hover {
|
|
background-color: #c82333;
|
|
}
|
|
|
|
button:disabled {
|
|
opacity: 0.5;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
button svg,
|
|
button svg * {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.app {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: var(--vscode-editor-background);
|
|
}
|
|
|
|
.app-main {
|
|
flex: 1;
|
|
display: flex;
|
|
overflow: hidden;
|
|
min-height: 0;
|
|
}
|
|
|
|
.app-content {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
min-width: 0;
|
|
}
|
|
|
|
.window-titlebar {
|
|
position: relative;
|
|
height: 34px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
background-color: var(--vscode-editorGroupHeader-tabsBackground);
|
|
border-bottom: 1px solid var(--vscode-editorGroupHeader-tabsBorder);
|
|
flex-shrink: 0;
|
|
app-region: drag;
|
|
-webkit-app-region: drag;
|
|
padding-right: calc(10px + var(--bds-titlebar-overlay-right, 0px));
|
|
}
|
|
|
|
.window-titlebar-menu-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 100%;
|
|
margin-left: 6px;
|
|
gap: 2px;
|
|
app-region: no-drag;
|
|
-webkit-app-region: no-drag;
|
|
z-index: 2;
|
|
}
|
|
|
|
.window-titlebar-menu-group {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
height: 100%;
|
|
}
|
|
|
|
.window-titlebar-menu-bar.is-hidden {
|
|
display: none;
|
|
}
|
|
|
|
.window-titlebar.is-mac .window-titlebar-menu-bar {
|
|
margin-left: max(var(--bds-titlebar-macos-left-inset, 78px), calc(6px + var(--bds-titlebar-overlay-left, 0px)));
|
|
}
|
|
|
|
.window-titlebar-menu-button {
|
|
height: 24px;
|
|
border: none;
|
|
background: transparent;
|
|
color: var(--vscode-titleBar-activeForeground);
|
|
padding: 0 8px;
|
|
border-radius: 4px;
|
|
font-size: 12px;
|
|
line-height: 1;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.window-titlebar-menu-button:hover,
|
|
.window-titlebar-action-button:hover {
|
|
background-color: var(--vscode-toolbar-hoverBackground);
|
|
}
|
|
|
|
.window-titlebar-menu-button.is-active {
|
|
background-color: var(--vscode-toolbar-hoverBackground);
|
|
}
|
|
|
|
.window-titlebar-menu-button:focus,
|
|
.window-titlebar-menu-button:focus-visible,
|
|
.window-titlebar-action-button:focus,
|
|
.window-titlebar-action-button:focus-visible {
|
|
outline: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.window-titlebar-menu-dropdown {
|
|
position: absolute;
|
|
top: 30px;
|
|
left: 0;
|
|
min-width: 210px;
|
|
padding: 6px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
background-color: var(--vscode-menu-background, var(--vscode-editorWidget-background));
|
|
border: 1px solid var(--vscode-menu-border, var(--vscode-panel-border));
|
|
border-radius: 6px;
|
|
box-shadow: var(--vscode-widget-shadow, 0 8px 24px rgba(0, 0, 0, 0.4));
|
|
app-region: no-drag;
|
|
-webkit-app-region: no-drag;
|
|
z-index: 10;
|
|
}
|
|
|
|
.window-titlebar-menu-item {
|
|
border: none;
|
|
background: transparent;
|
|
color: var(--vscode-menu-foreground, var(--vscode-foreground));
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 16px;
|
|
text-align: left;
|
|
border-radius: 4px;
|
|
padding: 6px 8px;
|
|
font-size: 12px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.window-titlebar-menu-item:focus,
|
|
.window-titlebar-menu-item:focus-visible {
|
|
outline: none;
|
|
box-shadow: none;
|
|
background-color: var(--vscode-toolbar-hoverBackground);
|
|
}
|
|
|
|
.window-titlebar-menu-item:hover,
|
|
.window-titlebar-menu-item.is-keyboard-active {
|
|
background-color: var(--vscode-menu-selectionBackground, var(--vscode-toolbar-hoverBackground));
|
|
}
|
|
|
|
.window-titlebar-menu-item-accelerator {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.window-titlebar-menu-separator {
|
|
height: 1px;
|
|
margin: 4px 2px;
|
|
background-color: var(--vscode-menu-separatorBackground, rgba(255, 255, 255, 0.08));
|
|
}
|
|
|
|
.window-titlebar-drag-region {
|
|
flex: 1;
|
|
height: 100%;
|
|
}
|
|
|
|
.window-titlebar-title {
|
|
position: absolute;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
max-width: 45%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--vscode-titleBar-activeForeground);
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
user-select: none;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.window-titlebar-actions {
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
margin-right: 6px;
|
|
app-region: no-drag;
|
|
-webkit-app-region: no-drag;
|
|
}
|
|
|
|
.window-titlebar-action-button {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 30px;
|
|
height: 30px;
|
|
padding: 0;
|
|
line-height: 0;
|
|
background: transparent;
|
|
border: none;
|
|
color: var(--vscode-foreground);
|
|
cursor: pointer;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.window-titlebar-sidebar-icon,
|
|
.window-titlebar-panel-icon,
|
|
.window-titlebar-assistant-icon {
|
|
width: 14px;
|
|
height: 14px;
|
|
border: 1.5px solid currentColor;
|
|
border-radius: 2px;
|
|
display: block;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.window-titlebar-sidebar-icon::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 33.3333%;
|
|
width: 1.5px;
|
|
transform: translateX(-50%);
|
|
background-color: currentColor;
|
|
}
|
|
|
|
.window-titlebar-panel-icon::before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
top: 66.6667%;
|
|
height: 1.5px;
|
|
transform: translateY(-50%);
|
|
background-color: currentColor;
|
|
}
|
|
|
|
.window-titlebar-assistant-icon::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 66.6667%;
|
|
width: 1.5px;
|
|
transform: translateX(-50%);
|
|
background-color: currentColor;
|
|
}
|
|
|
|
.window-titlebar-sidebar-pane,
|
|
.window-titlebar-panel-pane,
|
|
.window-titlebar-assistant-pane {
|
|
position: absolute;
|
|
background-color: currentColor;
|
|
transition: opacity 120ms ease;
|
|
}
|
|
|
|
.window-titlebar-sidebar-pane {
|
|
left: 0;
|
|
top: 0;
|
|
width: 33.3333%;
|
|
height: 100%;
|
|
}
|
|
|
|
.window-titlebar-panel-pane {
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 33.3333%;
|
|
}
|
|
|
|
.window-titlebar-assistant-pane {
|
|
right: 0;
|
|
top: 0;
|
|
width: 33.3333%;
|
|
height: 100%;
|
|
}
|
|
|
|
.window-titlebar-sidebar-icon.is-inactive .window-titlebar-sidebar-pane,
|
|
.window-titlebar-panel-icon.is-inactive .window-titlebar-panel-pane,
|
|
.window-titlebar-assistant-icon.is-inactive .window-titlebar-assistant-pane {
|
|
opacity: 0;
|
|
}
|
|
|
|
.activity-bar {
|
|
width: 48px;
|
|
height: 100%;
|
|
background-color: var(--vscode-activityBar-background);
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
border-right: 1px solid var(--vscode-panel-border);
|
|
}
|
|
|
|
.activity-bar-top,
|
|
.activity-bar-bottom {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 4px 0;
|
|
}
|
|
|
|
.activity-bar-item {
|
|
width: 48px;
|
|
height: 48px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: transparent;
|
|
border: none;
|
|
color: var(--vscode-activityBar-foreground);
|
|
opacity: 0.6;
|
|
cursor: pointer;
|
|
position: relative;
|
|
padding: 0;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.activity-bar-item:hover {
|
|
opacity: 1;
|
|
background: transparent;
|
|
}
|
|
|
|
.activity-bar-item.active {
|
|
opacity: 1;
|
|
}
|
|
|
|
.activity-bar-item.active::before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 2px;
|
|
background-color: var(--vscode-activityBar-foreground);
|
|
}
|
|
|
|
.activity-bar-badge {
|
|
position: absolute;
|
|
top: 8px;
|
|
right: 8px;
|
|
min-width: 16px;
|
|
height: 16px;
|
|
padding: 0 4px;
|
|
font-size: 10px;
|
|
font-weight: 600;
|
|
background-color: var(--vscode-activityBarBadge-background);
|
|
color: var(--vscode-activityBarBadge-foreground);
|
|
border-radius: 8px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.activity-bar-item svg,
|
|
.tab-icon svg {
|
|
display: block;
|
|
}
|
|
|
|
.sidebar-shell,
|
|
.assistant-sidebar-shell {
|
|
display: flex;
|
|
min-width: 0;
|
|
}
|
|
|
|
.sidebar-shell {
|
|
width: var(--sidebar-width);
|
|
}
|
|
|
|
.assistant-sidebar-shell {
|
|
width: var(--assistant-width);
|
|
}
|
|
|
|
.sidebar,
|
|
.assistant-sidebar {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: var(--vscode-sideBar-background);
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-width: 0;
|
|
}
|
|
|
|
.sidebar {
|
|
border-right: 1px solid var(--vscode-sideBar-border);
|
|
}
|
|
|
|
.assistant-sidebar {
|
|
border-left: 1px solid var(--vscode-sideBar-border);
|
|
}
|
|
|
|
.sidebar-shell.is-hidden,
|
|
.assistant-sidebar-shell.is-hidden {
|
|
width: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.sidebar-shell.is-hidden .resizable-panel-divider,
|
|
.assistant-sidebar-shell.is-hidden .resizable-panel-divider {
|
|
display: none;
|
|
}
|
|
|
|
.resizable-panel-divider {
|
|
width: 4px;
|
|
cursor: col-resize;
|
|
background: transparent;
|
|
position: relative;
|
|
}
|
|
|
|
.resizable-panel-divider:hover::after {
|
|
background-color: var(--vscode-focusBorder);
|
|
}
|
|
|
|
.resizable-panel-divider::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 1px;
|
|
width: 1px;
|
|
background-color: var(--vscode-panel-border);
|
|
}
|
|
|
|
.assistant-header {
|
|
padding: 10px 12px;
|
|
border-bottom: 1px solid var(--vscode-panel-border);
|
|
}
|
|
|
|
.assistant-header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
}
|
|
|
|
.assistant-card span,
|
|
.panel-entry span,
|
|
.editor-meta-row span,
|
|
.editor-subtitle,
|
|
.sidebar-item span {
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.sidebar-content,
|
|
.assistant-content {
|
|
flex: 1;
|
|
overflow: auto;
|
|
padding: 8px 0;
|
|
}
|
|
|
|
.sidebar-section {
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.sidebar-section-header {
|
|
padding: 0 12px 6px;
|
|
font-size: 11px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.sidebar-item {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 2px;
|
|
padding: 7px 12px;
|
|
border: none;
|
|
background: transparent;
|
|
color: var(--vscode-foreground);
|
|
cursor: pointer;
|
|
text-align: left;
|
|
}
|
|
|
|
.sidebar-item:hover {
|
|
background: var(--vscode-list-hoverBackground);
|
|
}
|
|
|
|
.sidebar-item.selected {
|
|
background: var(--vscode-list-activeSelectionBackground);
|
|
color: var(--vscode-list-activeSelectionForeground);
|
|
}
|
|
|
|
.sidebar-badge {
|
|
margin-top: 2px;
|
|
padding: 1px 6px;
|
|
border-radius: 10px;
|
|
font-size: 11px;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
.tab-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
background-color: var(--vscode-editorGroupHeader-tabsBackground);
|
|
border-bottom: 1px solid var(--vscode-editorGroupHeader-tabsBorder);
|
|
height: 35px;
|
|
overflow: hidden;
|
|
flex-shrink: 0;
|
|
position: relative;
|
|
}
|
|
|
|
.tab-bar-tabs {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 100%;
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
flex: 1;
|
|
}
|
|
|
|
.tab-bar-tabs::-webkit-scrollbar {
|
|
height: 0;
|
|
display: none;
|
|
}
|
|
|
|
.tab-bar-empty {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 100%;
|
|
padding: 0 12px;
|
|
color: var(--vscode-descriptionForeground);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.tab {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
padding: 0 6px 0 10px;
|
|
height: 100%;
|
|
min-width: 100px;
|
|
max-width: 180px;
|
|
cursor: pointer;
|
|
background-color: var(--vscode-tab-inactiveBackground);
|
|
border: none;
|
|
border-right: 1px solid var(--vscode-tab-border);
|
|
color: var(--vscode-tab-inactiveForeground);
|
|
font-size: 13px;
|
|
user-select: none;
|
|
position: relative;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.tab-select {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
min-width: 0;
|
|
flex: 1;
|
|
height: 100%;
|
|
padding: 0;
|
|
background: transparent;
|
|
border: none;
|
|
color: inherit;
|
|
font: inherit;
|
|
cursor: inherit;
|
|
}
|
|
|
|
.tab:hover {
|
|
background-color: var(--vscode-list-hoverBackground);
|
|
}
|
|
|
|
.tab.active {
|
|
background-color: var(--vscode-tab-activeBackground);
|
|
color: var(--vscode-tab-activeForeground);
|
|
}
|
|
|
|
.tab.active::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 1px;
|
|
background-color: var(--vscode-focusBorder);
|
|
}
|
|
|
|
.tab.transient .tab-title {
|
|
font-style: italic;
|
|
}
|
|
|
|
.tab-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 2px;
|
|
margin-left: auto;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.tab-dirty-indicator {
|
|
color: var(--vscode-editorWarning-foreground, #e2c08d);
|
|
font-size: 10px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.tab-icon {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
opacity: 0.85;
|
|
}
|
|
|
|
.tab-title,
|
|
.status-bar-item {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.tab-close {
|
|
width: 20px;
|
|
height: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 15px;
|
|
line-height: 1;
|
|
color: var(--vscode-icon-foreground, #c5c5c5);
|
|
border-radius: 3px;
|
|
cursor: pointer;
|
|
flex-shrink: 0;
|
|
border: none;
|
|
background: transparent;
|
|
padding: 0;
|
|
opacity: 0;
|
|
}
|
|
|
|
.tab:hover .tab-close {
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.tab.active .tab-close {
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.tab-close:hover {
|
|
opacity: 1 !important;
|
|
background-color: var(--vscode-toolbar-hoverBackground);
|
|
color: var(--vscode-tab-activeForeground);
|
|
}
|
|
|
|
.tab-close:active {
|
|
background-color: var(--vscode-toolbar-activeBackground, rgba(99, 102, 103, 0.31));
|
|
}
|
|
|
|
.tab.dirty .tab-dirty-indicator {
|
|
display: block;
|
|
}
|
|
|
|
.tab.dirty .tab-close {
|
|
display: none;
|
|
}
|
|
|
|
.tab.dirty:hover .tab-close {
|
|
display: flex;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.tab.dirty:hover .tab-dirty-indicator {
|
|
display: none;
|
|
}
|
|
|
|
.tab:focus-visible {
|
|
outline: 1px solid var(--vscode-focusBorder, #007fd4);
|
|
outline-offset: -1px;
|
|
}
|
|
|
|
.output-item-details {
|
|
margin: 4px 0 0;
|
|
padding: 8px;
|
|
border-radius: 4px;
|
|
background: rgba(255, 255, 255, 0.03);
|
|
color: inherit;
|
|
font: 11px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
white-space: pre-wrap;
|
|
user-select: text;
|
|
}
|
|
|
|
.editor-shell {
|
|
flex: 1;
|
|
min-height: 0;
|
|
overflow: auto;
|
|
background: var(--vscode-editor-background);
|
|
}
|
|
|
|
.editor-frame {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) 240px;
|
|
gap: 16px;
|
|
padding: 14px 16px;
|
|
}
|
|
|
|
.editor-main,
|
|
.editor-meta,
|
|
.panel-shell,
|
|
.assistant-card {
|
|
min-width: 0;
|
|
}
|
|
|
|
.editor-kicker {
|
|
font-size: 11px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.editor-title {
|
|
margin: 10px 0 6px;
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.editor-subtitle {
|
|
margin: 0 0 14px;
|
|
}
|
|
|
|
.editor-toolbar {
|
|
display: flex;
|
|
gap: 8px;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.editor-toolbar-button {
|
|
border: 1px solid var(--vscode-panel-border);
|
|
background: transparent;
|
|
color: var(--vscode-foreground);
|
|
padding: 4px 8px;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.editor-toolbar-button:hover,
|
|
.panel-tab:hover {
|
|
background: var(--vscode-toolbar-hoverBackground);
|
|
}
|
|
|
|
.editor-section {
|
|
padding-top: 4px;
|
|
}
|
|
|
|
.editor-section h2 {
|
|
margin: 0 0 8px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.editor-list {
|
|
margin: 0;
|
|
padding-left: 18px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.editor-list.compact li {
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.editor-meta {
|
|
border-left: 1px solid var(--vscode-panel-border);
|
|
padding-left: 16px;
|
|
}
|
|
|
|
.editor-meta-row {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 3px;
|
|
padding: 10px 0;
|
|
border-bottom: 1px solid var(--vscode-panel-border);
|
|
}
|
|
|
|
.post-editor.editor {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: var(--vscode-editor-background);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.post-editor .editor-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
padding: 0 12px;
|
|
min-height: 35px;
|
|
background-color: var(--vscode-tab-activeBackground);
|
|
border-bottom: 1px solid var(--vscode-panel-border);
|
|
}
|
|
|
|
.post-editor .editor-tabs {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 2px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.post-editor .editor-tab {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
min-width: 0;
|
|
padding: 6px 12px;
|
|
background-color: var(--vscode-tab-inactiveBackground);
|
|
color: var(--vscode-tab-inactiveForeground);
|
|
font-size: 13px;
|
|
border-radius: 4px 4px 0 0;
|
|
}
|
|
|
|
.post-editor .editor-tab.active {
|
|
background-color: var(--vscode-tab-activeBackground);
|
|
color: var(--vscode-tab-activeForeground);
|
|
}
|
|
|
|
.post-editor .editor-tab-title {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.post-editor .editor-tab-dirty {
|
|
color: var(--vscode-notificationsWarningIcon-foreground, var(--vscode-editorWarning-foreground));
|
|
font-size: 10px;
|
|
}
|
|
|
|
.post-editor .editor-tab-meta {
|
|
color: var(--vscode-descriptionForeground);
|
|
font-size: 11px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.post-editor .editor-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.post-editor .quick-actions-wrapper {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
.post-editor .quick-actions-btn {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.post-editor .quick-actions-btn-icon {
|
|
font-size: 12px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.post-editor .quick-actions-menu {
|
|
position: absolute;
|
|
top: 100%;
|
|
right: 0;
|
|
margin-top: 4px;
|
|
min-width: 280px;
|
|
background: var(--vscode-dropdown-background, #3c3c3c);
|
|
border: 1px solid var(--vscode-dropdown-border, #454545);
|
|
border-radius: 6px;
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
|
z-index: 1000;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.post-editor .quick-actions-divider {
|
|
height: 1px;
|
|
background: var(--vscode-dropdown-border, #454545);
|
|
}
|
|
|
|
.post-editor .quick-action-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 10px;
|
|
width: 100%;
|
|
padding: 10px 12px;
|
|
background: none;
|
|
border: none;
|
|
color: var(--vscode-dropdown-foreground, #ccc);
|
|
cursor: pointer;
|
|
text-align: left;
|
|
transition: background 0.1s;
|
|
}
|
|
|
|
.post-editor .quick-action-item:hover:not(:disabled) {
|
|
background: var(--vscode-list-hoverBackground, #2a2d2e);
|
|
}
|
|
|
|
.post-editor .quick-action-item:disabled {
|
|
opacity: 0.5;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.post-editor .quick-action-icon {
|
|
font-size: 16px;
|
|
flex-shrink: 0;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.post-editor .quick-action-text {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
}
|
|
|
|
.post-editor .quick-action-text strong {
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.post-editor .quick-action-text small {
|
|
font-size: 11px;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.post-editor .status-badge {
|
|
padding: 2px 8px;
|
|
border-radius: 10px;
|
|
font-size: 11px;
|
|
font-weight: 500;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.post-editor .status-badge.status-draft {
|
|
background-color: rgba(204, 167, 0, 0.2);
|
|
color: var(--vscode-notificationsWarningIcon-foreground, var(--vscode-editorWarning-foreground));
|
|
}
|
|
|
|
.post-editor .status-badge.status-published {
|
|
background-color: rgba(115, 201, 145, 0.2);
|
|
color: var(--vscode-testing-iconPassed);
|
|
}
|
|
|
|
.post-editor .status-badge.status-archived {
|
|
background-color: rgba(133, 133, 133, 0.2);
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.post-editor .auto-save-indicator {
|
|
font-size: 11px;
|
|
color: var(--vscode-descriptionForeground);
|
|
font-style: italic;
|
|
}
|
|
|
|
.post-editor .editor-content {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
padding: 16px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.post-editor .metadata-toggle-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.post-editor .metadata-toggle {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 6px 4px;
|
|
background: none;
|
|
border: none;
|
|
color: var(--vscode-descriptionForeground);
|
|
font-size: 11px;
|
|
font-weight: 500;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
cursor: pointer;
|
|
transition: color 0.15s;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.post-editor .metadata-toggle:hover {
|
|
color: var(--vscode-foreground);
|
|
}
|
|
|
|
.post-editor .metadata-toggle-chevron {
|
|
font-size: 10px;
|
|
}
|
|
|
|
.post-editor .editor-header-row {
|
|
display: flex;
|
|
gap: 16px;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.post-editor .editor-header-row.is-collapsed {
|
|
display: none;
|
|
}
|
|
|
|
.post-editor .editor-meta {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.post-editor .editor-media-panel {
|
|
width: 200px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.post-editor .editor-field {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
flex: 1;
|
|
min-width: 200px;
|
|
}
|
|
|
|
.post-editor .editor-field label,
|
|
.post-editor .editor-body label,
|
|
.post-editor .post-editor-links-label {
|
|
font-size: 11px;
|
|
font-weight: 500;
|
|
color: var(--vscode-descriptionForeground);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.post-editor .editor-checkbox-label {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
text-transform: none;
|
|
letter-spacing: 0;
|
|
color: var(--vscode-foreground);
|
|
}
|
|
|
|
.post-editor .post-editor-input,
|
|
.post-editor .post-editor-textarea {
|
|
width: 100%;
|
|
padding: 8px 10px;
|
|
border: 1px solid var(--vscode-input-border, var(--vscode-panel-border));
|
|
border-radius: 4px;
|
|
background: var(--vscode-input-background, rgba(255, 255, 255, 0.06));
|
|
color: var(--vscode-input-foreground, var(--vscode-foreground));
|
|
font: inherit;
|
|
}
|
|
|
|
.post-editor .post-editor-input.is-readonly {
|
|
opacity: 0.7;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.post-editor .post-editor-textarea {
|
|
line-height: 1.5;
|
|
resize: vertical;
|
|
}
|
|
|
|
.post-editor .post-editor-excerpt {
|
|
min-height: 96px;
|
|
}
|
|
|
|
.post-editor .tag-input-container {
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
|
|
.post-editor .tag-input-container.is-disabled {
|
|
opacity: 0.72;
|
|
}
|
|
|
|
.post-editor .tag-input-wrapper {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 6px 8px;
|
|
min-height: 38px;
|
|
border: 1px solid var(--vscode-input-border, #3c3c3c);
|
|
border-radius: 4px;
|
|
background: var(--vscode-input-background, #3c3c3c);
|
|
cursor: text;
|
|
}
|
|
|
|
.post-editor .tag-input-wrapper:focus-within {
|
|
border-color: var(--vscode-focusBorder, #007fd4);
|
|
outline: none;
|
|
}
|
|
|
|
.post-editor .tag-chip {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
padding: 3px 8px;
|
|
font-size: 0.85rem;
|
|
background: var(--vscode-badge-background, #4d4d4d);
|
|
border: 1px solid var(--vscode-widget-border, #454545);
|
|
border-radius: 4px;
|
|
color: var(--vscode-badge-foreground, #ffffff);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.post-editor .tag-chip.has-color {
|
|
border-radius: 12px;
|
|
padding: 3px 10px;
|
|
}
|
|
|
|
.post-editor .tag-chip-remove {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 16px;
|
|
height: 16px;
|
|
padding: 0;
|
|
margin-left: 2px;
|
|
border: none;
|
|
background: transparent;
|
|
color: inherit;
|
|
font-size: 1rem;
|
|
line-height: 1;
|
|
cursor: pointer;
|
|
opacity: 0.6;
|
|
border-radius: 50%;
|
|
transition: opacity 0.15s, background 0.15s;
|
|
}
|
|
|
|
.post-editor .tag-chip-remove:hover {
|
|
opacity: 1;
|
|
background: rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.post-editor .tag-chip.has-color .tag-chip-remove:hover {
|
|
background: rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.post-editor .tag-input-field {
|
|
flex: 1;
|
|
min-width: 120px;
|
|
padding: 2px 4px;
|
|
border: none;
|
|
background: transparent;
|
|
color: var(--vscode-input-foreground, #cccccc);
|
|
font-family: inherit;
|
|
font-size: 0.9rem;
|
|
outline: none;
|
|
}
|
|
|
|
.post-editor .tag-input-field::placeholder {
|
|
color: var(--vscode-input-placeholderForeground, #a6a6a6);
|
|
}
|
|
|
|
.post-editor .tag-input-field:disabled {
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.post-editor .tag-suggestions {
|
|
position: absolute;
|
|
top: 100%;
|
|
left: 0;
|
|
right: 0;
|
|
margin-top: 4px;
|
|
padding: 4px;
|
|
background: var(--vscode-dropdown-background, #3c3c3c);
|
|
border: 1px solid var(--vscode-widget-border, #454545);
|
|
border-radius: 6px;
|
|
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 0, 0, 0.2);
|
|
z-index: 1000;
|
|
max-height: 240px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.post-editor .tag-suggestion {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
width: 100%;
|
|
padding: 8px 12px;
|
|
border: none;
|
|
background: transparent;
|
|
color: var(--vscode-dropdown-foreground, #f0f0f0);
|
|
font-family: inherit;
|
|
font-size: 0.9rem;
|
|
text-align: left;
|
|
cursor: pointer;
|
|
border-radius: 4px;
|
|
transition: background 0.1s;
|
|
}
|
|
|
|
.post-editor .tag-suggestion:hover,
|
|
.post-editor .tag-suggestion.selected {
|
|
background: var(--vscode-list-hoverBackground, #2a2d2e);
|
|
}
|
|
|
|
.post-editor .tag-suggestion-color {
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: 50%;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.post-editor .tag-suggestion-name {
|
|
flex: 1;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.post-editor .tag-suggestion.create-new {
|
|
border-top: 1px solid var(--vscode-widget-border, #454545);
|
|
margin-top: 4px;
|
|
padding: 6px 8px;
|
|
padding-top: 12px;
|
|
color: var(--vscode-notificationsInfoIcon-foreground, #75beff);
|
|
}
|
|
|
|
.post-editor .tag-suggestion.create-new:first-child {
|
|
border-top: none;
|
|
margin-top: 0;
|
|
padding-top: 8px;
|
|
}
|
|
|
|
.post-editor .tag-suggestion-icon {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 18px;
|
|
height: 18px;
|
|
border: 1px dashed currentColor;
|
|
border-radius: 4px;
|
|
font-size: 0.9rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.post-editor .editor-field-row {
|
|
display: flex;
|
|
gap: 12px;
|
|
width: 100%;
|
|
}
|
|
|
|
.post-editor .editor-language-row {
|
|
display: flex;
|
|
gap: 6px;
|
|
align-items: center;
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
.post-editor .editor-language-row select {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.post-editor .editor-translations-flags {
|
|
display: flex;
|
|
gap: 4px;
|
|
align-items: center;
|
|
flex: 1;
|
|
min-width: 0;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.post-editor .editor-translation-flag {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 24px;
|
|
height: 24px;
|
|
padding: 0;
|
|
border: 1px solid transparent;
|
|
border-radius: 999px;
|
|
background: transparent;
|
|
font-size: 14px;
|
|
line-height: 1;
|
|
cursor: pointer;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.post-editor .editor-translation-flag.status-draft {
|
|
opacity: 0.82;
|
|
}
|
|
|
|
.post-editor .editor-translation-flag.status-archived {
|
|
opacity: 0.45;
|
|
filter: grayscale(0.35);
|
|
}
|
|
|
|
.post-editor .editor-translation-flag.active {
|
|
border-color: var(--vscode-testing-iconQueued, #cca700);
|
|
background: color-mix(in srgb, var(--vscode-testing-iconQueued, #cca700) 14%, transparent);
|
|
}
|
|
|
|
.post-editor .editor-translation-flag:hover {
|
|
background: color-mix(in srgb, var(--vscode-list-hoverBackground) 75%, transparent);
|
|
}
|
|
|
|
.post-editor .post-editor-links-panel,
|
|
.post-editor .post-editor-side-panel {
|
|
padding: 12px;
|
|
border: 1px solid var(--vscode-panel-border);
|
|
border-radius: 8px;
|
|
background: color-mix(in srgb, var(--vscode-editor-background) 82%, white 3%);
|
|
}
|
|
|
|
.post-editor .post-editor-side-panel-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
}
|
|
|
|
.post-editor .post-editor-links-columns {
|
|
display: flex;
|
|
gap: 18px;
|
|
align-items: flex-start;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.post-editor .post-editor-links-columns > div {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.post-editor .post-editor-empty,
|
|
.post-editor .post-editor-media-meta {
|
|
color: var(--vscode-descriptionForeground);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.post-editor .post-editor-media-list {
|
|
list-style: none;
|
|
margin: 10px 0 0;
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.post-editor .post-editor-media-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
padding: 8px 10px;
|
|
border-radius: 6px;
|
|
background: rgba(255, 255, 255, 0.03);
|
|
}
|
|
|
|
.post-editor .editor-body {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
min-height: 320px;
|
|
}
|
|
|
|
.post-editor .editor-toolbar {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto 1fr;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.post-editor .editor-toolbar-left {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.post-editor .editor-toolbar-center {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.post-editor .editor-toolbar-right {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
gap: 6px;
|
|
min-width: 0;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.post-editor .editor-mode-toggle {
|
|
display: flex;
|
|
gap: 4px;
|
|
}
|
|
|
|
.post-editor .editor-mode-toggle button,
|
|
.post-editor .editor-toolbar-button {
|
|
padding: 4px 12px;
|
|
font-size: 12px;
|
|
border-radius: 4px;
|
|
border: none;
|
|
cursor: pointer;
|
|
transition: background-color 0.15s;
|
|
}
|
|
|
|
.post-editor .editor-mode-toggle button {
|
|
background-color: var(--vscode-button-secondaryBackground, rgba(255, 255, 255, 0.08));
|
|
color: var(--vscode-button-secondaryForeground, var(--vscode-foreground));
|
|
}
|
|
|
|
.post-editor .editor-mode-toggle button:hover,
|
|
.post-editor .editor-toolbar-button:hover {
|
|
background-color: var(--vscode-button-secondaryHoverBackground, var(--vscode-toolbar-hoverBackground));
|
|
}
|
|
|
|
.post-editor .editor-mode-toggle button.active {
|
|
background-color: var(--vscode-button-background, var(--accent-color));
|
|
color: var(--vscode-button-foreground, #ffffff);
|
|
}
|
|
|
|
.post-editor .editor-toolbar-button {
|
|
background: var(--vscode-button-secondaryBackground, rgba(255, 255, 255, 0.08));
|
|
color: var(--vscode-button-secondaryForeground, var(--vscode-foreground));
|
|
}
|
|
|
|
.post-editor .editor-excerpt-panel.is-collapsed {
|
|
display: none;
|
|
}
|
|
|
|
.post-editor .gallery-button {
|
|
padding: 4px 12px;
|
|
font-size: 12px;
|
|
border-radius: 4px;
|
|
background-color: var(--vscode-button-secondaryBackground);
|
|
color: var(--vscode-button-secondaryForeground);
|
|
border: none;
|
|
cursor: pointer;
|
|
transition: background-color 0.15s;
|
|
}
|
|
|
|
.post-editor .gallery-button:hover {
|
|
background-color: var(--vscode-button-secondaryHoverBackground);
|
|
}
|
|
|
|
.post-editor .insert-post-link-button,
|
|
.post-editor .insert-media-button {
|
|
padding: 4px 8px;
|
|
font-size: 14px;
|
|
border-radius: 4px;
|
|
background-color: var(--vscode-button-secondaryBackground);
|
|
color: var(--vscode-button-secondaryForeground);
|
|
border: none;
|
|
cursor: pointer;
|
|
transition: background-color 0.15s;
|
|
}
|
|
|
|
.post-editor .insert-post-link-button:hover,
|
|
.post-editor .insert-media-button:hover {
|
|
background-color: var(--vscode-button-secondaryHoverBackground);
|
|
}
|
|
|
|
.post-editor .editor-preview {
|
|
flex: 1;
|
|
background-color: var(--vscode-input-background);
|
|
border-radius: 4px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
min-height: 240px;
|
|
padding: 0;
|
|
border: none;
|
|
}
|
|
|
|
.post-editor .editor-preview {
|
|
flex: 1;
|
|
min-height: 240px;
|
|
padding: 14px;
|
|
background-color: var(--vscode-input-background);
|
|
border: 1px solid var(--vscode-panel-border);
|
|
border-radius: 4px;
|
|
overflow: auto;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.post-editor .editor-preview-frame {
|
|
width: 100%;
|
|
min-height: 520px;
|
|
border: none;
|
|
background: #ffffff;
|
|
}
|
|
|
|
.post-editor .post-editor-markdown-surface {
|
|
position: relative;
|
|
flex: 1;
|
|
min-height: 380px;
|
|
border: 1px solid var(--vscode-input-border, var(--vscode-panel-border));
|
|
border-radius: 4px;
|
|
background: var(--vscode-input-background);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.post-editor .monaco-editor-shell,
|
|
.scripts-monaco.monaco-editor-shell,
|
|
.templates-monaco.monaco-editor-shell {
|
|
position: relative;
|
|
}
|
|
|
|
.monaco-editor-instance {
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 100%;
|
|
}
|
|
|
|
.post-editor .monaco-editor-instance {
|
|
min-height: 380px;
|
|
}
|
|
|
|
.scripts-monaco .monaco-editor-instance,
|
|
.templates-monaco .monaco-editor-instance {
|
|
min-height: 420px;
|
|
}
|
|
|
|
.monaco-editor-input {
|
|
position: absolute;
|
|
width: 1px;
|
|
height: 1px;
|
|
padding: 0;
|
|
margin: -1px;
|
|
overflow: hidden;
|
|
clip: rect(0, 0, 0, 0);
|
|
white-space: pre;
|
|
border: 0;
|
|
}
|
|
|
|
.post-editor .editor-footer {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16px;
|
|
padding: 8px 16px;
|
|
border-top: 1px solid var(--vscode-panel-border);
|
|
background-color: var(--vscode-sideBar-background);
|
|
color: var(--vscode-descriptionForeground);
|
|
font-size: 12px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
@media (max-width: 980px) {
|
|
.post-editor .editor-header,
|
|
.post-editor .metadata-toggle-header,
|
|
.post-editor .editor-toolbar {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.post-editor .editor-header-row,
|
|
.post-editor .editor-field-row,
|
|
.post-editor .post-editor-links-columns {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.post-editor .editor-media-panel {
|
|
width: 100%;
|
|
}
|
|
|
|
.post-editor .editor-toolbar-right,
|
|
.post-editor .editor-actions {
|
|
justify-content: flex-start;
|
|
}
|
|
}
|
|
|
|
.panel-shell {
|
|
height: 200px;
|
|
border-top: 1px solid var(--vscode-panel-border);
|
|
background: var(--vscode-panel-background);
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.panel-shell.is-hidden {
|
|
display: none;
|
|
}
|
|
|
|
.editor-toolbar-button.is-destructive {
|
|
color: #f48771;
|
|
}
|
|
|
|
.shell-overlay-backdrop,
|
|
.gallery-overlay-backdrop {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(0, 0, 0, 0.68);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
pointer-events: auto;
|
|
z-index: 10000;
|
|
}
|
|
|
|
.shell-overlay-dismiss {
|
|
position: absolute;
|
|
inset: 0;
|
|
border: none;
|
|
background: transparent;
|
|
padding: 0;
|
|
}
|
|
|
|
.gallery-overlay {
|
|
position: relative;
|
|
width: min(980px, calc(100vw - 48px));
|
|
max-height: calc(100vh - 48px);
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
background: #1e1e1e;
|
|
border: 1px solid #3c3c3c;
|
|
border-radius: 8px;
|
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
|
|
z-index: 1;
|
|
}
|
|
|
|
.insert-modal-media-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
|
|
gap: 12px;
|
|
padding: 16px;
|
|
}
|
|
|
|
.insert-modal-media-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
border: 1px solid #3c3c3c;
|
|
border-radius: 8px;
|
|
background: #252526;
|
|
color: inherit;
|
|
padding: 10px;
|
|
text-align: left;
|
|
}
|
|
|
|
.insert-modal-media-thumb {
|
|
width: 100%;
|
|
min-height: 112px;
|
|
border-radius: 6px;
|
|
object-fit: cover;
|
|
background: rgba(255, 255, 255, 0.04);
|
|
}
|
|
|
|
.insert-modal-media-title {
|
|
font-weight: 600;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.language-picker-options {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.language-picker-option {
|
|
width: 100%;
|
|
display: grid;
|
|
grid-template-columns: 28px 1fr auto;
|
|
gap: 12px;
|
|
align-items: center;
|
|
border: none;
|
|
border-radius: 4px;
|
|
padding: 12px 16px;
|
|
background: transparent;
|
|
color: inherit;
|
|
text-align: left;
|
|
}
|
|
|
|
.language-picker-label,
|
|
.language-picker-status,
|
|
.lightbox-counter {
|
|
color: #9d9d9d;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.lightbox-counter {
|
|
margin-top: 4px;
|
|
}
|
|
|
|
@media (max-width: 720px) {
|
|
.insert-modal-media-grid {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
}
|
|
|
|
.panel-header {
|
|
height: 35px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 0 8px;
|
|
background-color: var(--vscode-sideBar-background);
|
|
border-bottom: 1px solid var(--vscode-panel-border);
|
|
}
|
|
|
|
.panel-tabs {
|
|
display: flex;
|
|
align-items: stretch;
|
|
height: 100%;
|
|
}
|
|
|
|
.panel-tab {
|
|
border: none;
|
|
background: transparent;
|
|
color: var(--vscode-descriptionForeground);
|
|
padding: 0 12px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.panel-tab.active {
|
|
color: var(--vscode-tab-activeForeground);
|
|
}
|
|
|
|
.panel-close {
|
|
background: transparent;
|
|
border: none;
|
|
color: var(--vscode-descriptionForeground);
|
|
font-size: 18px;
|
|
width: 24px;
|
|
height: 24px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
border-radius: 4px;
|
|
padding: 0;
|
|
}
|
|
|
|
.panel-close:hover {
|
|
background-color: var(--vscode-list-hoverBackground);
|
|
color: var(--vscode-editor-foreground);
|
|
}
|
|
|
|
.panel-content {
|
|
flex: 1;
|
|
overflow: auto;
|
|
padding: 12px 14px;
|
|
}
|
|
|
|
.panel-entry,
|
|
.assistant-card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
padding: 10px 12px;
|
|
border-bottom: 1px solid var(--vscode-panel-border);
|
|
}
|
|
|
|
.output-list,
|
|
.git-log-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.task-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.task-entry-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
}
|
|
|
|
.task-status {
|
|
font-size: 11px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.task-status-running {
|
|
color: var(--vscode-terminal-ansiGreen, var(--vscode-statusBar-foreground));
|
|
}
|
|
|
|
.task-status-pending {
|
|
color: var(--vscode-terminal-ansiYellow, var(--vscode-statusBar-foreground));
|
|
}
|
|
|
|
.panel-empty-state {
|
|
min-height: 100%;
|
|
justify-content: center;
|
|
}
|
|
|
|
.status-bar {
|
|
height: 22px;
|
|
background: var(--vscode-statusBar-background);
|
|
color: var(--vscode-statusBar-foreground);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 0 8px;
|
|
font-size: 12px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.status-bar-left,
|
|
.status-bar-right {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.status-bar-left {
|
|
flex-shrink: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.status-shell-controls {
|
|
display: flex;
|
|
align-items: stretch;
|
|
gap: 2px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.status-shell-toggle-button {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 22px;
|
|
height: 100%;
|
|
padding: 0;
|
|
line-height: 0;
|
|
background: transparent;
|
|
border: none;
|
|
color: inherit;
|
|
cursor: pointer;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.status-shell-toggle-button:hover {
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.status-shell-toggle-button:focus,
|
|
.status-shell-toggle-button:focus-visible {
|
|
outline: none;
|
|
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
|
|
}
|
|
|
|
.status-shell-toggle-button .window-titlebar-sidebar-icon,
|
|
.status-shell-toggle-button .window-titlebar-panel-icon,
|
|
.status-shell-toggle-button .window-titlebar-assistant-icon {
|
|
width: 12px;
|
|
height: 12px;
|
|
}
|
|
|
|
.status-bar-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 0 8px;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.status-bar-item:hover {
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.status-bar-task-button {
|
|
border: none;
|
|
background: transparent;
|
|
color: inherit;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.status-bar-item.theme-badge {
|
|
border: 1px solid rgba(255, 255, 255, 0.18);
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.status-bar-item.language-badge {
|
|
border: 1px solid rgba(255, 255, 255, 0.18);
|
|
border-radius: 3px;
|
|
gap: 4px;
|
|
}
|
|
|
|
.status-bar-item.offline-badge {
|
|
border: none;
|
|
background: transparent;
|
|
color: inherit;
|
|
cursor: pointer;
|
|
opacity: 0.4;
|
|
font-size: 13px;
|
|
padding: 0 4px;
|
|
}
|
|
|
|
.status-bar-item.offline-badge.active {
|
|
background-color: rgba(255, 196, 0, 0.28);
|
|
opacity: 1;
|
|
}
|
|
|
|
.project-selector {
|
|
position: relative;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.project-selector-trigger {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 0 8px;
|
|
height: 22px;
|
|
background: transparent;
|
|
border: none;
|
|
color: var(--vscode-statusBar-foreground);
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
text-align: left;
|
|
}
|
|
|
|
.project-selector-trigger:hover {
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.project-selector-trigger:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.project-icon,
|
|
.dropdown-arrow,
|
|
.project-check-icon {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.project-name,
|
|
.project-item-name {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.project-name {
|
|
max-width: 180px;
|
|
}
|
|
|
|
.dropdown-arrow {
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.project-dropdown {
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: 100%;
|
|
min-width: 220px;
|
|
margin-bottom: 4px;
|
|
background-color: #252526;
|
|
border: 1px solid rgba(255, 255, 255, 0.16);
|
|
border-radius: 4px;
|
|
box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
|
|
z-index: 1000;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.project-dropdown-header {
|
|
padding: 8px 12px;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
color: var(--vscode-descriptionForeground);
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
.project-list {
|
|
max-height: 200px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.project-item {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
gap: 8px;
|
|
padding: 8px 12px;
|
|
border: none;
|
|
background: transparent;
|
|
color: inherit;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.project-item:hover,
|
|
.project-item.active {
|
|
background-color: var(--vscode-list-hoverBackground);
|
|
}
|
|
|
|
.project-item.active .project-check-icon {
|
|
color: #89d185;
|
|
}
|
|
|
|
.project-dropdown-footer {
|
|
padding: 8px;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.12);
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
.create-project-btn,
|
|
.existing-project-btn {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 6px;
|
|
width: 100%;
|
|
padding: 6px 12px;
|
|
background-color: rgba(255, 255, 255, 0.12);
|
|
color: inherit;
|
|
border: none;
|
|
border-radius: 4px;
|
|
font-size: 12px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.create-project-btn:hover,
|
|
.existing-project-btn:hover {
|
|
background-color: rgba(255, 255, 255, 0.18);
|
|
}
|
|
|
|
.status-bar-language-select {
|
|
background: transparent;
|
|
border: none;
|
|
color: inherit;
|
|
font: inherit;
|
|
padding: 0;
|
|
}
|
|
|
|
.status-bar-language-select:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.status-bar-count {
|
|
font-size: 11px;
|
|
opacity: 0.85;
|
|
}
|
|
|
|
.status-bar-item.brand {
|
|
font-weight: 600;
|
|
}
|
|
|
|
@media (max-width: 960px) {
|
|
.editor-frame {
|
|
grid-template-columns: minmax(0, 1fr);
|
|
}
|
|
|
|
.editor-meta {
|
|
border-left: none;
|
|
border-top: 1px solid var(--vscode-panel-border);
|
|
padding-left: 0;
|
|
padding-top: 10px;
|
|
}
|
|
}
|
|
|
|
.editor-section ul {
|
|
margin: 12px 0 0;
|
|
padding-left: 18px;
|
|
}
|
|
|
|
.editor-toolbar {
|
|
display: flex;
|
|
gap: 10px;
|
|
}
|
|
|
|
.editor-toolbar button {
|
|
padding: 9px 14px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 999px;
|
|
background: var(--panel-3);
|
|
color: var(--ink);
|
|
}
|
|
|
|
.editor-meta {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
.editor-meta-card,
|
|
.assistant-card,
|
|
.panel-entry {
|
|
padding: 16px;
|
|
}
|
|
|
|
.sidebar-header,
|
|
.assistant-header,
|
|
.panel-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
padding: 16px 18px;
|
|
border-bottom: 1px solid var(--line);
|
|
}
|
|
|
|
.sidebar-content,
|
|
.assistant-content,
|
|
.panel-content {
|
|
flex: 1;
|
|
overflow: auto;
|
|
min-height: 0;
|
|
}
|
|
|
|
.sidebar-section {
|
|
padding: 14px 14px 0;
|
|
}
|
|
|
|
.overlay-root {
|
|
position: fixed;
|
|
inset: 0;
|
|
pointer-events: none;
|
|
z-index: 10000;
|
|
}
|
|
|
|
.overlay-root:empty {
|
|
display: none;
|
|
}
|
|
|
|
.editor-shared-actions {
|
|
position: relative;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.ai-suggestions-modal-backdrop,
|
|
.insert-modal-backdrop,
|
|
.language-picker-modal-backdrop,
|
|
.confirm-delete-modal-backdrop,
|
|
.confirm-dialog-overlay,
|
|
.gallery-overlay,
|
|
.lightbox-overlay {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(0, 0, 0, 0.68);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.ai-suggestions-modal,
|
|
.insert-modal,
|
|
.language-picker-modal,
|
|
.confirm-delete-modal,
|
|
.confirm-dialog,
|
|
.gallery-overlay-content {
|
|
background: #1e1e1e;
|
|
border: 1px solid #3c3c3c;
|
|
border-radius: 8px;
|
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
.ai-suggestions-modal,
|
|
.language-picker-modal,
|
|
.confirm-delete-modal,
|
|
.confirm-dialog {
|
|
width: min(680px, calc(100vw - 32px));
|
|
max-height: calc(100vh - 48px);
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.insert-modal {
|
|
width: min(680px, calc(100vw - 32px));
|
|
max-height: calc(100vh - 48px);
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.gallery-overlay-content {
|
|
width: min(980px, calc(100vw - 48px));
|
|
max-height: calc(100vh - 48px);
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.ai-suggestions-modal-header,
|
|
.language-picker-modal-header,
|
|
.confirm-delete-modal-header,
|
|
.insert-modal-header,
|
|
.gallery-overlay-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
padding: 16px 20px;
|
|
border-bottom: 1px solid #3c3c3c;
|
|
}
|
|
|
|
.insert-modal-header {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
gap: 12px;
|
|
}
|
|
|
|
.insert-modal-header.media-header-only {
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
|
|
.ai-suggestions-modal-header h2,
|
|
.language-picker-modal-header h2,
|
|
.confirm-delete-modal-header h2,
|
|
.gallery-overlay-header h2,
|
|
.insert-modal-title,
|
|
.confirm-dialog h3 {
|
|
margin: 0;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.ai-suggestions-modal-close,
|
|
.confirm-delete-modal-close,
|
|
.gallery-overlay-close,
|
|
.shared-popover-close,
|
|
.lightbox-close {
|
|
border: none;
|
|
background: transparent;
|
|
color: #c5c5c5;
|
|
cursor: pointer;
|
|
font-size: 20px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.ai-suggestions-modal-body,
|
|
.language-picker-modal-body,
|
|
.confirm-delete-modal-body {
|
|
padding: 20px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.ai-suggestions-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
}
|
|
|
|
.ai-suggestion-item {
|
|
display: flex;
|
|
gap: 12px;
|
|
padding: 16px;
|
|
border: 1px solid #3c3c3c;
|
|
border-radius: 6px;
|
|
background: #252526;
|
|
}
|
|
|
|
.ai-suggestion-checkbox {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.ai-suggestion-checkbox input {
|
|
position: absolute;
|
|
opacity: 0;
|
|
}
|
|
|
|
.checkmark {
|
|
width: 20px;
|
|
height: 20px;
|
|
border: 2px solid #555555;
|
|
border-radius: 4px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: #1e1e1e;
|
|
}
|
|
|
|
.ai-suggestion-checkbox input:checked + .checkmark,
|
|
.ai-suggestion-checkbox input:checked ~ .checkmark {
|
|
background: #0078d4;
|
|
border-color: #0078d4;
|
|
}
|
|
|
|
.ai-suggestion-checkbox input:checked + .checkmark::after,
|
|
.ai-suggestion-checkbox input:checked ~ .checkmark::after {
|
|
content: "✓";
|
|
color: #ffffff;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.ai-suggestion-content {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.ai-suggestion-label {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-bottom: 8px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.ai-suggestion-has-value,
|
|
.language-picker-badge,
|
|
.insert-modal-similarity-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
padding: 2px 6px;
|
|
border-radius: 999px;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
color: #c5c5c5;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.ai-suggestion-comparison {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
|
|
gap: 12px;
|
|
align-items: center;
|
|
}
|
|
|
|
.ai-suggestion-column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
padding: 10px 12px;
|
|
border-radius: 6px;
|
|
background: rgba(255, 255, 255, 0.03);
|
|
}
|
|
|
|
.ai-suggestion-column.muted {
|
|
color: #9d9d9d;
|
|
}
|
|
|
|
.ai-suggestion-column.highlighted {
|
|
border: 1px solid rgba(0, 122, 204, 0.4);
|
|
color: #ffffff;
|
|
}
|
|
|
|
.ai-suggestion-column-label {
|
|
font-size: 11px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
}
|
|
|
|
.ai-suggestion-arrow {
|
|
color: #9d9d9d;
|
|
}
|
|
|
|
.ai-suggestions-modal-footer,
|
|
.confirm-delete-modal-footer,
|
|
.confirm-dialog-actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 10px;
|
|
padding: 16px 20px;
|
|
border-top: 1px solid #3c3c3c;
|
|
}
|
|
|
|
.button-cancel,
|
|
.button-delete,
|
|
.button-apply,
|
|
.confirm-dialog-actions button,
|
|
.insert-modal-submit,
|
|
.language-picker-row,
|
|
.shared-popover-entry,
|
|
.colour-swatch {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.button-cancel,
|
|
.confirm-dialog-actions button,
|
|
.insert-modal-submit {
|
|
border: 1px solid #4c4c4c;
|
|
border-radius: 4px;
|
|
padding: 8px 14px;
|
|
background: transparent;
|
|
color: #f0f0f0;
|
|
}
|
|
|
|
.button-apply,
|
|
.confirm-dialog-actions .primary,
|
|
.insert-modal-submit {
|
|
background: #0e639c;
|
|
border-color: #0e639c;
|
|
}
|
|
|
|
.button-delete {
|
|
border: none;
|
|
border-radius: 4px;
|
|
padding: 8px 14px;
|
|
background: #c73c3c;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.insert-modal-tabs {
|
|
display: flex;
|
|
margin: 0 -20px;
|
|
}
|
|
|
|
.insert-modal-tab {
|
|
flex: 1;
|
|
border: none;
|
|
border-bottom: 2px solid transparent;
|
|
background: transparent;
|
|
color: #9d9d9d;
|
|
padding: 10px 16px;
|
|
}
|
|
|
|
.insert-modal-tab.active {
|
|
color: #ffffff;
|
|
border-bottom-color: #0e639c;
|
|
background: #252526;
|
|
}
|
|
|
|
.insert-modal-search {
|
|
border-bottom: 1px solid #3c3c3c;
|
|
}
|
|
|
|
.insert-modal-input,
|
|
.shared-popover-input {
|
|
width: 100%;
|
|
border: none;
|
|
background: transparent;
|
|
color: #f0f0f0;
|
|
padding: 14px 20px;
|
|
font: inherit;
|
|
}
|
|
|
|
.menu-editor-view {
|
|
padding: 1rem;
|
|
height: 100%;
|
|
flex: 1;
|
|
min-height: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.75rem;
|
|
overflow: hidden;
|
|
background: var(--vscode-editor-background);
|
|
}
|
|
|
|
.menu-editor-header {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.menu-editor-header h2 {
|
|
margin: 0;
|
|
}
|
|
|
|
.menu-editor-header p {
|
|
margin: 0.25rem 0 0;
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.menu-editor-main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 0;
|
|
flex: 1;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.menu-editor-tree-wrap {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
border: 1px solid var(--vscode-panel-border);
|
|
border-radius: 6px;
|
|
background: var(--vscode-editor-background);
|
|
padding: 0.5rem;
|
|
min-height: 0;
|
|
}
|
|
|
|
.menu-editor-toolbar {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.2rem;
|
|
margin-bottom: 0.5rem;
|
|
padding-bottom: 0.4rem;
|
|
border-bottom: 1px solid var(--vscode-panel-border);
|
|
}
|
|
|
|
.menu-editor-tool {
|
|
width: 1.8rem;
|
|
height: 1.8rem;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 1px solid transparent;
|
|
border-radius: 4px;
|
|
background: transparent;
|
|
color: var(--vscode-foreground);
|
|
cursor: pointer;
|
|
padding: 0;
|
|
}
|
|
|
|
.menu-editor-tool:hover:not(:disabled) {
|
|
background: var(--vscode-toolbar-hoverBackground);
|
|
border-color: var(--vscode-panel-border);
|
|
}
|
|
|
|
.menu-editor-tool:disabled {
|
|
opacity: 0.45;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.menu-editor-tree-shell {
|
|
flex: 1;
|
|
min-height: 0;
|
|
overflow: auto;
|
|
}
|
|
|
|
.menu-editor-tree-level {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.menu-editor-tree-item {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.menu-editor-row {
|
|
--menu-editor-indent: calc(var(--menu-editor-depth) * 1rem);
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 0.5rem;
|
|
padding: 0.3rem 0.45rem 0.3rem calc(0.4rem + var(--menu-editor-indent));
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
position: relative;
|
|
}
|
|
|
|
.menu-editor-row.is-selected {
|
|
background: var(--vscode-list-activeSelectionBackground);
|
|
color: var(--vscode-list-activeSelectionForeground);
|
|
}
|
|
|
|
.menu-editor-row.is-dragging {
|
|
opacity: 0.45;
|
|
}
|
|
|
|
.menu-editor-row.is-drop-before::before,
|
|
.menu-editor-row.is-drop-after::after {
|
|
content: "";
|
|
position: absolute;
|
|
left: calc(0.4rem + var(--menu-editor-indent));
|
|
right: 0.45rem;
|
|
height: 2px;
|
|
background: var(--vscode-focusBorder);
|
|
}
|
|
|
|
.menu-editor-row.is-drop-before::before {
|
|
top: 0;
|
|
}
|
|
|
|
.menu-editor-row.is-drop-after::after {
|
|
bottom: 0;
|
|
}
|
|
|
|
.menu-editor-row.is-drop-inside {
|
|
box-shadow: inset 0 0 0 1px var(--vscode-focusBorder);
|
|
background: var(--vscode-list-hoverBackground);
|
|
}
|
|
|
|
.menu-editor-row-handle {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 1rem;
|
|
min-width: 1rem;
|
|
color: var(--vscode-descriptionForeground);
|
|
cursor: grab;
|
|
user-select: none;
|
|
}
|
|
|
|
.menu-editor-row-handle:active {
|
|
cursor: grabbing;
|
|
}
|
|
|
|
.menu-editor-row-kind {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 1rem;
|
|
min-width: 1rem;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.menu-editor-row-title {
|
|
flex: 1;
|
|
min-width: 0;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.menu-editor-row-title.is-editing {
|
|
white-space: normal;
|
|
overflow: visible;
|
|
text-overflow: clip;
|
|
}
|
|
|
|
.menu-editor-entry-form {
|
|
display: block;
|
|
}
|
|
|
|
.menu-editor-inline-input {
|
|
width: 100%;
|
|
border: 1px solid var(--vscode-focusBorder);
|
|
border-radius: 4px;
|
|
background: var(--vscode-input-background);
|
|
color: var(--vscode-input-foreground);
|
|
padding: 0.25rem 0.45rem;
|
|
min-height: 1.8rem;
|
|
}
|
|
|
|
.menu-editor-inline-search {
|
|
margin-top: 0.5rem;
|
|
border-top: 1px solid var(--vscode-panel-border);
|
|
padding-top: 0.5rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.4rem;
|
|
max-height: 18rem;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.menu-editor-inline-search-head {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.menu-editor-inline-search-head strong {
|
|
display: block;
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.menu-editor-inline-search-head span {
|
|
color: var(--vscode-descriptionForeground);
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
.menu-editor-inline-actions {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.menu-editor-inline-action {
|
|
border: 1px solid var(--vscode-button-border, transparent);
|
|
border-radius: 4px;
|
|
background: var(--vscode-button-secondaryBackground);
|
|
color: var(--vscode-button-secondaryForeground);
|
|
padding: 0.2rem 0.5rem;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.menu-editor-inline-action:hover {
|
|
background: var(--vscode-button-secondaryHoverBackground);
|
|
}
|
|
|
|
.menu-editor-picker-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.35rem;
|
|
max-height: 16rem;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.menu-editor-picker-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 100%;
|
|
border: 1px solid var(--vscode-panel-border);
|
|
border-radius: 4px;
|
|
background: var(--vscode-input-background);
|
|
color: var(--vscode-input-foreground);
|
|
padding: 0.45rem 0.55rem;
|
|
text-align: left;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.menu-editor-picker-item:hover {
|
|
border-color: var(--vscode-focusBorder);
|
|
background: var(--vscode-list-hoverBackground);
|
|
}
|
|
|
|
.menu-editor-picker-item small,
|
|
.menu-editor-picker-state {
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.menu-editor-empty {
|
|
color: var(--vscode-descriptionForeground);
|
|
padding: 0.5rem 0.25rem;
|
|
}
|
|
|
|
@media (max-width: 720px) {
|
|
.menu-editor-inline-search-head {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.menu-editor-inline-actions {
|
|
width: 100%;
|
|
justify-content: flex-start;
|
|
flex-wrap: wrap;
|
|
}
|
|
}
|
|
|
|
[data-testid="media-editor"] {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: var(--vscode-editor-background);
|
|
overflow: hidden;
|
|
}
|
|
|
|
[data-testid="media-editor"] .editor-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
padding: 0 12px;
|
|
min-height: 35px;
|
|
background-color: var(--vscode-tab-activeBackground);
|
|
border-bottom: 1px solid var(--vscode-panel-border);
|
|
}
|
|
|
|
[data-testid="media-editor"] .editor-tabs {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 2px;
|
|
min-width: 0;
|
|
}
|
|
|
|
[data-testid="media-editor"] .editor-tab {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
min-width: 0;
|
|
padding: 6px 12px;
|
|
background-color: var(--vscode-tab-inactiveBackground);
|
|
color: var(--vscode-tab-inactiveForeground);
|
|
font-size: 13px;
|
|
border-radius: 4px 4px 0 0;
|
|
}
|
|
|
|
[data-testid="media-editor"] .editor-tab.active {
|
|
background-color: var(--vscode-tab-activeBackground);
|
|
color: var(--vscode-tab-activeForeground);
|
|
}
|
|
|
|
[data-testid="media-editor"] .editor-tab-title {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
[data-testid="media-editor"] .editor-tab-dirty {
|
|
color: var(--vscode-notificationsWarningIcon-foreground, var(--vscode-editorWarning-foreground));
|
|
font-size: 10px;
|
|
}
|
|
|
|
[data-testid="media-editor"] .editor-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
[data-testid="media-editor"] .editor-actions button {
|
|
padding: 4px 10px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
[data-testid="media-editor"] .editor-actions button.danger:hover {
|
|
background-color: var(--vscode-notificationsErrorIcon-foreground);
|
|
}
|
|
|
|
[data-testid="media-editor"] .auto-save-indicator {
|
|
font-size: 11px;
|
|
color: var(--vscode-descriptionForeground);
|
|
font-style: italic;
|
|
}
|
|
|
|
[data-testid="media-editor"] .quick-actions-wrapper {
|
|
position: relative;
|
|
}
|
|
|
|
[data-testid="media-editor"] .quick-actions-btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
[data-testid="media-editor"] .quick-actions-btn-icon {
|
|
font-size: 12px;
|
|
line-height: 1;
|
|
}
|
|
|
|
[data-testid="media-editor"] .quick-actions-menu {
|
|
position: absolute;
|
|
top: calc(100% + 4px);
|
|
right: 0;
|
|
width: 280px;
|
|
background: var(--vscode-dropdown-background, #252526);
|
|
border: 1px solid var(--vscode-dropdown-border, #454545);
|
|
border-radius: 6px;
|
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
|
|
overflow: hidden;
|
|
z-index: 30;
|
|
}
|
|
|
|
[data-testid="media-editor"] .quick-actions-divider {
|
|
height: 1px;
|
|
background: var(--vscode-dropdown-border, #454545);
|
|
}
|
|
|
|
[data-testid="media-editor"] .quick-action-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
width: 100%;
|
|
padding: 10px 12px;
|
|
background: none;
|
|
border: none;
|
|
color: var(--vscode-dropdown-foreground, #ccc);
|
|
cursor: pointer;
|
|
text-align: left;
|
|
transition: background 0.1s;
|
|
}
|
|
|
|
[data-testid="media-editor"] .quick-action-item:hover:not(:disabled) {
|
|
background: var(--vscode-list-hoverBackground, #2a2d2e);
|
|
}
|
|
|
|
[data-testid="media-editor"] .quick-action-item:disabled {
|
|
opacity: 0.5;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
[data-testid="media-editor"] .quick-action-icon {
|
|
font-size: 16px;
|
|
flex-shrink: 0;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
[data-testid="media-editor"] .quick-action-text {
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
min-width: 0;
|
|
}
|
|
|
|
[data-testid="media-editor"] .quick-action-text strong {
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
[data-testid="media-editor"] .quick-action-text small {
|
|
font-size: 11px;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
[data-testid="media-editor"] .editor-content {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 16px;
|
|
overflow-y: auto;
|
|
gap: 16px;
|
|
}
|
|
|
|
[data-testid="media-editor"] > .editor-content.media-editor {
|
|
flex-direction: row;
|
|
align-items: stretch;
|
|
gap: 24px;
|
|
}
|
|
|
|
[data-testid="media-editor"] .editor-field {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
[data-testid="media-editor"] .editor-field label {
|
|
font-size: 11px;
|
|
font-weight: 500;
|
|
color: var(--vscode-descriptionForeground);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
[data-testid="media-editor"] .editor-field-row {
|
|
display: flex;
|
|
gap: 12px;
|
|
width: 100%;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
[data-testid="media-editor"] .post-editor-input,
|
|
[data-testid="media-editor"] .post-editor-textarea {
|
|
width: 100%;
|
|
padding: 8px 10px;
|
|
border: 1px solid var(--vscode-input-border, var(--vscode-panel-border));
|
|
border-radius: 4px;
|
|
background: var(--vscode-input-background, rgba(255, 255, 255, 0.06));
|
|
color: var(--vscode-input-foreground, var(--vscode-foreground));
|
|
font: inherit;
|
|
}
|
|
|
|
[data-testid="media-editor"] .post-editor-input.disabled,
|
|
[data-testid="media-editor"] .post-editor-input:disabled {
|
|
opacity: 0.6;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
[data-testid="media-editor"] .post-editor-textarea {
|
|
line-height: 1.5;
|
|
resize: vertical;
|
|
}
|
|
|
|
[data-testid="media-editor"] .media-preview {
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-color: var(--vscode-input-background);
|
|
border-radius: 8px;
|
|
min-height: 300px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
[data-testid="media-editor"] .media-preview-placeholder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 12px;
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
[data-testid="media-editor"] .media-preview-image {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
align-self: stretch;
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 0;
|
|
padding: 16px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
[data-testid="media-editor"] .media-preview-image img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
[data-testid="media-editor"] .media-details {
|
|
width: 320px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
[data-testid="media-editor"] .media-editor-details-form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
[data-testid="media-editor"] .media-details textarea {
|
|
resize: vertical;
|
|
}
|
|
|
|
[data-testid="media-editor"] .linked-posts-section label {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
[data-testid="media-editor"] .add-link-btn {
|
|
background: var(--vscode-button-secondaryBackground);
|
|
border: none;
|
|
color: var(--vscode-button-secondaryForeground);
|
|
padding: 2px 8px;
|
|
border-radius: 3px;
|
|
cursor: pointer;
|
|
font-size: 11px;
|
|
}
|
|
|
|
[data-testid="media-editor"] .add-link-btn:hover {
|
|
background: var(--vscode-button-secondaryHoverBackground);
|
|
}
|
|
|
|
[data-testid="media-editor"] .post-picker {
|
|
background: var(--vscode-dropdown-background);
|
|
border: 1px solid var(--vscode-dropdown-border);
|
|
border-radius: 4px;
|
|
margin-top: 8px;
|
|
max-height: 250px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
[data-testid="media-editor"] .post-picker-search {
|
|
padding: 8px;
|
|
border-bottom: 1px solid var(--vscode-dropdown-border);
|
|
position: sticky;
|
|
top: 0;
|
|
background: var(--vscode-dropdown-background);
|
|
}
|
|
|
|
[data-testid="media-editor"] .post-picker-search input {
|
|
width: 100%;
|
|
padding: 6px 10px;
|
|
background: var(--vscode-input-background);
|
|
border: 1px solid var(--vscode-input-border);
|
|
border-radius: 3px;
|
|
color: var(--vscode-input-foreground);
|
|
font-size: 12px;
|
|
}
|
|
|
|
[data-testid="media-editor"] .post-picker-search input:focus {
|
|
outline: none;
|
|
border-color: var(--vscode-focusBorder);
|
|
}
|
|
|
|
[data-testid="media-editor"] .post-picker-list {
|
|
padding: 4px;
|
|
}
|
|
|
|
[data-testid="media-editor"] .post-picker-item {
|
|
width: 100%;
|
|
padding: 6px 8px;
|
|
cursor: pointer;
|
|
border: none;
|
|
border-radius: 3px;
|
|
background: transparent;
|
|
color: inherit;
|
|
font-size: 12px;
|
|
text-align: left;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
[data-testid="media-editor"] .post-picker-item:hover {
|
|
background: var(--vscode-list-hoverBackground);
|
|
}
|
|
|
|
[data-testid="media-editor"] .post-picker-more {
|
|
padding: 6px 8px;
|
|
color: var(--vscode-descriptionForeground);
|
|
font-size: 11px;
|
|
font-style: italic;
|
|
}
|
|
|
|
[data-testid="media-editor"] .no-posts,
|
|
[data-testid="media-editor"] .no-linked-posts {
|
|
padding: 12px 8px;
|
|
color: var(--vscode-descriptionForeground);
|
|
font-size: 12px;
|
|
font-style: italic;
|
|
}
|
|
|
|
[data-testid="media-editor"] .linked-posts-list {
|
|
margin-top: 8px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
}
|
|
|
|
[data-testid="media-editor"] .linked-post-item {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 6px 8px;
|
|
background: var(--vscode-sideBar-background);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
[data-testid="media-editor"] .linked-post-title,
|
|
[data-testid="media-editor"] .linked-post-link {
|
|
flex: 1;
|
|
min-width: 0;
|
|
border: none;
|
|
background: transparent;
|
|
padding: 0;
|
|
color: inherit;
|
|
text-align: left;
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
[data-testid="media-editor"] .linked-post-title:hover,
|
|
[data-testid="media-editor"] .linked-post-link:hover {
|
|
color: var(--vscode-textLink-foreground);
|
|
text-decoration: underline;
|
|
}
|
|
|
|
[data-testid="media-editor"] .linked-post-item .unlink-btn {
|
|
background: none;
|
|
border: none;
|
|
color: var(--vscode-descriptionForeground);
|
|
cursor: pointer;
|
|
padding: 0 4px;
|
|
font-size: 14px;
|
|
opacity: 0;
|
|
transition: opacity 0.1s;
|
|
}
|
|
|
|
[data-testid="media-editor"] .linked-post-item:hover .unlink-btn {
|
|
opacity: 1;
|
|
}
|
|
|
|
[data-testid="media-editor"] .linked-post-item .unlink-btn:hover {
|
|
color: var(--vscode-errorForeground);
|
|
}
|
|
|
|
.translation-modal-backdrop {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(0, 0, 0, 0.68);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
pointer-events: auto;
|
|
z-index: 10001;
|
|
}
|
|
|
|
.translation-modal {
|
|
width: min(640px, calc(100vw - 32px));
|
|
background: #1e1e1e;
|
|
border: 1px solid #3c3c3c;
|
|
border-radius: 8px;
|
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
.translation-modal-header,
|
|
.translation-modal-footer {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
padding: 16px 20px;
|
|
}
|
|
|
|
.translation-modal-header {
|
|
border-bottom: 1px solid #3c3c3c;
|
|
}
|
|
|
|
.translation-modal-footer {
|
|
border-top: 1px solid #3c3c3c;
|
|
justify-content: flex-end;
|
|
gap: 10px;
|
|
}
|
|
|
|
.translation-modal-body {
|
|
padding: 20px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 14px;
|
|
}
|
|
|
|
.translation-modal-close {
|
|
border: none;
|
|
background: transparent;
|
|
color: #c5c5c5;
|
|
cursor: pointer;
|
|
font-size: 20px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.settings-view-shell,
|
|
.style-view,
|
|
.tags-view-shell,
|
|
.scripts-view-shell,
|
|
.templates-view-shell,
|
|
.chat-panel {
|
|
height: 100%;
|
|
background: var(--panel-1, #1e1e1e);
|
|
}
|
|
|
|
.settings-view,
|
|
.tags-view,
|
|
.style-view {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.settings-header,
|
|
.style-view-header,
|
|
.tags-view-header,
|
|
.chat-panel-header {
|
|
padding: 18px 20px;
|
|
border-bottom: 1px solid var(--line, #3c3c3c);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 16px;
|
|
}
|
|
|
|
.settings-search input {
|
|
width: min(320px, 40vw);
|
|
}
|
|
|
|
.settings-content,
|
|
.tags-view-content {
|
|
padding: 20px;
|
|
overflow: auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 18px;
|
|
}
|
|
|
|
.setting-section,
|
|
.tags-section {
|
|
border: 1px solid var(--line, #3c3c3c);
|
|
border-radius: 12px;
|
|
background: var(--panel-2, #252526);
|
|
}
|
|
|
|
.setting-section-header,
|
|
.tags-section-header {
|
|
padding: 14px 16px;
|
|
border-bottom: 1px solid var(--line, #3c3c3c);
|
|
}
|
|
|
|
.setting-section-content,
|
|
.tags-section-content {
|
|
padding: 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 14px;
|
|
}
|
|
|
|
.setting-row,
|
|
.tag-form-row {
|
|
display: grid;
|
|
grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
|
|
gap: 16px;
|
|
align-items: start;
|
|
}
|
|
|
|
.tag-form-row {
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
}
|
|
|
|
.setting-label {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.setting-control,
|
|
.setting-input-group {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
align-items: center;
|
|
}
|
|
|
|
.setting-actions {
|
|
padding: 0 16px 16px;
|
|
display: flex;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.style-theme-picker {
|
|
padding: 20px;
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
|
gap: 14px;
|
|
}
|
|
|
|
.style-theme-option {
|
|
border: 1px solid var(--line, #3c3c3c);
|
|
background: var(--panel-2, #252526);
|
|
border-radius: 14px;
|
|
padding: 14px;
|
|
text-align: left;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.style-theme-option.selected {
|
|
border-color: var(--accent-color);
|
|
box-shadow: 0 0 0 1px var(--accent-color);
|
|
}
|
|
|
|
.style-theme-swatch {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
.style-theme-tones {
|
|
display: grid;
|
|
grid-template-columns: 2fr 1fr 1fr;
|
|
gap: 8px;
|
|
}
|
|
|
|
.style-theme-tone {
|
|
height: 42px;
|
|
border-radius: 10px;
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
.style-apply-row {
|
|
padding: 0 20px 20px;
|
|
display: flex;
|
|
gap: 12px;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.style-preview-container {
|
|
padding: 0 20px 20px;
|
|
flex: 1;
|
|
min-height: 0;
|
|
}
|
|
|
|
.style-preview-frame {
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 420px;
|
|
border: 1px solid var(--line, #3c3c3c);
|
|
border-radius: 14px;
|
|
background: #ffffff;
|
|
}
|
|
|
|
.tag-cloud {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 12px;
|
|
}
|
|
|
|
.tag-cloud-item {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 8px 12px;
|
|
border-radius: 999px;
|
|
border: 1px solid var(--line, #3c3c3c);
|
|
background: var(--panel-1, #1e1e1e);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.tag-cloud-item.selected {
|
|
border-color: var(--accent-color);
|
|
box-shadow: 0 0 0 1px var(--accent-color);
|
|
}
|
|
|
|
.scripts-view-shell,
|
|
.templates-view-shell {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.scripts-view,
|
|
.templates-view {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.scripts-header,
|
|
.templates-header {
|
|
border-bottom: 1px solid var(--line, #3c3c3c);
|
|
}
|
|
|
|
.scripts-meta-row,
|
|
.templates-meta-row {
|
|
padding: 16px 20px;
|
|
border-bottom: 1px solid var(--line, #3c3c3c);
|
|
}
|
|
|
|
.editor-field-row {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 12px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.scripts-editor,
|
|
.templates-editor {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 0;
|
|
flex: 1;
|
|
}
|
|
|
|
.scripts-monaco,
|
|
.templates-monaco {
|
|
flex: 1;
|
|
min-height: 0;
|
|
padding: 0 20px 20px;
|
|
}
|
|
|
|
.code-editor-textarea {
|
|
font: 13px/1.5 "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
|
|
}
|
|
|
|
.editor-footer {
|
|
padding: 12px 20px 20px;
|
|
display: flex;
|
|
gap: 16px;
|
|
flex-wrap: wrap;
|
|
border-top: 1px solid var(--line, #3c3c3c);
|
|
}
|
|
|
|
.chat-panel {
|
|
height: 100%;
|
|
min-height: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: var(--vscode-editor-background, var(--panel-1, #1e1e1e));
|
|
}
|
|
|
|
.chat-panel-title {
|
|
flex: 1;
|
|
min-width: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
overflow: visible;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: var(--vscode-foreground, inherit);
|
|
}
|
|
|
|
.chat-panel-title-main {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.chat-panel-header {
|
|
position: relative;
|
|
padding: 12px 16px;
|
|
border-bottom: 1px solid var(--vscode-editorGroup-border, var(--line, #3c3c3c));
|
|
background: var(--vscode-sideBar-background, var(--panel-1, #1e1e1e));
|
|
}
|
|
|
|
.chat-panel-header-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.chat-model-selector-button,
|
|
.chat-model-selector-option {
|
|
border: 1px solid var(--line, #3c3c3c);
|
|
border-radius: 10px;
|
|
background: var(--panel-2, #252526);
|
|
color: inherit;
|
|
}
|
|
|
|
.chat-model-selector-button {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 8px 12px;
|
|
color: inherit;
|
|
border: 1px solid var(--vscode-input-border, var(--line, #3c3c3c));
|
|
border-radius: 4px;
|
|
background: transparent;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.chat-model-selector-button:hover,
|
|
.chat-model-selector-option:hover {
|
|
background: var(--vscode-list-hoverBackground, rgba(255, 255, 255, 0.06));
|
|
}
|
|
|
|
.chat-model-selector-caret {
|
|
font-size: 10px;
|
|
position: absolute;
|
|
top: calc(100% - 4px);
|
|
right: 20px;
|
|
min-width: 220px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 4px 8px;
|
|
font-size: 12px;
|
|
color: var(--vscode-descriptionForeground, inherit);
|
|
padding: 10px;
|
|
border: 1px solid var(--line, #3c3c3c);
|
|
border-radius: 12px;
|
|
background: var(--panel-1, #1e1e1e);
|
|
top: calc(100% + 4px);
|
|
right: 16px;
|
|
min-width: 180px;
|
|
max-height: 300px;
|
|
overflow-y: auto;
|
|
|
|
.chat-model-selector-option {
|
|
gap: 4px;
|
|
padding: 6px;
|
|
border: 1px solid var(--vscode-dropdown-border, var(--line, #3c3c3c));
|
|
border-radius: 4px;
|
|
background: var(--vscode-dropdown-background, var(--panel-1, #1e1e1e));
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
|
|
z-index: 100;
|
|
}
|
|
|
|
.chat-messages {
|
|
padding: 20px;
|
|
padding: 8px 12px;
|
|
display: flex;
|
|
font-size: 12px;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
}
|
|
background: var(--vscode-list-activeSelectionBackground, rgba(0, 122, 204, 0.18));
|
|
color: var(--vscode-list-activeSelectionForeground, inherit);
|
|
.chat-message {
|
|
display: flex;
|
|
}
|
|
flex: 1;
|
|
min-height: 0;
|
|
overflow-y: auto;
|
|
padding: 16px;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.chat-message-content {
|
|
max-width: min(760px, 100%);
|
|
.chat-surface-scroll {
|
|
min-height: 0;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
border: 1px solid var(--line, #3c3c3c);
|
|
border-radius: 14px;
|
|
gap: 12px;
|
|
padding: 14px 16px;
|
|
background: var(--panel-2, #252526);
|
|
}
|
|
flex-direction: row-reverse;
|
|
}
|
|
|
|
.chat-message-avatar {
|
|
flex-shrink: 0;
|
|
width: 32px;
|
|
height: 32px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 18px;
|
|
border-radius: 50%;
|
|
background: var(--vscode-input-background, var(--panel-2, #252526));
|
|
.chat-message.user .chat-message-content {
|
|
background: rgba(0, 122, 204, 0.15);
|
|
.chat-message.user .chat-message-avatar {
|
|
background: var(--vscode-button-background, var(--accent-color));
|
|
margin-bottom: 10px;
|
|
}
|
|
.chat-message-content {
|
|
max-width: 80%;
|
|
min-width: 100px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
.chat-message.user .chat-message-content {
|
|
text-align: right;
|
|
}
|
|
|
|
.chat-message-header {
|
|
display: flex;
|
|
align-items: center;
|
|
border: 1px solid var(--line, #3c3c3c);
|
|
margin-bottom: 4px;
|
|
font-size: 12px;
|
|
}
|
|
.chat-message.user .chat-message-header {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.chat-message-role {
|
|
padding: 16px;
|
|
font-weight: 500;
|
|
color: var(--vscode-descriptionForeground, inherit);
|
|
}
|
|
|
|
.streaming-indicator {
|
|
color: var(--vscode-button-background, var(--accent-color));
|
|
animation: pulse 1s infinite;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0%,
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
|
|
50% {
|
|
opacity: 0.3;
|
|
}
|
|
|
|
.chat-tool-surface-table th,
|
|
.chat-message-text {
|
|
padding: 10px 14px;
|
|
border-radius: 12px 12px 12px 2px;
|
|
background: var(--vscode-input-background, var(--panel-2, #252526));
|
|
color: var(--vscode-foreground, inherit);
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
user-select: text;
|
|
cursor: text;
|
|
}
|
|
|
|
.chat-message.user .chat-message-text {
|
|
border-radius: 12px 12px 2px 12px;
|
|
background: var(--vscode-button-background, var(--accent-color));
|
|
color: var(--vscode-button-foreground, #ffffff);
|
|
}
|
|
|
|
.chat-message.assistant .chat-message-text {
|
|
white-space: normal;
|
|
}
|
|
|
|
.chat-message.streaming .chat-message-text {
|
|
background: linear-gradient(
|
|
90deg,
|
|
var(--vscode-input-background, var(--panel-2, #252526)) 0%,
|
|
var(--vscode-list-hoverBackground, rgba(255, 255, 255, 0.06)) 50%,
|
|
var(--vscode-input-background, var(--panel-2, #252526)) 100%
|
|
);
|
|
background-size: 200% 100%;
|
|
animation: shimmer 2s infinite;
|
|
}
|
|
|
|
@keyframes shimmer {
|
|
0% {
|
|
background-position: 200% 0;
|
|
}
|
|
|
|
100% {
|
|
background-position: -200% 0;
|
|
}
|
|
}
|
|
|
|
.chat-thinking-indicator {
|
|
display: flex;
|
|
gap: 4px;
|
|
padding: 12px 16px;
|
|
}
|
|
|
|
.chat-thinking-indicator span {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
background: var(--vscode-descriptionForeground, #8a8a8a);
|
|
animation: bounce 1.4s infinite ease-in-out both;
|
|
}
|
|
|
|
.chat-thinking-indicator span:nth-child(1) {
|
|
animation-delay: -0.32s;
|
|
}
|
|
|
|
.chat-thinking-indicator span:nth-child(2) {
|
|
animation-delay: -0.16s;
|
|
}
|
|
|
|
@keyframes bounce {
|
|
0%,
|
|
80%,
|
|
100% {
|
|
transform: scale(0);
|
|
}
|
|
|
|
40% {
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
|
|
.chat-tool-markers {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
margin-bottom: 8px;
|
|
padding: 8px 10px;
|
|
background: var(--vscode-textBlockQuote-background, rgba(127, 127, 127, 0.1));
|
|
border-left: 3px solid var(--vscode-textLink-foreground, #3794ff);
|
|
border-radius: 0 4px 4px 0;
|
|
}
|
|
|
|
.chat-tool-marker {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
color: var(--vscode-descriptionForeground, inherit);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.chat-tool-marker.completed .chat-tool-marker-icon {
|
|
color: var(--vscode-testing-iconPassed, #89d185);
|
|
}
|
|
|
|
.chat-tool-marker.pending .chat-tool-marker-icon {
|
|
color: var(--vscode-textLink-foreground, #3794ff);
|
|
}
|
|
|
|
.chat-tool-marker-args {
|
|
opacity: 0.85;
|
|
}
|
|
|
|
.chat-inline-surface,
|
|
.chat-tool-surface {
|
|
width: min(720px, calc(100% - 44px));
|
|
margin-left: 44px;
|
|
padding: 14px;
|
|
border: 1px solid var(--vscode-editorGroup-border, var(--line, #3c3c3c));
|
|
border-radius: 12px;
|
|
background: var(--vscode-sideBar-background, var(--panel-2, #252526));
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.chat-inline-surface h3,
|
|
.chat-tool-surface h3 {
|
|
margin: 0 0 12px;
|
|
border-bottom: 1px solid var(--line, #3c3c3c);
|
|
text-align: left;
|
|
}
|
|
|
|
.chat-tool-surface-json {
|
|
margin: 0;
|
|
white-space: pre-wrap;
|
|
font: 12px/1.5 "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
|
|
}
|
|
padding: 8px 12px;
|
|
border: 1px solid var(--vscode-editorGroup-border, var(--line, #3c3c3c));
|
|
padding: 16px 20px 20px;
|
|
border-top: 1px solid var(--line, #3c3c3c);
|
|
|
|
.chat-tool-surface-table th {
|
|
font-weight: 600;
|
|
background: var(--vscode-list-hoverBackground, rgba(255, 255, 255, 0.06));
|
|
}
|
|
|
|
.chat-tool-surface-table tr:nth-child(even) {
|
|
background: var(--vscode-list-hoverBackground, rgba(255, 255, 255, 0.04));
|
|
}
|
|
}
|
|
|
|
.chat-input-wrapper {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
gap: 10px;
|
|
|
|
.chat-surface-card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
}
|
|
|
|
.chat-surface-subtitle {
|
|
margin: -4px 0 0;
|
|
color: var(--vscode-descriptionForeground, inherit);
|
|
}
|
|
|
|
.chat-surface-body,
|
|
.chat-surface-text {
|
|
margin: 0;
|
|
line-height: 1.5;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.chat-surface-actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
|
|
.chat-surface-action-button,
|
|
.chat-surface-tab-button,
|
|
.api-key-submit {
|
|
padding: 8px 12px;
|
|
border: none;
|
|
border-radius: 6px;
|
|
background: var(--vscode-button-background, var(--accent-color));
|
|
color: var(--vscode-button-foreground, #ffffff);
|
|
cursor: pointer;
|
|
transition: background-color 0.15s;
|
|
}
|
|
|
|
.chat-surface-action-button:hover,
|
|
.chat-surface-tab-button:hover,
|
|
.api-key-submit:hover {
|
|
background: var(--vscode-button-hoverBackground, var(--accent-color));
|
|
}
|
|
|
|
.chat-surface-chart-type {
|
|
margin: -6px 0 12px;
|
|
color: var(--vscode-descriptionForeground, inherit);
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.chat-surface-chart-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
}
|
|
|
|
.chat-surface-chart-meta {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.chat-surface-chart-bar {
|
|
height: 10px;
|
|
border-radius: 999px;
|
|
background: var(--vscode-input-background, rgba(255, 255, 255, 0.08));
|
|
overflow: hidden;
|
|
}
|
|
|
|
.chat-surface-chart-bar span {
|
|
display: block;
|
|
height: 100%;
|
|
border-radius: inherit;
|
|
background: var(--vscode-button-background, var(--accent-color));
|
|
}
|
|
|
|
.chat-surface-metric {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
}
|
|
|
|
.chat-surface-metric-label {
|
|
color: var(--vscode-descriptionForeground, inherit);
|
|
}
|
|
|
|
.chat-surface-metric-value {
|
|
font-size: 28px;
|
|
line-height: 1.1;
|
|
}
|
|
|
|
.chat-surface-list,
|
|
.chat-surface-mindmap {
|
|
margin: 0;
|
|
padding-left: 18px;
|
|
}
|
|
|
|
.chat-surface-list li,
|
|
.chat-surface-mindmap li {
|
|
margin: 6px 0;
|
|
}
|
|
|
|
.chat-surface-mindmap-children {
|
|
margin-left: 8px;
|
|
color: var(--vscode-descriptionForeground, inherit);
|
|
}
|
|
|
|
.chat-surface-tabs {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
.chat-surface-tab-list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
|
|
.chat-surface-tab-button {
|
|
background: transparent;
|
|
border: 1px solid var(--vscode-input-border, var(--line, #3c3c3c));
|
|
color: var(--vscode-foreground, inherit);
|
|
}
|
|
|
|
.chat-surface-tab-button.active {
|
|
background: var(--vscode-list-activeSelectionBackground, rgba(0, 122, 204, 0.18));
|
|
border-color: var(--vscode-list-activeSelectionBackground, rgba(0, 122, 204, 0.18));
|
|
color: var(--vscode-list-activeSelectionForeground, inherit);
|
|
}
|
|
|
|
.chat-surface-tab-panel {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
.chat-surface-tab-panel .chat-inline-surface {
|
|
width: 100%;
|
|
margin-left: 0;
|
|
}
|
|
|
|
.chat-surface-form {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.chat-surface-form-field {
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
.chat-surface-form input,
|
|
.chat-surface-form textarea,
|
|
.chat-surface-form select {
|
|
width: 100%;
|
|
padding: 10px 12px;
|
|
border: 1px solid var(--vscode-input-border, var(--line, #3c3c3c));
|
|
border-radius: 6px;
|
|
background: var(--vscode-input-background, var(--panel-1, #1e1e1e));
|
|
color: var(--vscode-input-foreground, inherit);
|
|
font: inherit;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.chat-surface-form textarea {
|
|
min-height: 84px;
|
|
resize: vertical;
|
|
}
|
|
|
|
.chat-surface-form-checkbox {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
min-height: 40px;
|
|
}
|
|
}
|
|
|
|
padding: 16px;
|
|
border-top: 1px solid var(--vscode-editorGroup-border, var(--line, #3c3c3c));
|
|
background: var(--vscode-sideBar-background, var(--panel-1, #1e1e1e));
|
|
}
|
|
|
|
.chat-abort-button {
|
|
display: block;
|
|
width: 100%;
|
|
margin-bottom: 8px;
|
|
padding: 8px;
|
|
font-size: 13px;
|
|
color: var(--vscode-errorForeground, #f48771);
|
|
background: transparent;
|
|
border: 1px solid var(--vscode-errorForeground, #f48771);
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.chat-abort-button:hover {
|
|
background: var(--vscode-inputValidation-errorBackground, rgba(244, 135, 113, 0.12));
|
|
resize: vertical;
|
|
}
|
|
|
|
display: flex;
|
|
align-items: flex-end;
|
|
height: 44px;
|
|
padding: 8px;
|
|
border: 1px solid var(--vscode-input-border, var(--line, #3c3c3c));
|
|
border-radius: 8px;
|
|
background: var(--vscode-input-background, var(--panel-2, #252526));
|
|
}
|
|
|
|
.chat-input-wrapper:focus-within {
|
|
border-color: var(--vscode-focusBorder, var(--accent-color));
|
|
border-radius: 999px;
|
|
}
|
|
|
|
flex: 1;
|
|
min-height: 24px;
|
|
max-height: 200px;
|
|
padding: 0;
|
|
border: none;
|
|
outline: none;
|
|
background: transparent;
|
|
color: var(--vscode-input-foreground, inherit);
|
|
font: inherit;
|
|
line-height: 1.5;
|
|
resize: none;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.chat-input::placeholder {
|
|
color: var(--vscode-input-placeholderForeground, rgba(255, 255, 255, 0.45));
|
|
}
|
|
|
|
.chat-surface-input {
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.chat-surface-error {
|
|
margin: 12px 0 0;
|
|
color: var(--vscode-errorForeground, #f48771);
|
|
font-size: 12px;
|
|
max-width: 560px;
|
|
text-align: center;
|
|
color: var(--vscode-descriptionForeground);
|
|
flex-shrink: 0;
|
|
width: 32px;
|
|
height: 32px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 18px;
|
|
color: var(--vscode-button-foreground, #ffffff);
|
|
background: var(--vscode-button-background, var(--accent-color));
|
|
border: none;
|
|
border-radius: 50%;
|
|
cursor: pointer;
|
|
transition: background-color 0.15s;
|
|
}
|
|
|
|
.chat-send-button:hover:not(:disabled) {
|
|
background: var(--vscode-button-hoverBackground, var(--accent-color));
|
|
}
|
|
|
|
.chat-send-button:disabled,
|
|
.api-key-submit:disabled {
|
|
opacity: 0.5;
|
|
cursor: not-allowed;
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 18px 0 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 100%;
|
|
padding: 32px;
|
|
box-sizing: border-box;
|
|
margin: 0 auto;
|
|
max-width: 560px;
|
|
}
|
|
|
|
.misc-editor-shell {
|
|
height: 100%;
|
|
.chat-welcome-icon {
|
|
margin-bottom: 16px;
|
|
font-size: 48px;
|
|
}
|
|
|
|
.chat-welcome h2 {
|
|
margin: 0 0 12px;
|
|
font-size: 18px;
|
|
font-weight: 500;
|
|
color: var(--vscode-foreground, inherit);
|
|
}
|
|
|
|
.chat-welcome p {
|
|
margin: 0 0 12px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
display: flex;
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
text-align: left;
|
|
}
|
|
|
|
.chat-welcome li {
|
|
padding: 4px 0;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.chat-welcome li::before {
|
|
content: "•";
|
|
margin-right: 8px;
|
|
color: var(--vscode-textLink-foreground, #3794ff);
|
|
}
|
|
|
|
.api-key-form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
margin-top: 16px;
|
|
width: 100%;
|
|
max-width: 400px;
|
|
}
|
|
|
|
.chat-message-text p {
|
|
margin: 0 0 0.5em;
|
|
}
|
|
|
|
.chat-message-text p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.chat-message-text h1,
|
|
.chat-message-text h2,
|
|
.chat-message-text h3,
|
|
.chat-message-text h4 {
|
|
margin: 0.75em 0 0.5em;
|
|
font-weight: 600;
|
|
color: var(--vscode-foreground, inherit);
|
|
}
|
|
|
|
.chat-message-text h1:first-child,
|
|
.chat-message-text h2:first-child,
|
|
.chat-message-text h3:first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.chat-message-text h1 {
|
|
font-size: 1.3em;
|
|
}
|
|
|
|
.chat-message-text h2 {
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.chat-message-text h3 {
|
|
font-size: 1.1em;
|
|
}
|
|
|
|
.chat-message-text h4 {
|
|
font-size: 1em;
|
|
}
|
|
|
|
.chat-message-text ul,
|
|
.chat-message-text ol {
|
|
margin: 0.5em 0;
|
|
padding-left: 1.5em;
|
|
}
|
|
|
|
.chat-message-text li {
|
|
margin: 0.25em 0;
|
|
}
|
|
|
|
.chat-message-text code {
|
|
padding: 0.15em 0.4em;
|
|
border-radius: 3px;
|
|
background: var(--vscode-textCodeBlock-background, rgba(0, 0, 0, 0.2));
|
|
font: 0.9em/1.4 "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
|
|
}
|
|
|
|
.chat-message-text pre {
|
|
margin: 0.75em 0;
|
|
padding: 12px;
|
|
overflow-x: auto;
|
|
border-radius: 6px;
|
|
background: var(--vscode-textCodeBlock-background, rgba(0, 0, 0, 0.2));
|
|
}
|
|
|
|
.chat-message-text pre code {
|
|
padding: 0;
|
|
background: transparent;
|
|
font-size: 0.85em;
|
|
}
|
|
|
|
.chat-message-text table {
|
|
width: 100%;
|
|
margin: 0.75em 0;
|
|
border-collapse: collapse;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.chat-message-text th,
|
|
.chat-message-text td {
|
|
padding: 8px 12px;
|
|
border: 1px solid var(--vscode-editorGroup-border, var(--line, #3c3c3c));
|
|
text-align: left;
|
|
}
|
|
|
|
.chat-message-text th {
|
|
font-weight: 600;
|
|
background: var(--vscode-list-hoverBackground, rgba(255, 255, 255, 0.06));
|
|
}
|
|
|
|
.chat-message-text tr:nth-child(even) {
|
|
background: var(--vscode-list-hoverBackground, rgba(255, 255, 255, 0.04));
|
|
}
|
|
|
|
.chat-message-text blockquote {
|
|
margin: 0.75em 0;
|
|
padding: 0.5em 1em;
|
|
border-left: 3px solid var(--vscode-textLink-foreground, #3794ff);
|
|
background: var(--vscode-textBlockQuote-background, rgba(0, 0, 0, 0.1));
|
|
color: var(--vscode-descriptionForeground, inherit);
|
|
}
|
|
|
|
.chat-message-text blockquote p {
|
|
margin: 0;
|
|
}
|
|
|
|
.chat-message-text a {
|
|
color: var(--vscode-textLink-foreground, #3794ff);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.chat-message-text a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.chat-message-text hr {
|
|
margin: 1em 0;
|
|
border: none;
|
|
border-top: 1px solid var(--vscode-editorGroup-border, var(--line, #3c3c3c));
|
|
}
|
|
|
|
.chat-message-text strong {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.chat-message-text em {
|
|
font-style: italic;
|
|
}
|
|
|
|
@media (max-width: 760px) {
|
|
.chat-inline-surface,
|
|
.chat-tool-surface {
|
|
width: 100%;
|
|
margin-left: 0;
|
|
}
|
|
|
|
.chat-message-content {
|
|
max-width: calc(100% - 44px);
|
|
}
|
|
|
|
.chat-panel-header {
|
|
padding: 12px;
|
|
}
|
|
|
|
.chat-messages,
|
|
.chat-input-container {
|
|
padding: 12px;
|
|
}
|
|
padding: 18px 20px;
|
|
border-bottom: 1px solid var(--line, #3c3c3c);
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 16px;
|
|
}
|
|
|
|
.misc-editor-header h2,
|
|
.misc-card h3 {
|
|
margin: 0;
|
|
}
|
|
|
|
.misc-editor-header p {
|
|
margin: 6px 0 0;
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.misc-editor-actions,
|
|
.misc-editor-summary {
|
|
display: flex;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.misc-editor-summary {
|
|
padding: 14px 20px;
|
|
border-bottom: 1px solid var(--line, #3c3c3c);
|
|
}
|
|
|
|
.misc-summary-pill {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 6px 10px;
|
|
border-radius: 999px;
|
|
background: var(--panel-2, #252526);
|
|
border: 1px solid var(--line, #3c3c3c);
|
|
}
|
|
|
|
.misc-editor-content {
|
|
padding: 20px;
|
|
overflow: auto;
|
|
flex: 1;
|
|
}
|
|
|
|
.misc-columns {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
gap: 16px;
|
|
}
|
|
|
|
.misc-card,
|
|
.misc-list-item {
|
|
border: 1px solid var(--line, #3c3c3c);
|
|
border-radius: 12px;
|
|
background: var(--panel-2, #252526);
|
|
padding: 16px;
|
|
}
|
|
|
|
.misc-card ul,
|
|
.misc-list {
|
|
margin: 12px 0 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
.misc-list-item header,
|
|
.duplicate-pair-row {
|
|
display: grid;
|
|
grid-template-columns: auto minmax(0, 1fr) auto minmax(0, 1fr) auto auto;
|
|
gap: 12px;
|
|
align-items: center;
|
|
}
|
|
|
|
.misc-list-item ul li {
|
|
display: grid;
|
|
grid-template-columns: minmax(120px, 180px) minmax(0, 1fr) minmax(0, 1fr);
|
|
gap: 10px;
|
|
padding-top: 8px;
|
|
}
|
|
|
|
.misc-code-card pre {
|
|
margin: 0;
|
|
white-space: pre-wrap;
|
|
font: 12px/1.5 "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
|
|
}
|
|
|
|
.translation-validation-view,
|
|
.git-diff-view {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
min-height: 0;
|
|
}
|
|
|
|
.translation-validation-summary,
|
|
.translation-validation-section,
|
|
.git-diff-toolbar {
|
|
border: 1px solid var(--line, #3c3c3c);
|
|
border-radius: 12px;
|
|
background: var(--panel-2, #252526);
|
|
padding: 16px;
|
|
}
|
|
|
|
.translation-validation-summary p,
|
|
.git-diff-empty {
|
|
margin: 0;
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.translation-validation-list {
|
|
display: grid;
|
|
gap: 12px;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.translation-validation-card {
|
|
border: 1px solid var(--line, #3c3c3c);
|
|
border-radius: 12px;
|
|
background: var(--panel-1, #1e1e1e);
|
|
padding: 16px;
|
|
}
|
|
|
|
.translation-validation-card-title {
|
|
margin: 0 0 12px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.translation-validation-card-meta {
|
|
margin: 0;
|
|
display: grid;
|
|
grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
|
|
gap: 8px 12px;
|
|
}
|
|
|
|
.translation-validation-card-meta dt {
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.translation-validation-card-meta dd {
|
|
margin: 0;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.translation-validation-actions {
|
|
display: flex;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.translation-validation-empty {
|
|
margin: 12px 0 0;
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.git-diff-toolbar {
|
|
display: flex;
|
|
gap: 12px;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.git-diff-toolbar label {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.git-diff-toolbar select {
|
|
min-width: min(420px, 100%);
|
|
}
|
|
|
|
.git-diff-editor {
|
|
flex: 1;
|
|
min-height: 420px;
|
|
border: 1px solid var(--line, #3c3c3c);
|
|
border-radius: 12px;
|
|
overflow: hidden;
|
|
background: var(--panel-1, #1e1e1e);
|
|
}
|
|
|
|
.monaco-diff-editor-instance {
|
|
height: 100%;
|
|
min-height: 420px;
|
|
}
|
|
|
|
.linkish {
|
|
padding: 0;
|
|
border: none;
|
|
background: transparent;
|
|
color: var(--accent-color);
|
|
text-align: left;
|
|
}
|
|
|
|
.metadata-diff-tool {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
}
|
|
|
|
.metadata-diff-tabs {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
}
|
|
|
|
.metadata-diff-tab,
|
|
.metadata-diff-field-pill {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 8px 12px;
|
|
border-radius: 999px;
|
|
border: 1px solid var(--line, #3c3c3c);
|
|
background: var(--panel-2, #252526);
|
|
color: inherit;
|
|
}
|
|
|
|
.metadata-diff-tab.active,
|
|
.metadata-diff-field-pill.active {
|
|
border-color: var(--accent-color);
|
|
background: color-mix(in srgb, var(--accent-color) 18%, var(--panel-2, #252526));
|
|
}
|
|
|
|
.metadata-diff-field-pill {
|
|
padding: 4px;
|
|
gap: 4px;
|
|
}
|
|
|
|
.metadata-diff-field-pill-toggle {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 4px 8px;
|
|
border: 0;
|
|
background: transparent;
|
|
color: inherit;
|
|
border-radius: 999px;
|
|
}
|
|
|
|
.metadata-diff-field-pill-actions,
|
|
.orphan-files-actions {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.metadata-diff-action-button {
|
|
padding: 4px 8px;
|
|
border-radius: 999px;
|
|
}
|
|
|
|
.tab-badge,
|
|
.field-pill-count {
|
|
min-width: 20px;
|
|
height: 20px;
|
|
padding: 0 6px;
|
|
border-radius: 999px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: var(--panel-1, #1e1e1e);
|
|
border: 1px solid var(--line, #3c3c3c);
|
|
font-size: 11px;
|
|
}
|
|
|
|
.metadata-diff-field-pills,
|
|
.metadata-diff-results,
|
|
.diff-item-list,
|
|
.diff-item-fields {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
.metadata-diff-field-pills {
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.diff-item-card {
|
|
border: 1px solid var(--line, #3c3c3c);
|
|
border-radius: 12px;
|
|
background: var(--panel-2, #252526);
|
|
padding: 16px;
|
|
}
|
|
|
|
.diff-item-header {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
}
|
|
|
|
.diff-item-meta {
|
|
margin-top: 4px;
|
|
color: var(--vscode-descriptionForeground);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.diff-field-row {
|
|
display: grid;
|
|
grid-template-columns: minmax(110px, 160px) minmax(0, 1fr);
|
|
gap: 12px;
|
|
align-items: start;
|
|
}
|
|
|
|
.diff-field-name {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.diff-field-values {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.diff-field-value {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
padding: 10px 12px;
|
|
border-radius: 10px;
|
|
border: 1px solid var(--line, #3c3c3c);
|
|
background: var(--panel-1, #1e1e1e);
|
|
min-width: 0;
|
|
}
|
|
|
|
.diff-source-label {
|
|
font-size: 11px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.orphan-files-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
.orphan-files-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
}
|
|
|
|
.orphan-path {
|
|
word-break: break-all;
|
|
}
|
|
|
|
.metadata-diff-empty {
|
|
min-height: 120px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
@media (max-width: 1100px) {
|
|
[data-testid="media-editor"] > .editor-content.media-editor,
|
|
.setting-row,
|
|
.tag-form-row,
|
|
.editor-field-row,
|
|
.duplicate-pair-row,
|
|
.misc-list-item ul li {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
[data-testid="media-editor"] > .editor-content.media-editor,
|
|
[data-testid="media-editor"] .editor-field-row {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.diff-field-row,
|
|
.diff-field-values {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
[data-testid="media-editor"] .media-details {
|
|
width: 100%;
|
|
}
|
|
|
|
.style-theme-picker {
|
|
grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
|
|
}
|
|
}
|
|
|
|
.insert-modal-results,
|
|
.insert-media-grid,
|
|
.shared-popover-list,
|
|
.language-picker-list {
|
|
overflow: auto;
|
|
}
|
|
|
|
.insert-modal-results {
|
|
padding: 8px;
|
|
}
|
|
|
|
.insert-modal-result-item,
|
|
.insert-modal-result-create,
|
|
.language-picker-row,
|
|
.shared-popover-entry {
|
|
width: 100%;
|
|
border: none;
|
|
border-radius: 4px;
|
|
padding: 12px 16px;
|
|
background: transparent;
|
|
color: inherit;
|
|
text-align: left;
|
|
}
|
|
|
|
.insert-modal-result-item:hover,
|
|
.insert-modal-result-create:hover,
|
|
.language-picker-row:hover,
|
|
.shared-popover-entry:hover,
|
|
.insert-media-card:hover,
|
|
.gallery-overlay-item:hover,
|
|
.colour-swatch:hover {
|
|
background: #2a2a2a;
|
|
}
|
|
|
|
.insert-modal-result-title,
|
|
.insert-media-card-title {
|
|
font-weight: 600;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.insert-modal-result-meta,
|
|
.insert-media-card-meta,
|
|
.warning-note,
|
|
.shared-popover-footnote,
|
|
.language-picker-source {
|
|
color: #9d9d9d;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.insert-modal-external {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 14px;
|
|
padding: 18px 20px;
|
|
}
|
|
|
|
.insert-modal-field,
|
|
.shared-popover-field {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
}
|
|
|
|
.insert-modal-label,
|
|
.shared-popover-field span {
|
|
font-size: 11px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
color: #9d9d9d;
|
|
}
|
|
|
|
.insert-modal-footer {
|
|
border-top: 1px solid #3c3c3c;
|
|
padding: 12px 16px;
|
|
}
|
|
|
|
.insert-modal-footer-content {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
}
|
|
|
|
.insert-modal-hint {
|
|
font-size: 11px;
|
|
color: #9d9d9d;
|
|
}
|
|
|
|
.insert-media-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
|
|
gap: 12px;
|
|
padding: 16px;
|
|
}
|
|
|
|
.insert-media-card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
border: 1px solid #3c3c3c;
|
|
border-radius: 8px;
|
|
background: #252526;
|
|
color: inherit;
|
|
padding: 10px;
|
|
text-align: left;
|
|
}
|
|
|
|
.insert-media-thumb {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 112px;
|
|
border-radius: 6px;
|
|
background: rgba(255, 255, 255, 0.04);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.insert-media-thumb img,
|
|
.gallery-overlay-item img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
display: block;
|
|
}
|
|
|
|
.insert-media-file-pill {
|
|
padding: 6px 10px;
|
|
border-radius: 999px;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
font-size: 11px;
|
|
letter-spacing: 0.04em;
|
|
}
|
|
|
|
.language-picker-row {
|
|
display: grid;
|
|
grid-template-columns: auto 1fr auto;
|
|
gap: 12px;
|
|
align-items: center;
|
|
}
|
|
|
|
.language-picker-badge.published {
|
|
background: rgba(34, 197, 94, 0.2);
|
|
color: #9ae6b4;
|
|
}
|
|
|
|
.language-picker-badge.draft,
|
|
.language-picker-badge.empty {
|
|
background: rgba(14, 99, 156, 0.24);
|
|
color: #8ec5ff;
|
|
}
|
|
|
|
.confirm-delete-warning {
|
|
display: flex;
|
|
gap: 12px;
|
|
padding: 12px;
|
|
border-radius: 6px;
|
|
background: rgba(255, 165, 0, 0.08);
|
|
border: 1px solid rgba(255, 165, 0, 0.3);
|
|
}
|
|
|
|
.warning-icon {
|
|
width: 24px;
|
|
height: 24px;
|
|
border-radius: 50%;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: rgba(255, 165, 0, 0.18);
|
|
color: #ffbf47;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.reference-list {
|
|
margin: 12px 0 0;
|
|
padding-left: 0;
|
|
list-style: none;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.reference-list li {
|
|
padding: 8px 10px;
|
|
border-radius: 4px;
|
|
background: rgba(255, 255, 255, 0.03);
|
|
}
|
|
|
|
.confirm-dialog-overlay {
|
|
align-items: center;
|
|
}
|
|
|
|
.confirm-dialog {
|
|
width: min(460px, calc(100vw - 32px));
|
|
padding-top: 20px;
|
|
}
|
|
|
|
.confirm-dialog p {
|
|
margin: 0;
|
|
padding: 0 20px 12px;
|
|
color: #d0d0d0;
|
|
}
|
|
|
|
.gallery-overlay-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
|
|
gap: 12px;
|
|
padding: 18px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.gallery-overlay-item {
|
|
border: none;
|
|
padding: 0;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
min-height: 148px;
|
|
background: #252526;
|
|
}
|
|
|
|
.lightbox-overlay {
|
|
background: rgba(0, 0, 0, 0.9);
|
|
}
|
|
|
|
.lightbox-container {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.lightbox-image-container {
|
|
max-width: 90%;
|
|
max-height: 78%;
|
|
}
|
|
|
|
.lightbox-image {
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
object-fit: contain;
|
|
border-radius: 4px;
|
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.lightbox-nav {
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
width: 48px;
|
|
height: 48px;
|
|
border: none;
|
|
border-radius: 50%;
|
|
background: rgba(255, 255, 255, 0.12);
|
|
color: #ffffff;
|
|
font-size: 28px;
|
|
}
|
|
|
|
.lightbox-prev {
|
|
left: 16px;
|
|
}
|
|
|
|
.lightbox-next {
|
|
right: 16px;
|
|
}
|
|
|
|
.lightbox-close {
|
|
position: absolute;
|
|
top: 16px;
|
|
right: 16px;
|
|
width: 44px;
|
|
height: 44px;
|
|
border-radius: 50%;
|
|
background: rgba(255, 255, 255, 0.12);
|
|
color: #ffffff;
|
|
}
|
|
|
|
.lightbox-footer {
|
|
position: absolute;
|
|
bottom: 32px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
text-align: center;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.lightbox-caption {
|
|
margin: 0 0 6px;
|
|
}
|
|
|
|
.shared-popover-shell {
|
|
position: absolute;
|
|
top: calc(100% + 8px);
|
|
left: 0;
|
|
z-index: 20;
|
|
}
|
|
|
|
.shared-popover {
|
|
width: min(320px, calc(100vw - 48px));
|
|
border: 1px solid #3c3c3c;
|
|
border-radius: 8px;
|
|
background: #1e1e1e;
|
|
box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.shared-popover-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 8px;
|
|
padding: 12px 14px;
|
|
border-bottom: 1px solid #3c3c3c;
|
|
}
|
|
|
|
.shared-popover-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
max-height: 220px;
|
|
}
|
|
|
|
.shared-popover-entry {
|
|
padding: 10px 14px;
|
|
}
|
|
|
|
.shared-popover-empty,
|
|
.shared-popover-footnote,
|
|
.colour-picker-selection {
|
|
display: block;
|
|
padding: 10px 14px;
|
|
}
|
|
|
|
.colour-picker-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
gap: 8px;
|
|
padding: 12px 14px;
|
|
}
|
|
|
|
.colour-swatch {
|
|
width: 100%;
|
|
aspect-ratio: 1;
|
|
border-radius: 6px;
|
|
border: 2px solid transparent;
|
|
}
|
|
|
|
.colour-swatch.selected {
|
|
border-color: #ffffff;
|
|
}
|
|
|
|
.colour-picker-selection {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
color: #d0d0d0;
|
|
}
|
|
|
|
.colour-preview {
|
|
width: 20px;
|
|
height: 20px;
|
|
border-radius: 50%;
|
|
border: 1px solid rgba(255, 255, 255, 0.18);
|
|
}
|
|
|
|
.chat-panel {
|
|
height: 100%;
|
|
min-height: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: var(--vscode-editor-background, var(--panel-1, #1e1e1e));
|
|
}
|
|
|
|
.chat-panel-header {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 16px;
|
|
padding: 12px 16px;
|
|
border-bottom: 1px solid var(--vscode-editorGroup-border, var(--line, #3c3c3c));
|
|
background-color: var(--vscode-sideBar-background, var(--panel-1, #1e1e1e));
|
|
}
|
|
|
|
.chat-panel-title {
|
|
flex: 1;
|
|
min-width: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
overflow: visible;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: var(--vscode-foreground, inherit);
|
|
}
|
|
|
|
.chat-panel-title-main {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.chat-panel-header-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.chat-model-selector-button,
|
|
.chat-model-selector-option {
|
|
color: inherit;
|
|
border: 1px solid var(--vscode-input-border, var(--line, #3c3c3c));
|
|
border-radius: 4px;
|
|
background: transparent;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.chat-model-selector-button {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
flex: 0 1 auto;
|
|
max-width: min(40vw, 240px);
|
|
padding: 4px 8px;
|
|
font-size: 12px;
|
|
color: var(--vscode-descriptionForeground, inherit);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.chat-model-selector-inline {
|
|
min-width: 0;
|
|
background-color: var(--vscode-input-background, transparent);
|
|
}
|
|
|
|
.chat-model-selector-inline span:first-child {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.chat-model-selector-wrap {
|
|
position: relative;
|
|
display: inline-flex;
|
|
min-width: 0;
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.chat-model-selector-button:hover,
|
|
.chat-model-selector-option:hover {
|
|
background-color: var(--vscode-list-hoverBackground, rgba(255, 255, 255, 0.06));
|
|
}
|
|
|
|
.chat-model-selector-caret {
|
|
font-size: 10px;
|
|
}
|
|
|
|
.chat-model-selector-menu {
|
|
position: absolute;
|
|
top: calc(100% + 4px);
|
|
left: 0;
|
|
min-width: 180px;
|
|
max-height: 300px;
|
|
overflow-y: auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
padding: 6px;
|
|
border: 1px solid var(--vscode-dropdown-border, var(--line, #3c3c3c));
|
|
border-radius: 4px;
|
|
background-color: var(--vscode-dropdown-background, var(--panel-1, #1e1e1e));
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
|
|
z-index: 100;
|
|
}
|
|
|
|
.chat-model-provider-group {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
}
|
|
|
|
.chat-model-provider-header {
|
|
padding: 2px 6px 0;
|
|
font-size: 10px;
|
|
font-weight: 600;
|
|
letter-spacing: 0.04em;
|
|
text-transform: uppercase;
|
|
color: var(--vscode-descriptionForeground, rgba(255, 255, 255, 0.6));
|
|
}
|
|
|
|
.chat-model-selector-option {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 8px 12px;
|
|
font-size: 12px;
|
|
text-align: left;
|
|
}
|
|
|
|
.chat-model-selector-option-name {
|
|
display: block;
|
|
}
|
|
|
|
.chat-model-selector-option.active {
|
|
background-color: var(--vscode-list-activeSelectionBackground, rgba(0, 122, 204, 0.18));
|
|
color: var(--vscode-list-activeSelectionForeground, inherit);
|
|
}
|
|
|
|
.chat-messages,
|
|
.chat-surface-scroll {
|
|
flex: 1;
|
|
min-height: 0;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.chat-messages {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
padding: 16px;
|
|
}
|
|
|
|
.chat-welcome {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 100%;
|
|
margin: 0 auto;
|
|
max-width: 560px;
|
|
box-sizing: border-box;
|
|
padding: 32px;
|
|
text-align: center;
|
|
color: var(--vscode-descriptionForeground, inherit);
|
|
}
|
|
|
|
.chat-welcome-icon {
|
|
margin-bottom: 16px;
|
|
font-size: 48px;
|
|
}
|
|
|
|
.chat-welcome h2 {
|
|
margin: 0 0 12px;
|
|
font-size: 18px;
|
|
font-weight: 500;
|
|
color: var(--vscode-foreground, inherit);
|
|
}
|
|
|
|
.chat-welcome p {
|
|
margin: 0 0 12px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.chat-welcome ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
text-align: left;
|
|
}
|
|
|
|
.chat-welcome li {
|
|
padding: 4px 0;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.chat-welcome li::before {
|
|
content: "•";
|
|
margin-right: 8px;
|
|
color: var(--vscode-textLink-foreground, #3794ff);
|
|
}
|
|
|
|
.chat-message {
|
|
display: flex;
|
|
gap: 12px;
|
|
}
|
|
|
|
.chat-message.user {
|
|
flex-direction: row-reverse;
|
|
}
|
|
|
|
.chat-message-avatar {
|
|
flex-shrink: 0;
|
|
width: 32px;
|
|
height: 32px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 50%;
|
|
font-size: 18px;
|
|
background-color: var(--vscode-input-background, var(--panel-2, #252526));
|
|
}
|
|
|
|
.chat-message.user .chat-message-avatar {
|
|
background-color: var(--vscode-button-background, var(--accent-color));
|
|
}
|
|
|
|
.chat-message-content {
|
|
max-width: 80%;
|
|
min-width: 100px;
|
|
}
|
|
|
|
.chat-message.user .chat-message-content {
|
|
width: fit-content;
|
|
min-width: 0;
|
|
max-width: min(80%, 720px);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-end;
|
|
margin-left: auto;
|
|
text-align: right;
|
|
}
|
|
|
|
.chat-message-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.chat-message.user .chat-message-header {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.chat-message-role {
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
color: var(--vscode-descriptionForeground, inherit);
|
|
}
|
|
|
|
.streaming-indicator {
|
|
color: var(--vscode-button-background, var(--accent-color));
|
|
animation: pulse 1s infinite;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0%,
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
|
|
50% {
|
|
opacity: 0.3;
|
|
}
|
|
}
|
|
|
|
.chat-message-text {
|
|
padding: 10px 14px;
|
|
border-radius: 12px 12px 12px 2px;
|
|
background-color: var(--vscode-input-background, var(--panel-2, #252526));
|
|
color: var(--vscode-foreground, inherit);
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
user-select: text;
|
|
cursor: text;
|
|
}
|
|
|
|
.chat-message.user .chat-message-text {
|
|
width: fit-content;
|
|
max-width: 100%;
|
|
display: inline-block;
|
|
border-radius: 12px 12px 2px 12px;
|
|
background-color: var(--vscode-button-background, var(--accent-color));
|
|
color: var(--vscode-button-foreground, #ffffff);
|
|
}
|
|
|
|
.chat-message.assistant .chat-message-text {
|
|
white-space: normal;
|
|
}
|
|
|
|
.chat-panel .chat-model-selector-button.chat-model-selector-inline {
|
|
width: auto;
|
|
min-width: 0;
|
|
max-width: 240px;
|
|
height: auto;
|
|
flex: 0 1 auto;
|
|
padding: 4px 8px;
|
|
border: 1px solid var(--vscode-input-border, var(--line, #3c3c3c));
|
|
border-radius: 4px;
|
|
background: transparent;
|
|
color: var(--vscode-descriptionForeground, inherit);
|
|
}
|
|
|
|
.chat-panel .chat-model-selector-caret {
|
|
position: static;
|
|
inset: auto;
|
|
width: auto;
|
|
min-width: 0;
|
|
max-width: none;
|
|
height: auto;
|
|
display: inline;
|
|
flex: 0 0 auto;
|
|
padding: 0;
|
|
border: 0;
|
|
border-radius: 0;
|
|
background: transparent;
|
|
box-shadow: none;
|
|
color: inherit;
|
|
font-size: 10px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.chat-panel .chat-model-selector-menu {
|
|
left: 0;
|
|
right: auto;
|
|
width: max-content;
|
|
min-width: 180px;
|
|
max-width: min(360px, calc(100vw - 48px));
|
|
height: auto;
|
|
padding: 6px;
|
|
border: 1px solid var(--vscode-dropdown-border, var(--line, #3c3c3c));
|
|
border-radius: 4px;
|
|
background: var(--vscode-dropdown-background, var(--panel-1, #1e1e1e));
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.chat-panel .chat-message.user .chat-message-content {
|
|
width: max-content;
|
|
min-width: 0;
|
|
max-width: min(72%, 720px);
|
|
padding: 0;
|
|
border: 0;
|
|
border-radius: 0;
|
|
background: transparent;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.chat-panel .chat-message.user .chat-message-text.chat-user-message-text {
|
|
width: auto;
|
|
min-width: 0;
|
|
max-width: 100%;
|
|
display: inline-block;
|
|
box-sizing: border-box;
|
|
padding: 6px 12px;
|
|
line-height: 1.35;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.chat-message.streaming .chat-message-text {
|
|
background: linear-gradient(
|
|
90deg,
|
|
var(--vscode-input-background, var(--panel-2, #252526)) 0%,
|
|
var(--vscode-list-hoverBackground, rgba(255, 255, 255, 0.06)) 50%,
|
|
var(--vscode-input-background, var(--panel-2, #252526)) 100%
|
|
);
|
|
background-size: 200% 100%;
|
|
animation: shimmer 2s infinite;
|
|
}
|
|
|
|
@keyframes shimmer {
|
|
0% {
|
|
background-position: 200% 0;
|
|
}
|
|
|
|
100% {
|
|
background-position: -200% 0;
|
|
}
|
|
}
|
|
|
|
.chat-thinking-indicator {
|
|
display: flex;
|
|
gap: 4px;
|
|
padding: 12px 16px;
|
|
}
|
|
|
|
.chat-thinking-indicator span {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
background-color: var(--vscode-descriptionForeground, #8a8a8a);
|
|
animation: bounce 1.4s infinite ease-in-out both;
|
|
}
|
|
|
|
.chat-thinking-indicator span:nth-child(1) {
|
|
animation-delay: -0.32s;
|
|
}
|
|
|
|
.chat-thinking-indicator span:nth-child(2) {
|
|
animation-delay: -0.16s;
|
|
}
|
|
|
|
@keyframes bounce {
|
|
0%,
|
|
80%,
|
|
100% {
|
|
transform: scale(0);
|
|
}
|
|
|
|
40% {
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
|
|
.chat-tool-markers {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
margin-bottom: 8px;
|
|
padding: 8px 10px;
|
|
border-left: 3px solid var(--vscode-textLink-foreground, #3794ff);
|
|
border-radius: 0 4px 4px 0;
|
|
background-color: var(--vscode-textBlockQuote-background, rgba(127, 127, 127, 0.1));
|
|
}
|
|
|
|
.chat-tool-marker {
|
|
font-size: 12px;
|
|
color: var(--vscode-descriptionForeground, inherit);
|
|
}
|
|
|
|
.chat-tool-marker summary {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
cursor: pointer;
|
|
list-style: none;
|
|
}
|
|
|
|
.chat-tool-marker summary::-webkit-details-marker {
|
|
display: none;
|
|
}
|
|
|
|
.chat-tool-marker-details {
|
|
margin: 6px 0 2px 20px;
|
|
padding: 8px;
|
|
border: 1px solid var(--vscode-editorGroup-border, var(--line, #3c3c3c));
|
|
border-radius: 6px;
|
|
background-color: var(--vscode-editor-background, rgba(0, 0, 0, 0.18));
|
|
}
|
|
|
|
.chat-tool-marker-detail-label {
|
|
margin: 0 0 4px;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
color: var(--vscode-descriptionForeground, inherit);
|
|
}
|
|
|
|
.chat-tool-marker-details pre {
|
|
margin: 0 0 8px;
|
|
white-space: pre-wrap;
|
|
overflow-wrap: anywhere;
|
|
font: 11px/1.45 "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
|
|
}
|
|
|
|
.chat-tool-marker.completed .chat-tool-marker-icon {
|
|
color: var(--vscode-testing-iconPassed, #89d185);
|
|
}
|
|
|
|
.chat-tool-marker.pending .chat-tool-marker-icon {
|
|
color: var(--vscode-textLink-foreground, #3794ff);
|
|
}
|
|
|
|
.chat-tool-marker-args {
|
|
opacity: 0.85;
|
|
}
|
|
|
|
.chat-inline-surface,
|
|
.chat-tool-surface {
|
|
width: min(720px, calc(100% - 44px));
|
|
margin-left: 44px;
|
|
box-sizing: border-box;
|
|
border: 1px solid var(--vscode-editorGroup-border, var(--line, #3c3c3c));
|
|
border-radius: 12px;
|
|
background-color: var(--vscode-sideBar-background, var(--panel-2, #252526));
|
|
}
|
|
|
|
.chat-inline-surface {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.chat-inline-surface-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 8px 12px;
|
|
cursor: pointer;
|
|
list-style: none;
|
|
background-color: var(--vscode-textBlockQuote-background, rgba(127, 127, 127, 0.1));
|
|
}
|
|
|
|
.chat-inline-surface-header::-webkit-details-marker {
|
|
display: none;
|
|
}
|
|
|
|
.chat-inline-surface-title {
|
|
min-width: 0;
|
|
flex: 1;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.chat-inline-surface-dismiss {
|
|
border: 0;
|
|
border-radius: 4px;
|
|
padding: 2px 7px;
|
|
background: transparent;
|
|
color: var(--vscode-descriptionForeground, inherit);
|
|
cursor: pointer;
|
|
font-size: 15px;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.chat-inline-surface-dismiss:hover {
|
|
background-color: var(--vscode-toolbar-hoverBackground, rgba(255, 255, 255, 0.08));
|
|
color: var(--vscode-foreground, inherit);
|
|
}
|
|
|
|
.chat-inline-surface-body {
|
|
padding: 14px;
|
|
}
|
|
|
|
.chat-inline-surface h3,
|
|
.chat-tool-surface h3 {
|
|
margin: 0 0 12px;
|
|
}
|
|
|
|
.chat-tool-surface-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.chat-tool-surface-table th,
|
|
.chat-tool-surface-table td {
|
|
padding: 8px 12px;
|
|
border: 1px solid var(--vscode-editorGroup-border, var(--line, #3c3c3c));
|
|
text-align: left;
|
|
}
|
|
|
|
.chat-tool-surface-table th {
|
|
font-weight: 600;
|
|
background-color: var(--vscode-list-hoverBackground, rgba(255, 255, 255, 0.06));
|
|
}
|
|
|
|
.chat-tool-surface-table tr:nth-child(even) {
|
|
background-color: var(--vscode-list-hoverBackground, rgba(255, 255, 255, 0.04));
|
|
}
|
|
|
|
.chat-tool-surface-json {
|
|
margin: 0;
|
|
white-space: pre-wrap;
|
|
font: 12px/1.5 "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
|
|
}
|
|
|
|
.chat-surface-card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
}
|
|
|
|
.chat-surface-subtitle {
|
|
margin: -4px 0 0;
|
|
color: var(--vscode-descriptionForeground, inherit);
|
|
}
|
|
|
|
.chat-surface-body,
|
|
.chat-surface-text {
|
|
margin: 0;
|
|
line-height: 1.5;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.chat-surface-actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
|
|
.chat-surface-action-button,
|
|
.chat-surface-tab-button,
|
|
.api-key-submit {
|
|
padding: 8px 12px;
|
|
border: none;
|
|
border-radius: 6px;
|
|
background-color: var(--vscode-button-background, var(--accent-color));
|
|
color: var(--vscode-button-foreground, #ffffff);
|
|
cursor: pointer;
|
|
transition: background-color 0.15s;
|
|
}
|
|
|
|
.chat-surface-action-button:hover,
|
|
.chat-surface-tab-button:hover,
|
|
.api-key-submit:hover {
|
|
background-color: var(--vscode-button-hoverBackground, var(--accent-color));
|
|
}
|
|
|
|
.chat-surface-chart-type {
|
|
margin: -6px 0 12px;
|
|
color: var(--vscode-descriptionForeground, inherit);
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.chat-surface-chart-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
}
|
|
|
|
.chat-surface-chart-meta {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.chat-surface-chart-bar {
|
|
height: 10px;
|
|
overflow: hidden;
|
|
border-radius: 999px;
|
|
background-color: var(--vscode-input-background, rgba(255, 255, 255, 0.08));
|
|
}
|
|
|
|
.chat-surface-chart-bar span {
|
|
display: block;
|
|
height: 100%;
|
|
border-radius: inherit;
|
|
background-color: var(--vscode-button-background, var(--accent-color));
|
|
}
|
|
|
|
.chat-surface-metric {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
}
|
|
|
|
.chat-surface-metric-label {
|
|
color: var(--vscode-descriptionForeground, inherit);
|
|
}
|
|
|
|
.chat-surface-metric-value {
|
|
font-size: 28px;
|
|
line-height: 1.1;
|
|
}
|
|
|
|
.chat-surface-list,
|
|
.chat-surface-mindmap {
|
|
margin: 0;
|
|
padding-left: 18px;
|
|
}
|
|
|
|
.chat-surface-list li,
|
|
.chat-surface-mindmap li {
|
|
margin: 6px 0;
|
|
}
|
|
|
|
.chat-surface-mindmap-children {
|
|
margin-left: 8px;
|
|
color: var(--vscode-descriptionForeground, inherit);
|
|
}
|
|
|
|
.chat-surface-tabs {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
.chat-surface-tab-list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
|
|
.chat-surface-tab-button {
|
|
border: 1px solid var(--vscode-input-border, var(--line, #3c3c3c));
|
|
background: transparent;
|
|
color: var(--vscode-foreground, inherit);
|
|
}
|
|
|
|
.chat-surface-tab-button.active {
|
|
border-color: var(--vscode-list-activeSelectionBackground, rgba(0, 122, 204, 0.18));
|
|
background-color: var(--vscode-list-activeSelectionBackground, rgba(0, 122, 204, 0.18));
|
|
color: var(--vscode-list-activeSelectionForeground, inherit);
|
|
}
|
|
|
|
.chat-surface-tab-panel {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
.chat-surface-tab-panel .chat-inline-surface {
|
|
width: 100%;
|
|
margin-left: 0;
|
|
}
|
|
|
|
.chat-surface-form {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.chat-surface-form-field {
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
.chat-surface-form input,
|
|
.chat-surface-form textarea,
|
|
.chat-surface-form select {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
padding: 10px 12px;
|
|
border: 1px solid var(--vscode-input-border, var(--line, #3c3c3c));
|
|
border-radius: 6px;
|
|
background-color: var(--vscode-input-background, var(--panel-1, #1e1e1e));
|
|
color: var(--vscode-input-foreground, inherit);
|
|
font: inherit;
|
|
}
|
|
|
|
.chat-surface-form textarea {
|
|
min-height: 84px;
|
|
resize: vertical;
|
|
}
|
|
|
|
.chat-surface-form-checkbox {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
min-height: 40px;
|
|
}
|
|
|
|
.chat-input-container {
|
|
padding: 8px 16px;
|
|
border-top: 1px solid var(--vscode-editorGroup-border, var(--line, #3c3c3c));
|
|
background-color: var(--vscode-sideBar-background, var(--panel-1, #1e1e1e));
|
|
}
|
|
|
|
.chat-panel .chat-input-container {
|
|
padding: 8px 16px;
|
|
}
|
|
|
|
.chat-abort-button {
|
|
display: block;
|
|
width: 100%;
|
|
margin-bottom: 8px;
|
|
padding: 8px;
|
|
border: 1px solid var(--vscode-errorForeground, #f48771);
|
|
border-radius: 4px;
|
|
background: transparent;
|
|
color: var(--vscode-errorForeground, #f48771);
|
|
font-size: 13px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.chat-abort-button:hover {
|
|
background-color: var(--vscode-inputValidation-errorBackground, rgba(244, 135, 113, 0.12));
|
|
}
|
|
|
|
.chat-panel .chat-input-wrapper {
|
|
--chat-input-line-height: 20px;
|
|
--chat-input-min-height: 20px;
|
|
--chat-input-max-height: 160px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
min-height: 30px;
|
|
padding: 4px 6px;
|
|
border: 1px solid var(--vscode-input-border, var(--line, #3c3c3c));
|
|
border-radius: 8px;
|
|
background-color: var(--vscode-input-background, var(--panel-2, #252526));
|
|
}
|
|
|
|
.chat-panel .chat-input-wrapper:focus-within {
|
|
border-color: var(--vscode-focusBorder, var(--accent-color));
|
|
}
|
|
|
|
.chat-panel .chat-input {
|
|
flex: 1;
|
|
display: block;
|
|
box-sizing: border-box;
|
|
height: var(--chat-input-min-height);
|
|
min-height: var(--chat-input-min-height);
|
|
max-height: var(--chat-input-max-height);
|
|
margin: 0;
|
|
padding: 0;
|
|
border: none;
|
|
outline: none;
|
|
appearance: none;
|
|
background: transparent;
|
|
color: var(--vscode-input-foreground, inherit);
|
|
font: inherit;
|
|
line-height: var(--chat-input-line-height);
|
|
resize: none;
|
|
overflow-y: hidden;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.chat-panel .chat-input::placeholder {
|
|
color: var(--vscode-input-placeholderForeground, rgba(255, 255, 255, 0.45));
|
|
}
|
|
|
|
.chat-surface-input {
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.chat-surface-error {
|
|
margin: 12px 0 0;
|
|
color: var(--vscode-errorForeground, #f48771);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.chat-panel .chat-send-button {
|
|
flex-shrink: 0;
|
|
box-sizing: border-box;
|
|
width: 22px;
|
|
height: 22px;
|
|
min-width: 22px;
|
|
min-height: 22px;
|
|
max-width: 22px;
|
|
max-height: 22px;
|
|
padding: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: none;
|
|
border-radius: 50%;
|
|
background-color: var(--vscode-button-background, var(--accent-color));
|
|
color: var(--vscode-button-foreground, #ffffff);
|
|
font-size: 15px;
|
|
line-height: 1;
|
|
cursor: pointer;
|
|
transition: background-color 0.15s;
|
|
}
|
|
|
|
.chat-panel .chat-send-button:hover:not(:disabled) {
|
|
background-color: var(--vscode-button-hoverBackground, var(--accent-color));
|
|
}
|
|
|
|
.chat-panel .chat-send-button:disabled,
|
|
.api-key-submit:disabled {
|
|
opacity: 0.5;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.api-key-form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
margin-top: 16px;
|
|
width: 100%;
|
|
max-width: 400px;
|
|
}
|
|
|
|
.chat-message-text p {
|
|
margin: 0 0 0.5em;
|
|
}
|
|
|
|
.chat-message-text p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.chat-message-text h1,
|
|
.chat-message-text h2,
|
|
.chat-message-text h3,
|
|
.chat-message-text h4 {
|
|
margin: 0.75em 0 0.5em;
|
|
font-weight: 600;
|
|
color: var(--vscode-foreground, inherit);
|
|
}
|
|
|
|
.chat-message-text h1:first-child,
|
|
.chat-message-text h2:first-child,
|
|
.chat-message-text h3:first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.chat-message-text h1 {
|
|
font-size: 1.3em;
|
|
}
|
|
|
|
.chat-message-text h2 {
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.chat-message-text h3 {
|
|
font-size: 1.1em;
|
|
}
|
|
|
|
.chat-message-text h4 {
|
|
font-size: 1em;
|
|
}
|
|
|
|
.chat-message-text ul,
|
|
.chat-message-text ol {
|
|
margin: 0.5em 0;
|
|
padding-left: 1.5em;
|
|
}
|
|
|
|
.chat-message-text li {
|
|
margin: 0.25em 0;
|
|
}
|
|
|
|
.chat-message-text code {
|
|
padding: 0.15em 0.4em;
|
|
border-radius: 3px;
|
|
background-color: var(--vscode-textCodeBlock-background, rgba(0, 0, 0, 0.2));
|
|
font: 0.9em/1.4 "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
|
|
}
|
|
|
|
.chat-message-text pre {
|
|
margin: 0.75em 0;
|
|
padding: 12px;
|
|
overflow-x: auto;
|
|
border-radius: 6px;
|
|
background-color: var(--vscode-textCodeBlock-background, rgba(0, 0, 0, 0.2));
|
|
}
|
|
|
|
.chat-message-text pre code {
|
|
padding: 0;
|
|
background: transparent;
|
|
font-size: 0.85em;
|
|
}
|
|
|
|
.chat-message-text table {
|
|
width: 100%;
|
|
margin: 0.75em 0;
|
|
border-collapse: collapse;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.chat-message-text th,
|
|
.chat-message-text td {
|
|
padding: 8px 12px;
|
|
border: 1px solid var(--vscode-editorGroup-border, var(--line, #3c3c3c));
|
|
text-align: left;
|
|
}
|
|
|
|
.chat-message-text th {
|
|
font-weight: 600;
|
|
background-color: var(--vscode-list-hoverBackground, rgba(255, 255, 255, 0.06));
|
|
}
|
|
|
|
.chat-message-text tr:nth-child(even) {
|
|
background-color: var(--vscode-list-hoverBackground, rgba(255, 255, 255, 0.04));
|
|
}
|
|
|
|
.chat-message-text blockquote {
|
|
margin: 0.75em 0;
|
|
padding: 0.5em 1em;
|
|
border-left: 3px solid var(--vscode-textLink-foreground, #3794ff);
|
|
background-color: var(--vscode-textBlockQuote-background, rgba(0, 0, 0, 0.1));
|
|
color: var(--vscode-descriptionForeground, inherit);
|
|
}
|
|
|
|
.chat-message-text blockquote p {
|
|
margin: 0;
|
|
}
|
|
|
|
.chat-message-text a {
|
|
color: var(--vscode-textLink-foreground, #3794ff);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.chat-message-text a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.chat-message-text hr {
|
|
margin: 1em 0;
|
|
border: none;
|
|
border-top: 1px solid var(--vscode-editorGroup-border, var(--line, #3c3c3c));
|
|
}
|
|
|
|
.chat-message-text strong {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.chat-message-text em {
|
|
font-style: italic;
|
|
}
|
|
|
|
.misc-editor-shell {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: var(--panel-1, #1e1e1e);
|
|
}
|
|
|
|
.misc-editor-header {
|
|
padding: 18px 20px;
|
|
border-bottom: 1px solid var(--line, #3c3c3c);
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 16px;
|
|
}
|
|
|
|
@media (max-width: 760px) {
|
|
.chat-inline-surface,
|
|
.chat-tool-surface {
|
|
width: 100%;
|
|
margin-left: 0;
|
|
}
|
|
|
|
.chat-message-content {
|
|
max-width: calc(100% - 44px);
|
|
}
|
|
|
|
.chat-panel-header {
|
|
padding: 12px;
|
|
}
|
|
|
|
.chat-messages,
|
|
.chat-input-container {
|
|
padding: 12px;
|
|
}
|
|
|
|
.chat-panel .chat-input-container {
|
|
padding: 6px 8px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 720px) {
|
|
.insert-media-grid,
|
|
.gallery-overlay-grid {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.ai-suggestion-comparison {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.ai-suggestion-arrow {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.sidebar-section-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.sidebar-section-items {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.sidebar-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 4px;
|
|
width: 100%;
|
|
padding: 12px;
|
|
border-radius: 14px;
|
|
background: var(--panel-2);
|
|
color: var(--ink);
|
|
}
|
|
|
|
.sidebar-item:hover,
|
|
.panel-tab:hover {
|
|
background: var(--accent-soft);
|
|
}
|
|
|
|
.sidebar-item.active {
|
|
outline: 1px solid var(--accent);
|
|
background: rgba(79, 179, 255, 0.12);
|
|
}
|
|
|
|
.sidebar-badge {
|
|
padding: 2px 8px;
|
|
border-radius: 999px;
|
|
background: rgba(110, 203, 139, 0.16);
|
|
color: var(--success);
|
|
font-size: 11px;
|
|
}
|
|
|
|
.panel-shell {
|
|
min-height: 160px;
|
|
max-height: 160px;
|
|
border-top: 1px solid var(--line);
|
|
}
|
|
|
|
.panel-shell.is-hidden {
|
|
display: none;
|
|
}
|
|
|
|
.panel-tabs {
|
|
display: flex;
|
|
gap: 8px;
|
|
}
|
|
|
|
.panel-tabs {
|
|
display: flex;
|
|
gap: 2px;
|
|
}
|
|
|
|
.panel-tab {
|
|
background: transparent;
|
|
border: none;
|
|
padding: 6px 12px;
|
|
font-size: 12px;
|
|
color: var(--vscode-tab-inactiveForeground);
|
|
cursor: pointer;
|
|
border-bottom: 2px solid transparent;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.panel-tab:hover {
|
|
color: var(--vscode-tab-activeForeground);
|
|
background: transparent;
|
|
}
|
|
|
|
.panel-tab.active {
|
|
color: var(--vscode-tab-activeForeground);
|
|
border-bottom-color: var(--vscode-focusBorder);
|
|
background: transparent;
|
|
}
|
|
|
|
.assistant-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
padding: 12px;
|
|
}
|
|
|
|
.assistant-sidebar-header {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
}
|
|
|
|
.assistant-sidebar-heading {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
}
|
|
|
|
.assistant-sidebar-description,
|
|
.assistant-sidebar-context-text,
|
|
.assistant-sidebar-message-content {
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.assistant-sidebar-status {
|
|
border-radius: 999px;
|
|
border: 1px solid var(--vscode-panel-border);
|
|
padding: 2px 8px;
|
|
font-size: 11px;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.assistant-sidebar-status.is-offline {
|
|
background: rgba(255, 196, 0, 0.18);
|
|
border-color: rgba(255, 196, 0, 0.35);
|
|
color: var(--vscode-editor-foreground);
|
|
}
|
|
|
|
.assistant-sidebar-context {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
padding: 8px;
|
|
border: 1px solid var(--vscode-panel-border);
|
|
border-radius: 6px;
|
|
background: var(--vscode-editorWidget-background, rgba(0, 0, 0, 0.2));
|
|
}
|
|
|
|
.assistant-sidebar-context-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
}
|
|
|
|
.assistant-sidebar-context-label,
|
|
.assistant-sidebar-message-role {
|
|
font-size: 11px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.assistant-sidebar-context-value {
|
|
text-align: right;
|
|
color: var(--vscode-editor-foreground);
|
|
}
|
|
|
|
.assistant-sidebar-context-text,
|
|
.assistant-sidebar-message-content {
|
|
margin: 0;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.assistant-sidebar-prompt-form,
|
|
.assistant-sidebar-welcome,
|
|
.assistant-sidebar-transcript {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
}
|
|
|
|
.assistant-sidebar-prompt {
|
|
width: 100%;
|
|
min-height: 120px;
|
|
resize: vertical;
|
|
border: 1px solid var(--vscode-input-border);
|
|
border-radius: 6px;
|
|
background: var(--vscode-input-background);
|
|
color: var(--vscode-input-foreground);
|
|
padding: 10px;
|
|
font: inherit;
|
|
}
|
|
|
|
.assistant-sidebar-prompt:focus {
|
|
outline: 1px solid var(--vscode-focusBorder);
|
|
outline-offset: 1px;
|
|
}
|
|
|
|
.assistant-sidebar-start-button {
|
|
align-self: flex-start;
|
|
border: 1px solid var(--vscode-button-border, transparent);
|
|
border-radius: 999px;
|
|
background: var(--vscode-button-background);
|
|
color: var(--vscode-button-foreground);
|
|
padding: 7px 14px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.assistant-sidebar-start-button:disabled {
|
|
cursor: default;
|
|
opacity: 0.55;
|
|
}
|
|
|
|
.assistant-card,
|
|
.assistant-sidebar-message {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
padding: 12px;
|
|
border: 1px solid var(--vscode-panel-border);
|
|
border-radius: 6px;
|
|
border-bottom-width: 1px;
|
|
background: var(--vscode-editorWidget-background, rgba(0, 0, 0, 0.2));
|
|
}
|
|
|
|
.assistant-sidebar-message.user {
|
|
background: var(--vscode-list-hoverBackground);
|
|
}
|
|
|
|
.assistant-sidebar-message.assistant {
|
|
background: var(--vscode-editorWidget-background, rgba(0, 0, 0, 0.2));
|
|
}
|
|
|
|
.status-bar {
|
|
height: 22px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
background-color: var(--vscode-statusBar-background);
|
|
color: var(--vscode-statusBar-foreground);
|
|
font-size: 12px;
|
|
padding: 0 8px;
|
|
user-select: none;
|
|
flex-wrap: nowrap;
|
|
gap: 0;
|
|
border-top: none;
|
|
}
|
|
|
|
.status-bar-left,
|
|
.status-bar-right {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
flex-shrink: 0;
|
|
min-width: 0;
|
|
}
|
|
|
|
.status-bar-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 0 8px;
|
|
height: 100%;
|
|
max-width: none;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
border-radius: 0;
|
|
background: transparent;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.status-bar-item .task-message-text {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
max-width: 300px;
|
|
}
|
|
|
|
.task-spinner {
|
|
width: 10px;
|
|
height: 10px;
|
|
border: 2px solid rgba(255, 255, 255, 0.3);
|
|
border-top-color: white;
|
|
border-radius: 50%;
|
|
animation: spin 0.8s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
.panel-content {
|
|
padding: 8px;
|
|
}
|
|
|
|
.task-list {
|
|
gap: 4px;
|
|
}
|
|
|
|
.output-list,
|
|
.git-log-list {
|
|
gap: 6px;
|
|
}
|
|
|
|
.task-entry {
|
|
padding: 8px;
|
|
border-bottom: none;
|
|
border-radius: 4px;
|
|
background-color: var(--vscode-sideBar-background);
|
|
}
|
|
|
|
.output-entry {
|
|
padding: 8px;
|
|
border-bottom: none;
|
|
border-radius: 4px;
|
|
background-color: var(--vscode-sideBar-background);
|
|
font-size: 12px;
|
|
color: var(--vscode-editor-foreground);
|
|
}
|
|
|
|
@media (max-width: 1100px) {
|
|
.editor-frame {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.assistant-sidebar-shell {
|
|
display: none;
|
|
}
|
|
|
|
.dashboard-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
.text-muted {
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.editor-empty {
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: center;
|
|
background-color: var(--vscode-editor-background);
|
|
overflow-y: auto;
|
|
padding: 40px 20px;
|
|
}
|
|
|
|
.dashboard-content {
|
|
max-width: 720px;
|
|
width: 100%;
|
|
}
|
|
|
|
.dashboard-content h1 {
|
|
font-size: 24px;
|
|
font-weight: 400;
|
|
margin: 0 0 4px;
|
|
color: var(--vscode-editor-foreground);
|
|
}
|
|
|
|
.dashboard-content > .text-muted {
|
|
margin-bottom: 24px;
|
|
display: block;
|
|
}
|
|
|
|
.dashboard-stats {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 12px;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.stat-card {
|
|
padding: 16px;
|
|
background-color: var(--vscode-sideBar-background);
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.stat-number {
|
|
font-size: 32px;
|
|
font-weight: 600;
|
|
color: var(--vscode-editor-foreground);
|
|
line-height: 1;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.stat-label {
|
|
font-size: 12px;
|
|
color: var(--vscode-descriptionForeground);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.stat-breakdown {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 6px;
|
|
}
|
|
|
|
.stat-tag {
|
|
font-size: 11px;
|
|
padding: 2px 8px;
|
|
border-radius: 3px;
|
|
background-color: var(--vscode-input-background);
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.stat-published {
|
|
color: var(--vscode-testing-iconPassed);
|
|
}
|
|
|
|
.stat-draft {
|
|
color: var(--vscode-editorWarning-foreground);
|
|
}
|
|
|
|
.stat-archived {
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.dashboard-section {
|
|
background-color: var(--vscode-sideBar-background);
|
|
border-radius: 6px;
|
|
padding: 16px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.dashboard-section h4 {
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
color: var(--vscode-descriptionForeground);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
margin: 0 0 12px;
|
|
}
|
|
|
|
.timeline-chart {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
gap: 4px;
|
|
height: 100px;
|
|
}
|
|
|
|
.timeline-bar-container {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
height: 100%;
|
|
}
|
|
|
|
.timeline-bar {
|
|
width: 100%;
|
|
max-width: 40px;
|
|
background-color: var(--vscode-activityBarBadge-background);
|
|
border-radius: 3px 3px 0 0;
|
|
margin-top: auto;
|
|
min-height: 4px;
|
|
position: relative;
|
|
transition: opacity 0.15s;
|
|
}
|
|
|
|
.timeline-bar:hover {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.timeline-bar-count {
|
|
position: absolute;
|
|
top: -16px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
font-size: 10px;
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.timeline-bar-label {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
font-size: 9px;
|
|
color: var(--vscode-descriptionForeground);
|
|
margin-top: 4px;
|
|
line-height: 1.15;
|
|
}
|
|
|
|
.timeline-bar-label-month {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.timeline-bar-label-year {
|
|
font-size: 8px;
|
|
}
|
|
|
|
.tag-cloud {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 6px 10px;
|
|
align-items: baseline;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.dashboard-tag {
|
|
padding: 2px 8px;
|
|
border-radius: 10px;
|
|
background-color: var(--vscode-input-background);
|
|
color: var(--vscode-editor-foreground);
|
|
cursor: default;
|
|
transition: opacity 0.15s;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.dashboard-tag:hover {
|
|
opacity: 0.75;
|
|
}
|
|
|
|
.dashboard-tag.has-color {
|
|
border-radius: 12px;
|
|
}
|
|
|
|
.dashboard-tag.has-color:hover {
|
|
opacity: 0.85;
|
|
}
|
|
|
|
.tag-cloud-more {
|
|
font-size: 11px;
|
|
}
|
|
|
|
.tag-count {
|
|
font-size: 10px;
|
|
opacity: 0.5;
|
|
margin-left: 2px;
|
|
}
|
|
|
|
.dashboard-category {
|
|
font-size: 12px;
|
|
border: 1px solid var(--vscode-input-border);
|
|
}
|
|
|
|
.recent-posts-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.recent-post-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 6px 8px;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
width: 100%;
|
|
border: none;
|
|
background: transparent;
|
|
text-align: left;
|
|
color: inherit;
|
|
}
|
|
|
|
.recent-post-item:hover {
|
|
background-color: var(--vscode-list-hoverBackground);
|
|
}
|
|
|
|
.recent-post-title {
|
|
flex: 1;
|
|
color: var(--vscode-editor-foreground);
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.recent-post-status {
|
|
font-size: 10px;
|
|
padding: 1px 6px;
|
|
border-radius: 3px;
|
|
background-color: var(--vscode-input-background);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.3px;
|
|
}
|
|
|
|
.recent-post-status.status-published {
|
|
color: var(--vscode-testing-iconPassed);
|
|
}
|
|
|
|
.recent-post-status.status-draft {
|
|
color: var(--vscode-editorWarning-foreground);
|
|
}
|
|
|
|
.recent-post-status.status-archived {
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.recent-post-date {
|
|
color: var(--vscode-descriptionForeground);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.sidebar-content {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
padding: 0;
|
|
}
|
|
|
|
.sidebar-section {
|
|
margin-bottom: 4px;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.sidebar-section-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 8px 12px;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
color: var(--vscode-sideBar-foreground);
|
|
}
|
|
|
|
.sidebar-section-title {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 4px 12px;
|
|
font-size: 12px;
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.section-icon {
|
|
font-size: 8px;
|
|
}
|
|
|
|
.section-icon.status-draft {
|
|
color: var(--vscode-editorWarning-foreground);
|
|
}
|
|
|
|
.section-icon.status-published {
|
|
color: var(--vscode-testing-iconPassed);
|
|
}
|
|
|
|
.section-icon.status-archived {
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.sidebar-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.sidebar-item {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 8px;
|
|
padding: 6px 12px 6px 12px;
|
|
border: none;
|
|
border-left: 2px solid transparent;
|
|
border-radius: 0;
|
|
background: transparent;
|
|
color: inherit;
|
|
cursor: pointer;
|
|
text-align: left;
|
|
}
|
|
|
|
.sidebar-item:hover {
|
|
background-color: var(--vscode-list-hoverBackground);
|
|
}
|
|
|
|
.sidebar-item.selected {
|
|
background-color: var(--vscode-list-activeSelectionBackground);
|
|
border-left-color: var(--vscode-focusBorder);
|
|
color: var(--vscode-list-activeSelectionForeground);
|
|
}
|
|
|
|
.sidebar-post-item {
|
|
flex-direction: row;
|
|
}
|
|
|
|
.sidebar-item.post-type-picture {
|
|
background: linear-gradient(90deg, rgba(139, 92, 246, 0.05) 0%, transparent 100%);
|
|
}
|
|
|
|
.sidebar-item.post-type-aside {
|
|
background: linear-gradient(90deg, rgba(245, 158, 11, 0.05) 0%, transparent 100%);
|
|
}
|
|
|
|
.sidebar-item.post-type-quote {
|
|
background: linear-gradient(90deg, rgba(34, 197, 94, 0.05) 0%, transparent 100%);
|
|
}
|
|
|
|
.sidebar-item.post-type-link {
|
|
background: linear-gradient(90deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
|
|
}
|
|
|
|
.sidebar-item.post-type-video {
|
|
background: linear-gradient(90deg, rgba(239, 68, 68, 0.05) 0%, transparent 100%);
|
|
}
|
|
|
|
.post-type-icon {
|
|
font-size: 14px;
|
|
line-height: 1.4;
|
|
flex-shrink: 0;
|
|
opacity: 0.85;
|
|
}
|
|
|
|
.sidebar-item-content {
|
|
display: flex;
|
|
flex: 1;
|
|
min-width: 0;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.sidebar-item-title-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.sidebar-item-title {
|
|
font-size: 13px;
|
|
color: var(--vscode-sideBar-foreground);
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.sidebar-item-language-badge {
|
|
flex-shrink: 0;
|
|
min-width: 18px;
|
|
padding: 1px 5px;
|
|
border-radius: 999px;
|
|
background: color-mix(in srgb, var(--vscode-badge-background) 82%, transparent);
|
|
color: var(--vscode-badge-foreground);
|
|
font-size: 10px;
|
|
font-weight: 700;
|
|
text-align: center;
|
|
}
|
|
|
|
.sidebar-item-meta {
|
|
font-size: 11px;
|
|
color: var(--vscode-descriptionForeground);
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.media-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: 2px;
|
|
padding: 4px;
|
|
}
|
|
|
|
.media-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
width: 100%;
|
|
padding: 6px 8px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
background: transparent;
|
|
color: inherit;
|
|
text-align: left;
|
|
}
|
|
|
|
.media-item:hover {
|
|
background-color: var(--vscode-list-hoverBackground);
|
|
}
|
|
|
|
.media-item.selected {
|
|
background-color: var(--vscode-list-activeSelectionBackground);
|
|
color: var(--vscode-list-activeSelectionForeground);
|
|
}
|
|
|
|
.media-thumbnail {
|
|
width: 40px;
|
|
height: 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-color: var(--vscode-input-background);
|
|
border-radius: 4px;
|
|
flex-shrink: 0;
|
|
overflow: hidden;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.media-thumbnail.has-image {
|
|
position: relative;
|
|
}
|
|
|
|
.media-thumbnail-fallback {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.media-thumbnail-image {
|
|
position: absolute;
|
|
inset: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
opacity: 0;
|
|
transition: opacity 0.15s ease;
|
|
}
|
|
|
|
.media-thumbnail.is-loaded .media-thumbnail-image {
|
|
opacity: 1;
|
|
}
|
|
|
|
.media-thumbnail.is-loaded .media-thumbnail-fallback {
|
|
opacity: 0;
|
|
}
|
|
|
|
.media-item-info {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.media-item-name {
|
|
font-size: 12px;
|
|
color: var(--vscode-sideBar-foreground);
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.media-item-size {
|
|
font-size: 10px;
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.sidebar-actions {
|
|
display: flex;
|
|
gap: 4px;
|
|
}
|
|
|
|
.sidebar-action {
|
|
background: transparent;
|
|
border: none;
|
|
padding: 2px;
|
|
color: var(--vscode-sideBar-foreground);
|
|
cursor: pointer;
|
|
opacity: 0.7;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.sidebar-action:hover {
|
|
opacity: 1;
|
|
background-color: var(--vscode-list-hoverBackground);
|
|
}
|
|
|
|
.sidebar-action.active {
|
|
background-color: var(--vscode-list-activeSelectionBackground);
|
|
opacity: 1;
|
|
}
|
|
|
|
.search-box {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
padding: 4px 12px 8px;
|
|
position: relative;
|
|
}
|
|
|
|
.search-box input {
|
|
flex: 1;
|
|
min-width: 0;
|
|
padding: 6px 28px 6px 8px;
|
|
font-size: 12px;
|
|
background-color: var(--vscode-input-background);
|
|
border: 1px solid var(--vscode-input-border);
|
|
color: var(--vscode-input-foreground);
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.search-box input::placeholder {
|
|
color: var(--vscode-input-placeholderForeground);
|
|
}
|
|
|
|
.search-box input:focus {
|
|
outline: none;
|
|
border-color: var(--vscode-focusBorder);
|
|
}
|
|
|
|
.search-box button[type="submit"] {
|
|
position: absolute;
|
|
right: 40px;
|
|
background: transparent;
|
|
border: none;
|
|
padding: 4px;
|
|
color: var(--vscode-descriptionForeground);
|
|
cursor: pointer;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.search-box button[type="submit"]:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
.search-box .clear-search {
|
|
position: absolute;
|
|
right: 16px;
|
|
background: transparent;
|
|
border: none;
|
|
padding: 4px;
|
|
color: var(--vscode-descriptionForeground);
|
|
cursor: pointer;
|
|
font-size: 10px;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.search-box .clear-search:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
.calendar-view {
|
|
padding: 8px 12px;
|
|
border-bottom: 1px solid var(--vscode-sideBar-border);
|
|
}
|
|
|
|
.calendar-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
color: var(--vscode-descriptionForeground);
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.calendar-header.collapsible-header {
|
|
cursor: pointer;
|
|
padding: 4px 6px;
|
|
margin: 0 -6px 8px -6px;
|
|
border-radius: 3px;
|
|
user-select: none;
|
|
}
|
|
|
|
.calendar-header.collapsible-header:hover {
|
|
background-color: var(--vscode-list-hoverBackground);
|
|
}
|
|
|
|
.calendar-header.collapsible-header.collapsed {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.calendar-header .collapse-icon {
|
|
font-size: 9px;
|
|
margin-right: 4px;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.calendar-header .clear-filter {
|
|
background: transparent;
|
|
border: none;
|
|
color: var(--vscode-descriptionForeground);
|
|
cursor: pointer;
|
|
font-size: 10px;
|
|
padding: 2px 4px;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.calendar-header .clear-filter:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
.calendar-years {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
}
|
|
|
|
.calendar-year-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 4px 6px;
|
|
cursor: pointer;
|
|
border-radius: 3px;
|
|
font-size: 12px;
|
|
color: var(--vscode-sideBar-foreground);
|
|
background: transparent;
|
|
text-align: left;
|
|
}
|
|
|
|
.calendar-year-header:hover {
|
|
background-color: var(--vscode-list-hoverBackground);
|
|
}
|
|
|
|
.calendar-year-header.selected {
|
|
background-color: var(--vscode-list-activeSelectionBackground);
|
|
}
|
|
|
|
.calendar-year-header .expand-icon {
|
|
font-size: 8px;
|
|
color: var(--vscode-descriptionForeground);
|
|
width: 10px;
|
|
}
|
|
|
|
.calendar-year-header .year-label {
|
|
flex: 1;
|
|
}
|
|
|
|
.calendar-year-header .year-count {
|
|
font-size: 10px;
|
|
color: var(--vscode-descriptionForeground);
|
|
background-color: var(--vscode-badge-background);
|
|
padding: 1px 6px;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.calendar-months {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1px;
|
|
padding-left: 16px;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.calendar-month {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 3px 6px;
|
|
cursor: pointer;
|
|
border-radius: 3px;
|
|
font-size: 12px;
|
|
color: var(--vscode-sideBar-foreground);
|
|
background: transparent;
|
|
text-align: left;
|
|
}
|
|
|
|
.calendar-month:hover {
|
|
background-color: var(--vscode-list-hoverBackground);
|
|
}
|
|
|
|
.calendar-month.selected {
|
|
background-color: var(--vscode-list-activeSelectionBackground);
|
|
}
|
|
|
|
.calendar-month .month-count {
|
|
font-size: 10px;
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.calendar-empty {
|
|
font-size: 12px;
|
|
color: var(--vscode-descriptionForeground);
|
|
padding: 8px;
|
|
text-align: center;
|
|
}
|
|
|
|
.month-count,
|
|
.sidebar-section-count {
|
|
font-size: 10px;
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.filter-panel {
|
|
padding: 8px 12px;
|
|
border-bottom: 1px solid var(--vscode-sideBar-border);
|
|
}
|
|
|
|
.filter-section {
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.filter-section:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.filter-header {
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
color: var(--vscode-descriptionForeground);
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.filter-header.collapsible-header {
|
|
cursor: pointer;
|
|
padding: 4px 6px;
|
|
margin: 0 -6px 6px -6px;
|
|
border-radius: 3px;
|
|
user-select: none;
|
|
}
|
|
|
|
.filter-header.collapsible-header:hover {
|
|
background-color: var(--vscode-list-hoverBackground);
|
|
}
|
|
|
|
.filter-header.collapsible-header.collapsed {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.filter-header .collapse-icon {
|
|
font-size: 9px;
|
|
margin-right: 4px;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.filter-header .clear-filter {
|
|
background: transparent;
|
|
border: none;
|
|
color: var(--vscode-descriptionForeground);
|
|
cursor: pointer;
|
|
font-size: 10px;
|
|
padding: 2px 4px;
|
|
margin-left: auto;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.filter-header .clear-filter:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
.filter-chips {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 4px;
|
|
}
|
|
|
|
.filter-chip {
|
|
background-color: var(--vscode-button-secondaryBackground);
|
|
color: var(--vscode-button-secondaryForeground);
|
|
border: none;
|
|
padding: 2px 8px;
|
|
font-size: 11px;
|
|
border-radius: 12px;
|
|
cursor: pointer;
|
|
transition: background-color 0.15s, opacity 0.15s;
|
|
}
|
|
|
|
.filter-chip:hover {
|
|
background-color: var(--vscode-button-secondaryHoverBackground);
|
|
}
|
|
|
|
.filter-chip.active {
|
|
background-color: var(--vscode-button-background);
|
|
color: var(--vscode-button-foreground);
|
|
}
|
|
|
|
.filter-chip.has-color {
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
.filter-chip.has-color:hover {
|
|
opacity: 0.85;
|
|
}
|
|
|
|
.filter-chip.has-color.active {
|
|
box-shadow: 0 0 0 2px var(--vscode-focusBorder, #007fd4);
|
|
}
|
|
|
|
.filter-status {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 6px 12px;
|
|
font-size: 11px;
|
|
color: var(--vscode-descriptionForeground);
|
|
background-color: var(--vscode-list-hoverBackground);
|
|
border-bottom: 1px solid var(--vscode-sideBar-border);
|
|
}
|
|
|
|
.filter-status button {
|
|
background: transparent;
|
|
border: none;
|
|
color: var(--accent-color);
|
|
cursor: pointer;
|
|
font-size: 11px;
|
|
padding: 0;
|
|
}
|
|
|
|
.filter-status button:hover {
|
|
text-decoration: underline;
|
|
background: transparent;
|
|
}
|
|
|
|
.sidebar-load-more {
|
|
padding: 12px 16px;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.load-more-button {
|
|
width: 100%;
|
|
padding: 8px 16px;
|
|
background-color: var(--vscode-button-secondaryBackground);
|
|
color: var(--vscode-button-secondaryForeground);
|
|
border: none;
|
|
border-radius: 4px;
|
|
font-size: 12px;
|
|
cursor: pointer;
|
|
transition: background-color 0.2s;
|
|
}
|
|
|
|
.import-analysis {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
padding: 18px 20px 26px;
|
|
color: var(--vscode-foreground);
|
|
}
|
|
|
|
.import-analysis-header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.import-analysis-header p {
|
|
margin: 0;
|
|
color: var(--vscode-descriptionForeground);
|
|
font-size: 13px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.import-definition-name {
|
|
width: min(480px, 100%);
|
|
border: 1px solid var(--vscode-input-border, transparent);
|
|
background: var(--vscode-input-background);
|
|
color: var(--vscode-input-foreground, var(--vscode-foreground));
|
|
border-radius: 6px;
|
|
padding: 10px 12px;
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.import-file-selectors {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.import-file-row {
|
|
display: grid;
|
|
grid-template-columns: 150px minmax(0, 1fr) auto;
|
|
gap: 12px;
|
|
align-items: center;
|
|
padding: 12px 14px;
|
|
border: 1px solid var(--vscode-panel-border);
|
|
border-radius: 8px;
|
|
background: color-mix(in srgb, var(--vscode-editor-background) 76%, var(--vscode-input-background));
|
|
}
|
|
|
|
.import-file-row label {
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
color: var(--vscode-descriptionForeground);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
}
|
|
|
|
.import-file-path {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
font-family: var(--vscode-editor-font-family, ui-monospace, monospace);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.import-file-path.placeholder {
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.import-analysis button,
|
|
.import-analysis select {
|
|
border: 1px solid var(--vscode-button-border, transparent);
|
|
border-radius: 6px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.import-analysis button {
|
|
background: var(--vscode-button-secondaryBackground, var(--vscode-button-background));
|
|
color: var(--vscode-button-secondaryForeground, var(--vscode-button-foreground));
|
|
padding: 8px 12px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.import-analysis button:hover:not(:disabled) {
|
|
background: var(--vscode-button-secondaryHoverBackground, var(--vscode-button-hoverBackground));
|
|
}
|
|
|
|
.import-analyze-btn,
|
|
.import-execute-btn {
|
|
background: var(--vscode-button-background) !important;
|
|
color: var(--vscode-button-foreground) !important;
|
|
}
|
|
|
|
.import-analysis button:disabled {
|
|
opacity: 0.65;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.import-loading {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 16px;
|
|
border: 1px solid var(--vscode-panel-border);
|
|
border-radius: 10px;
|
|
background: color-mix(in srgb, var(--vscode-editor-background) 84%, var(--vscode-input-background));
|
|
}
|
|
|
|
.import-spinner {
|
|
width: 18px;
|
|
height: 18px;
|
|
border: 2px solid var(--vscode-descriptionForeground);
|
|
border-top-color: var(--vscode-button-background);
|
|
border-radius: 50%;
|
|
animation: import-spinner-rotate 0.8s linear infinite;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.import-progress {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
}
|
|
|
|
.import-progress-step {
|
|
font-size: 13px;
|
|
color: var(--vscode-foreground);
|
|
}
|
|
|
|
.import-progress-detail {
|
|
font-size: 11px;
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
@keyframes import-spinner-rotate {
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.import-site-info {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.import-site-info-item,
|
|
.import-stat-card,
|
|
.import-date-distribution,
|
|
.import-detail-section,
|
|
.import-execute-section {
|
|
border: 1px solid var(--vscode-panel-border);
|
|
border-radius: 10px;
|
|
background: color-mix(in srgb, var(--vscode-editor-background) 84%, var(--vscode-input-background));
|
|
}
|
|
|
|
.import-site-info-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
padding: 14px;
|
|
}
|
|
|
|
.info-label {
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
color: var(--vscode-descriptionForeground);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
.info-value {
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.import-stat-cards {
|
|
display: grid;
|
|
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.import-stat-card {
|
|
padding: 14px;
|
|
}
|
|
|
|
.import-stat-card h3,
|
|
.import-date-distribution h3,
|
|
.import-detail-section h3,
|
|
.taxonomy-group h4 {
|
|
margin: 0;
|
|
}
|
|
|
|
.import-stat-number {
|
|
margin-top: 10px;
|
|
font-size: 28px;
|
|
font-weight: 700;
|
|
line-height: 1;
|
|
}
|
|
|
|
.import-stat-breakdown,
|
|
.import-execute-summary,
|
|
.import-taxonomy-list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
|
|
.import-stat-breakdown {
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.import-stat-tag,
|
|
.import-count-tag,
|
|
.import-taxonomy-pill,
|
|
.macro-status-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
padding: 4px 9px;
|
|
border-radius: 999px;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.stat-new,
|
|
.import-taxonomy-pill.new-tax {
|
|
background: rgba(117, 190, 255, 0.16);
|
|
color: #75beff;
|
|
}
|
|
|
|
.stat-update,
|
|
.stat-mapped,
|
|
.import-taxonomy-pill.exists,
|
|
.import-taxonomy-pill.mapped,
|
|
.macro-status-badge.mapped,
|
|
.import-execution-complete {
|
|
background: rgba(115, 201, 145, 0.16);
|
|
color: #73c991;
|
|
}
|
|
|
|
.stat-conflict {
|
|
background: rgba(255, 166, 87, 0.16);
|
|
color: #ffb169;
|
|
}
|
|
|
|
.stat-duplicate,
|
|
.stat-missing,
|
|
.macro-status-badge.unmapped,
|
|
.import-execution-error {
|
|
background: rgba(204, 167, 0, 0.16);
|
|
color: #cca700;
|
|
}
|
|
|
|
.import-date-distribution,
|
|
.import-detail-section,
|
|
.import-execute-section {
|
|
padding: 16px;
|
|
}
|
|
|
|
.import-section-toggle {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
padding: 0;
|
|
border: none !important;
|
|
background: transparent !important;
|
|
color: inherit !important;
|
|
font-size: 16px !important;
|
|
font-weight: 600;
|
|
text-align: left;
|
|
}
|
|
|
|
.import-section-toggle:hover {
|
|
background: transparent !important;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.toggle-icon {
|
|
font-size: 12px;
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.distribution-bars {
|
|
display: grid;
|
|
gap: 10px;
|
|
margin-top: 14px;
|
|
}
|
|
|
|
.distribution-row {
|
|
display: grid;
|
|
grid-template-columns: 56px minmax(0, 1fr) 72px;
|
|
gap: 10px;
|
|
align-items: center;
|
|
}
|
|
|
|
.distribution-year,
|
|
.distribution-count,
|
|
.slug-cell {
|
|
font-family: var(--vscode-editor-font-family, ui-monospace, monospace);
|
|
font-size: 11px;
|
|
}
|
|
|
|
.distribution-bar-container {
|
|
height: 10px;
|
|
border-radius: 999px;
|
|
overflow: hidden;
|
|
background: var(--vscode-input-background);
|
|
}
|
|
|
|
.distribution-bar {
|
|
height: 100%;
|
|
min-width: 8px;
|
|
border-radius: inherit;
|
|
}
|
|
|
|
.distribution-bar-posts {
|
|
background: linear-gradient(90deg, rgba(117, 190, 255, 0.8), rgba(117, 190, 255, 0.35));
|
|
}
|
|
|
|
.import-execute-section {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 16px;
|
|
}
|
|
|
|
.import-execute-summary {
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.import-execution-complete,
|
|
.import-execution-error {
|
|
padding: 10px 12px;
|
|
border-radius: 8px;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.import-execution-progress {
|
|
display: grid;
|
|
gap: 10px;
|
|
padding: 16px;
|
|
border: 1px solid var(--vscode-panel-border);
|
|
border-radius: 10px;
|
|
background: color-mix(in srgb, var(--vscode-editor-background) 84%, var(--vscode-input-background));
|
|
}
|
|
|
|
.import-execution-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
}
|
|
|
|
.import-execution-header h3 {
|
|
margin: 0;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.import-progress-bar {
|
|
height: 10px;
|
|
border-radius: 999px;
|
|
overflow: hidden;
|
|
background: var(--vscode-input-background);
|
|
}
|
|
|
|
.import-progress-fill {
|
|
height: 100%;
|
|
background: linear-gradient(90deg, rgba(117, 190, 255, 0.85), rgba(117, 190, 255, 0.45));
|
|
}
|
|
|
|
.import-progress-info {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
flex-wrap: wrap;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.import-phase {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.import-detail,
|
|
.import-counter {
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.import-detail-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin-top: 14px;
|
|
}
|
|
|
|
.import-detail-table th,
|
|
.import-detail-table td {
|
|
padding: 10px 8px;
|
|
text-align: left;
|
|
border-bottom: 1px solid var(--vscode-panel-border);
|
|
vertical-align: middle;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.import-detail-table th {
|
|
font-size: 11px;
|
|
color: var(--vscode-descriptionForeground);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
}
|
|
|
|
.import-detail-table .status-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
border-radius: 999px;
|
|
padding: 4px 9px;
|
|
font-size: 10px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
}
|
|
|
|
.import-detail-table .status-badge.new {
|
|
background: rgba(117, 190, 255, 0.16);
|
|
color: #75beff;
|
|
}
|
|
|
|
.import-detail-table .status-badge.update {
|
|
background: rgba(115, 201, 145, 0.16);
|
|
color: #73c991;
|
|
}
|
|
|
|
.import-detail-table .status-badge.conflict {
|
|
background: rgba(255, 166, 87, 0.16);
|
|
color: #ffb169;
|
|
}
|
|
|
|
.import-detail-table .status-badge.duplicate,
|
|
.import-detail-table .status-badge.missing {
|
|
background: rgba(204, 167, 0, 0.16);
|
|
color: #cca700;
|
|
}
|
|
|
|
.categories-cell,
|
|
.existing-match,
|
|
.mime-type-cell,
|
|
.post-type-cell {
|
|
font-size: 11px;
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.mime-type-cell,
|
|
.post-type-cell,
|
|
.existing-match,
|
|
.slug-cell {
|
|
font-family: var(--vscode-editor-font-family, ui-monospace, monospace);
|
|
}
|
|
|
|
.resolution-select,
|
|
.taxonomy-mapping-input {
|
|
min-width: 150px;
|
|
background: var(--vscode-dropdown-background, var(--vscode-input-background));
|
|
color: var(--vscode-dropdown-foreground, var(--vscode-foreground));
|
|
border: 1px solid var(--vscode-dropdown-border, var(--vscode-panel-border));
|
|
padding: 6px 8px;
|
|
}
|
|
|
|
.taxonomy-analyze-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 0 0 12px;
|
|
margin-top: 12px;
|
|
border-bottom: 1px solid var(--vscode-panel-border);
|
|
}
|
|
|
|
.taxonomy-analyze-dropdown {
|
|
position: relative;
|
|
}
|
|
|
|
.taxonomy-analyze-btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.taxonomy-model-dropdown {
|
|
position: absolute;
|
|
top: calc(100% + 6px);
|
|
left: 0;
|
|
min-width: 220px;
|
|
max-height: 280px;
|
|
overflow-y: auto;
|
|
background: var(--vscode-dropdown-background, var(--vscode-sideBar-background));
|
|
border: 1px solid var(--vscode-dropdown-border, var(--vscode-panel-border));
|
|
border-radius: 6px;
|
|
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
|
|
z-index: 20;
|
|
}
|
|
|
|
.taxonomy-model-option {
|
|
width: 100%;
|
|
display: block;
|
|
border: none !important;
|
|
border-radius: 0 !important;
|
|
background: transparent !important;
|
|
color: var(--vscode-foreground) !important;
|
|
text-align: left;
|
|
padding: 8px 12px !important;
|
|
}
|
|
|
|
.taxonomy-model-option:hover {
|
|
background: var(--vscode-list-hoverBackground) !important;
|
|
}
|
|
|
|
.taxonomy-analyze-hint {
|
|
font-size: 11px;
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.import-taxonomy-groups {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 16px;
|
|
margin-top: 14px;
|
|
}
|
|
|
|
.taxonomy-group {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
.import-taxonomy-entry,
|
|
.import-taxonomy-edit-form {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.import-taxonomy-entry,
|
|
.import-taxonomy-edit-form {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.import-taxonomy-pill {
|
|
border: none;
|
|
cursor: default;
|
|
}
|
|
|
|
button.import-taxonomy-pill {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.mapped-target {
|
|
background: rgba(115, 201, 145, 0.1);
|
|
}
|
|
|
|
.taxonomy-mapping-arrow {
|
|
color: var(--vscode-descriptionForeground);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.taxonomy-mapping-input {
|
|
min-width: 170px;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.taxonomy-edit-btn,
|
|
.taxonomy-clear-btn {
|
|
min-width: 28px;
|
|
min-height: 28px;
|
|
padding: 0 8px !important;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.taxonomy-edit-btn.ghost,
|
|
.taxonomy-clear-btn {
|
|
background: transparent !important;
|
|
border: 1px solid var(--vscode-panel-border) !important;
|
|
color: var(--vscode-descriptionForeground) !important;
|
|
}
|
|
|
|
.macros-list {
|
|
display: grid;
|
|
gap: 10px;
|
|
margin-top: 14px;
|
|
}
|
|
|
|
.macro-item {
|
|
border: 1px solid var(--vscode-panel-border);
|
|
border-radius: 8px;
|
|
background: var(--vscode-input-background);
|
|
}
|
|
|
|
.macro-item.unmapped {
|
|
border-left: 3px solid #cca700;
|
|
}
|
|
|
|
.macro-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 12px 14px;
|
|
}
|
|
|
|
.macro-name,
|
|
.import-taxonomy-pill {
|
|
font-family: var(--vscode-editor-font-family, ui-monospace, monospace);
|
|
}
|
|
|
|
.macro-count {
|
|
margin-left: auto;
|
|
font-size: 11px;
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
.import-empty-state {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 12px;
|
|
padding: 56px 20px;
|
|
color: var(--vscode-descriptionForeground);
|
|
border: 1px dashed var(--vscode-panel-border);
|
|
border-radius: 12px;
|
|
}
|
|
|
|
.import-empty-state p {
|
|
margin: 0;
|
|
font-size: 13px;
|
|
}
|
|
|
|
@media (max-width: 1100px) {
|
|
.import-site-info,
|
|
.import-stat-cards,
|
|
.import-taxonomy-groups {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
}
|
|
|
|
@media (max-width: 780px) {
|
|
.import-analysis {
|
|
padding: 14px;
|
|
}
|
|
|
|
.import-file-row,
|
|
.distribution-row,
|
|
.import-execute-section,
|
|
.import-site-info,
|
|
.import-stat-cards,
|
|
.import-taxonomy-groups {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.import-execute-section {
|
|
align-items: stretch;
|
|
}
|
|
|
|
.import-file-row {
|
|
align-items: stretch;
|
|
}
|
|
|
|
.import-analysis button,
|
|
.resolution-select,
|
|
.taxonomy-mapping-input {
|
|
width: 100%;
|
|
}
|
|
|
|
.taxonomy-analyze-row {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.import-taxonomy-entry,
|
|
.import-taxonomy-edit-form {
|
|
width: 100%;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
}
|
|
|
|
.load-more-button:hover:not(:disabled) {
|
|
background-color: var(--vscode-button-secondaryHoverBackground);
|
|
}
|
|
|
|
.filter-section {
|
|
padding-top: 4px;
|
|
}
|
|
|
|
.filter-header {
|
|
width: 100%;
|
|
padding: 6px 0;
|
|
background: transparent;
|
|
color: var(--vscode-foreground);
|
|
text-align: left;
|
|
}
|
|
|
|
.filter-chips {
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.filter-chip {
|
|
padding: 5px 10px;
|
|
border-radius: 999px;
|
|
background: var(--vscode-input-background);
|
|
color: var(--vscode-foreground);
|
|
}
|
|
|
|
.filter-status {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
color: var(--vscode-descriptionForeground);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.filter-status button,
|
|
.load-more-button {
|
|
padding: 6px 10px;
|
|
border-radius: 6px;
|
|
background: var(--vscode-input-background);
|
|
color: var(--vscode-foreground);
|
|
}
|
|
|
|
.sidebar-load-more {
|
|
padding-bottom: 12px;
|
|
}
|
|
|
|
.load-more-button {
|
|
width: 100%;
|
|
}
|
|
|
|
.media-item-info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
}
|
|
|
|
.media-item-name {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.media-item-size {
|
|
color: var(--vscode-descriptionForeground);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.chat-list-item {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
padding: 8px 12px;
|
|
border: none;
|
|
border-bottom: 1px solid var(--vscode-sideBar-border);
|
|
background: transparent;
|
|
color: inherit;
|
|
text-align: left;
|
|
}
|
|
|
|
.chat-list-item:hover {
|
|
background: var(--vscode-list-hoverBackground);
|
|
}
|
|
|
|
.chat-list-item.active {
|
|
background: var(--vscode-list-activeSelectionBackground);
|
|
color: var(--vscode-list-activeSelectionForeground);
|
|
}
|
|
|
|
.chat-item-content {
|
|
display: flex;
|
|
flex: 1;
|
|
min-width: 0;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
}
|
|
|
|
.chat-item-open {
|
|
display: flex;
|
|
flex: 1;
|
|
min-width: 0;
|
|
padding: 0;
|
|
border: none;
|
|
background: transparent;
|
|
color: inherit;
|
|
text-align: left;
|
|
}
|
|
|
|
.chat-item-open:hover {
|
|
background: transparent;
|
|
}
|
|
|
|
.chat-item-open:focus-visible {
|
|
outline: 1px solid var(--vscode-focusBorder);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.chat-item-title {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.chat-item-date {
|
|
color: var(--vscode-descriptionForeground);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.chat-item-delete {
|
|
background: transparent;
|
|
border: none;
|
|
color: var(--vscode-descriptionForeground);
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
padding: 0 4px;
|
|
opacity: 0;
|
|
transition: opacity 0.15s, color 0.15s;
|
|
}
|
|
|
|
.chat-list-item:hover .chat-item-delete,
|
|
.chat-list-item.active .chat-item-delete {
|
|
opacity: 1;
|
|
}
|
|
|
|
.chat-item-delete:hover {
|
|
color: var(--vscode-errorForeground);
|
|
}
|
|
|
|
.settings-nav-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
padding: 0 12px 12px;
|
|
}
|
|
|
|
.settings-nav-entry {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
width: 100%;
|
|
padding: 10px 12px;
|
|
border: none;
|
|
border-radius: 10px;
|
|
background: transparent;
|
|
color: inherit;
|
|
text-align: left;
|
|
}
|
|
|
|
.settings-nav-entry:hover {
|
|
background: var(--vscode-list-hoverBackground);
|
|
}
|
|
|
|
.settings-nav-entry-icon {
|
|
width: 18px;
|
|
flex: 0 0 18px;
|
|
text-align: center;
|
|
}
|
|
|
|
.sidebar-empty {
|
|
padding: 16px 12px;
|
|
color: var(--vscode-descriptionForeground);
|
|
}
|
|
|
|
@media (max-width: 820px) {
|
|
.dashboard-stats {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.recent-post-item {
|
|
align-items: flex-start;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.media-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
} |