perf: optimizing css (#180)

- 移除不会生效、无效的片段
- 调整部分属性的书写顺序
- 移除不再使用的图片
This commit is contained in:
YangQi 2022-08-09 20:13:40 +08:00 committed by GitHub
parent aa7dbbd3e4
commit 4c0b029430
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 69 additions and 126 deletions

View File

@ -24,7 +24,7 @@ body,
::-webkit-scrollbar { ::-webkit-scrollbar {
width: 6px; width: 6px;
height: 6px; height: 6px;
background-color: #fff; background-color: #ffffff;
} }
::-webkit-scrollbar-track { ::-webkit-scrollbar-track {
@ -35,47 +35,39 @@ body,
::-webkit-scrollbar-thumb { ::-webkit-scrollbar-thumb {
border-radius: 6px; border-radius: 6px;
background-color: rgba(144, 146, 152, 0.5); background-color: rgba(144, 146, 152, 0.5);
transition: background-color 0.3s;
} }
::-webkit-scrollbar-thumb:hover {
background-color: rgba(144, 146, 152, 0.5);
}
/* CSS-hints */ /* CSS-hints */
.CodeMirror-hints { .CodeMirror-hints {
position: absolute; position: absolute;
z-index: 10; z-index: 10;
overflow: hidden; overflow-y: auto;
list-style: none;
margin: 0; margin: 0;
padding: 2px; padding: 2px;
border-radius: 4px; border-radius: 4px;
background-color: #ffffff; max-height: 20em;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.08);
min-width: 200px; min-width: 200px;
font-size: 12px; font-size: 12px;
font-family: monospace; font-family: monospace;
max-height: 20em;
overflow-y: auto;
color: #333333; color: #333333;
background-color: #ffffff;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.08);
} }
.CodeMirror-hint { .CodeMirror-hint {
margin: 0;
margin-top: 10px; margin-top: 10px;
padding: 4px 6px; padding: 4px 6px;
border-radius: 2px; border-radius: 2px;
white-space: pre; white-space: pre;
color: black; color: #000000;
cursor: pointer; cursor: pointer;
}
.CodeMirror-hint:first-of-type { &:first-of-type {
margin-top: 0; margin-top: 0;
} }
.CodeMirror-hint:hover { &:hover {
background: #f0f0f0; background: #f0f0f0;
}
} }
</style> </style>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -1,41 +1,6 @@
<template> <template>
<el-container class="top is-dark"> <el-container class="header-container is-dark">
<el-dialog title="发布" :visible.sync="form.dialogVisible"> <div class="dropdowns">
<div class="postInfo">
<el-form ref="form" :model="form" label-width="80px">
<el-form-item label="封面">
<el-input
v-model="form.thumb"
placeholder="自动提取第一张图"
></el-input>
</el-form-item>
<el-form-item label="标题">
<el-input
v-model="form.title"
placeholder="自动提取第一个标题"
></el-input>
</el-form-item>
<el-form-item label="描述">
<el-input
type="textarea"
:rows="4"
v-model="form.desc"
placeholder="自动提取第一个段落"
></el-input>
</el-form-item>
<el-form-item>
<div class="info">
此功能由第三方浏览器插件支持本平台不保证安全性
</div>
</el-form-item>
</el-form>
</div>
<span slot="footer" class="dialog-footer">
<el-button @click="form.dialogVisible = false"> </el-button>
<el-button type="primary" @click="post"> </el-button>
</span>
</el-dialog>
<div class="left-side">
<el-dropdown> <el-dropdown>
<span class="el-dropdown-link"> <span class="el-dropdown-link">
文件<i class="el-icon-arrow-down el-icon--right"></i> 文件<i class="el-icon-arrow-down el-icon--right"></i>
@ -267,16 +232,48 @@
</el-dropdown-menu> </el-dropdown-menu>
</el-dropdown> </el-dropdown>
</div> </div>
<div class="right-side">
<el-button plain size="medium" :type="btnType" @click="copy"> <el-button plain size="medium" :type="btnType" @click="copy">
复制 复制
</el-button> </el-button>
<el-button plain size="medium" :type="btnType" @click="prePost"> <el-button plain size="medium" :type="btnType" @click="prePost">
发布 发布
</el-button> </el-button>
</div>
<el-dialog title="发布" :visible.sync="form.dialogVisible">
<div class="postInfo">
<el-form ref="form" :model="form" label-width="80px">
<el-form-item label="封面">
<el-input
v-model="form.thumb"
placeholder="自动提取第一张图"
></el-input>
</el-form-item>
<el-form-item label="标题">
<el-input
v-model="form.title"
placeholder="自动提取第一个标题"
></el-input>
</el-form-item>
<el-form-item label="描述">
<el-input
type="textarea"
:rows="4"
v-model="form.desc"
placeholder="自动提取第一个段落"
></el-input>
</el-form-item>
<el-form-item>
<div class="info">
此功能由第三方浏览器插件支持本平台不保证安全性
</div>
</el-form-item>
</el-form>
</div>
<span slot="footer" class="dialog-footer">
<el-button @click="form.dialogVisible = false"> </el-button>
<el-button type="primary" @click="post"> </el-button>
</span>
</el-dialog>
<reset-dialog <reset-dialog
:show-reset-confirm="showResetConfirm" :show-reset-confirm="showResetConfirm"
@confirm="confirmReset" @confirm="confirmReset"
@ -517,61 +514,15 @@ export default {
</script> </script>
<style lang="less" scoped> <style lang="less" scoped>
.editor__header { .header-container {
width: 100%;
}
.header__switch {
margin-left: 8px;
}
.mode__switch {
margin-left: 24px;
margin-right: 24px;
width: 24px;
height: 24px;
background: url('../../assets/images/night.png') no-repeat;
background-size: cover;
transition: all 0.3s;
}
.mode__switch_black {
background: url('../../assets/images/light.png') no-repeat;
background-size: cover;
}
.top {
height: 60px;
padding: 10px 20px; padding: 10px 20px;
display: flex;
align-items: center; align-items: center;
margin-right: 0;
} }
.el-select { .dropdowns {
margin-right: 12px;
}
.left-side {
display: flex;
align-items: center;
flex: 1; flex: 1;
} }
.right-side {
display: flex;
align-items: center;
}
/*
.preview table tr:nth-child(even){
background: rgb(250, 250, 250);
}
*/
.select-item-left {
float: left;
}
.select-item-right { .select-item-right {
float: right; float: right;
color: #8492a6; color: #8492a6;

View File

@ -90,14 +90,24 @@ export default {
z-index: 9999; z-index: 9999;
} }
.menu__group {
margin: 0;
padding: 6px 0;
border-bottom: 1px solid #eeeeee;
&:last-of-type {
border-bottom: none;
}
}
.menu_item { .menu_item {
list-style: none; list-style: none;
box-sizing: border-box; box-sizing: border-box;
padding: 4px 0 4px 24px; padding: 4px 0 4px 24px;
margin-top: 10px; margin-top: 10px;
min-width: 200px; min-width: 200px;
font-size: 12px;
line-height: 20px; line-height: 20px;
font-size: 12px;
color: #333333; color: #333333;
cursor: pointer; cursor: pointer;
@ -113,14 +123,4 @@ export default {
width: 100%; width: 100%;
} }
} }
.menu__group {
margin: 0;
padding: 6px 0;
border-bottom: 1px solid #eeeeee;
&:last-of-type {
border-bottom: none;
}
}
</style> </style>