enhanced-word-mcp-server-live
Version:
Enhanced Word MCP server with live editing capabilities. Features real-time Word document collaboration via WebSocket, Office Add-in integration, and comprehensive document operations with regex positioning fixes.
128 lines (111 loc) • 2.4 kB
CSS
/* Basic Office UI Fabric styles for compatibility */
.ms-welcome {
padding: 20px;
display: flex;
flex-direction: column;
height: 100vh;
}
.ms-welcome__header {
background-color: #f3f2f1;
padding: 20px;
margin: -20px -20px 20px -20px;
}
.ms-font-su {
font-size: 21px;
font-weight: 100;
color: #323130;
margin: 0;
}
.ms-font-m {
font-size: 14px;
color: #323130;
line-height: 1.4;
}
.ms-welcome__main {
flex: 1;
padding: 20px 0;
}
.ms-Button {
background-color: #0078d4;
border: 1px solid #0078d4;
border-radius: 2px;
color: white;
cursor: pointer;
font-size: 14px;
font-weight: 400;
padding: 8px 16px;
text-align: center;
text-decoration: none;
display: inline-block;
margin: 10px 0;
width: 100%;
transition: background-color 0.2s;
}
.ms-Button:hover {
background-color: #106ebe;
border-color: #106ebe;
}
.ms-Button:disabled {
background-color: #f3f2f1;
border-color: #edebe9;
color: #a19f9d;
cursor: not-allowed;
}
/* MCP Live Connector Custom Styles */
.status-container {
display: flex;
align-items: center;
margin-bottom: 15px;
padding: 12px;
background-color: #f3f2f1;
border-radius: 4px;
}
#status-indicator {
width: 18px;
height: 18px;
border-radius: 50%;
margin-right: 12px;
transition: background-color 0.3s ease;
flex-shrink: 0;
}
.status-indicator-gray { background-color: #a19f9d; }
.status-indicator-orange { background-color: #ffaa44; }
.status-indicator-green { background-color: #107c10; }
.status-indicator-red { background-color: #d13438; }
#status-text {
font-weight: 600;
font-size: 14px;
letter-spacing: 0.5px;
color: #323130;
}
#connect-button {
width: 100%;
}
#connect-button.is-connected {
background-color: #d13438;
border-color: #d13438;
color: white;
}
#connect-button.is-connected:hover {
background-color: #a82a2e;
border-color: #a82a2e;
}
.help-text {
margin-top: 20px;
padding: 15px;
background-color: #f8f9fa;
border-radius: 4px;
border-left: 4px solid #0078d4;
}
.help-text p {
margin: 8px 0;
font-size: 13px;
line-height: 1.4;
}
.help-text code {
background-color: #e1ecf4;
padding: 2px 4px;
border-radius: 3px;
font-family: 'Courier New', monospace;
font-size: 12px;
}