Code MCP Server
Official
by block
- vscode-mcp
- extension
- media
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
padding: 0 20px;
color: var(--vscode-foreground);
font-size: 13px;
line-height: 1.4;
}
.container {
max-width: 100%;
margin: 0 auto;
padding: 10px 0;
}
h2 {
margin-top: 0;
color: var(--vscode-editor-foreground);
font-weight: 400;
border-bottom: 1px solid var(--vscode-panel-border);
padding-bottom: 10px;
}
h3 {
margin-top: 15px;
margin-bottom: 10px;
font-weight: 400;
color: var(--vscode-editor-foreground);
}
.settings-section {
margin-bottom: 20px;
}
.setting-item {
display: flex;
align-items: center;
margin-bottom: 10px;
padding: 5px 0;
}
.setting-label {
margin-left: 10px;
}
/* Toggle switch styling */
.switch {
position: relative;
display: inline-block;
width: 40px;
height: 20px;
}
/* Hide default HTML checkbox */
.switch input {
opacity: 0;
width: 0;
height: 0;
}
/* The slider */
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: var(--vscode-checkbox-background);
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 16px;
width: 16px;
left: 2px;
bottom: 2px;
background-color: var(--vscode-checkbox-foreground);
transition: .4s;
}
input:checked + .slider {
background-color: var(--vscode-button-background);
}
input:checked + .slider:before {
transform: translateX(20px);
}
/* Rounded sliders */
.slider.round {
border-radius: 20px;
}
.slider.round:before {
border-radius: 50%;
}
button {
color: var(--vscode-button-foreground);
background-color: var(--vscode-button-background);
border: none;
padding: 8px 12px;
cursor: pointer;
border-radius: 2px;
font-size: 13px;
}
button:hover {
background-color: var(--vscode-button-hoverBackground);
}
.actions {
margin-top: 20px;
display: flex;
justify-content: flex-end;
}