fix: unified UI for markdown buttons

This commit is contained in:
2026-02-14 15:38:55 +01:00
parent ce94d22d30
commit 43ca543934
2 changed files with 70 additions and 23 deletions

View File

@@ -240,6 +240,23 @@
background-color: var(--vscode-button-secondaryHoverBackground);
}
.insert-post-link-button,
.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;
}
.insert-post-link-button:hover,
.insert-media-button:hover {
background-color: var(--vscode-button-secondaryHoverBackground);
}
.editor-preview {
flex: 1;
background-color: var(--vscode-input-background);