particularly complete forum function, add point order export and user delete

This commit is contained in:
2024-03-22 01:47:55 +08:00
parent 87df8d5966
commit 932b83ddcd
52 changed files with 2806 additions and 132 deletions

View File

@@ -0,0 +1,63 @@
.dark-theme {
--w-e-toolbar-active-bg-color: #2c2c2c;
transition: all 1s;
}
.dark-theme {
background-color: #333;
color: #ccc;
}
.dark-theme .w-e-text-container {
background: #333;
color: #ccc;
}
.dark-theme .w-e-bar-item-menus-container{
background: #333;
color: #ccc;
}
.dark-theme .w-e-toolbar {
background: #444;
border-bottom: 1px solid #555;
}
.dark-theme .w-e-menu {
color: #fff;
/* 更明亮的文字颜色 */
}
.dark-theme .w-e-bar-item button {
color: #fff!important;
/* 更明亮的图标颜色 */
}
.dark-theme .w-e-bar svg {
fill: #fff;
}
.dark-theme .w-e-icon {
color: #fff;
/* 更明亮的图标颜色 */
}
.dark-theme .w-e-menu.active {
color: #409EFF;
/* 菜单选中时的颜色 */
}
.dark-theme .w-e-menu-text {
color: #fff;
/* 更明亮的菜单文字颜色 */
}
.dark-theme .w-e-bar{
background-color: #ffffff00;
}
.dark-theme .w-e-droplist.w-e-list {
background-color: #444;
}
.dark-theme .w-e-list,
.dark-theme .w-e-list li a {
color: #ccc;
}
.dark-theme .w-e-text a {
color: #5dbeff;
}

View File

@@ -0,0 +1,53 @@
.editor-content-view {
border-radius: 5px;
overflow-x: auto;
}
.editor-content-view p,
.editor-content-view li {
white-space: pre-wrap;
/* 保留空格 */
}
.editor-content-view blockquote {
border-left: 8px solid #d0e5f2;
padding: 10px 10px;
margin: 10px 0;
background-color: #f1f1f1;
}
.editor-content-view code {
font-family: monospace;
background-color: #b6b6b679;
padding: 3px;
border-radius: 3px;
}
.editor-content-view pre > code {
display: block;
padding: 10px;
}
.editor-content-view table {
border-collapse: collapse;
}
.editor-content-view td,
.editor-content-view th {
border: 1px solid #ccc;
min-width: 50px;
height: 20px;
}
.editor-content-view th {
background-color: #f1f1f1;
}
.editor-content-view ul,
.editor-content-view ol {
padding-left: 20px;
}
.editor-content-view input[type='checkbox'] {
margin-right: 5px;
}