feat:脚本只读

This commit is contained in:
xiaozhu
2026-08-12 14:34:31 +08:00
parent dc4d190935
commit fe65034aa8
4 changed files with 364 additions and 157 deletions
+59
View File
@@ -1989,3 +1989,62 @@ button {
width: calc(100% - 30px);
}
}
/* ============ 只读编辑器样式 ============ */
.readonly-editor-container {
display: flex;
flex-direction: column;
height: 100%;
background: #f8f9fa;
}
.readonly-editor-banner {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 10px 16px;
background: #fff3cd;
border-bottom: 1px solid #e0e0e0;
color: #856404;
font-size: 13px;
font-weight: 500;
}
.readonly-editor-banner svg {
flex-shrink: 0;
}
.readonly-editor-loading {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
flex: 1;
gap: 16px;
color: #666;
font-size: 14px;
}
.readonly-editor-error {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
flex: 1;
gap: 12px;
color: #dc3545;
font-size: 14px;
text-align: center;
}
.readonly-editor-error strong {
font-size: 16px;
}
.readonly-editor-error p {
margin: 0;
color: #666;
}
}
}