style: 修改整体布局样式

main
wu.jian2 2 years ago
parent 5b1c53013e
commit d20c2b071e

@ -27,6 +27,6 @@ export default {
<style lang="scss" scoped>
.right-screen-list-wrap {
width: 100%;
padding-bottom: 16px;
// padding-bottom: 16px;
}
</style>

@ -77,7 +77,7 @@ export default {
// padding-top: 16px;
width: 220px;
// height: 100%;
margin-bottom: 16px;
// margin-bottom: 16px;
box-sizing: border-box;
color: var(--bs-el-title);
background-color: var(--bs-background-2);

@ -25,6 +25,7 @@ export default {
.bs-manage-main-wrap {
display: flex;
height: 100%;
padding-top: 16px;
background-color: var(--bs-background-1);
// padding-top: 16px;
}
</style>

@ -315,7 +315,8 @@ export default {
.big-screen-list-wrap {
position: relative;
height: 100%;
margin:0 16px;
// margin:0 16px;
margin-left: 16px;
padding: 16px;
color: #9ea9b2;
background-color: var(--bs-background-2) !important;

@ -35,6 +35,6 @@ export default {
<style lang="scss" scoped>
.right-screen-list-wrap {
width: 100%;
padding-bottom: 16px;
// padding-bottom: 16px;
}
</style>

@ -256,7 +256,7 @@ export default {
// padding-top: 16px;
width: 220px;
// height: 100%;
margin-bottom: 16px;
// margin-bottom: 16px;
box-sizing: border-box;
color: var(--bs-el-title);
background-color: var(--bs-background-2);

@ -47,6 +47,7 @@ export default {
.bs-manage-main-wrap {
display: flex;
height: 100%;
padding-top: 16px;
background-color: var(--bs-background-1);
// padding-top: 16px;
}
</style>

@ -421,7 +421,8 @@ export default {
position: relative;
height: 100%;
padding: 16px;
margin:0 16px;
// margin:0 16px;
margin-left: 16px;
color: #9ea9b2;
background-color: var(--bs-background-2) !important;

@ -151,6 +151,7 @@ export default {
height: calc(100vh - 150px);
background-color: var(--bs-background-1);
box-sizing: border-box;
padding: 16px 16px 16px 0;
}
}

@ -228,7 +228,7 @@ export default {
const isImage = file.type.startsWith('image/')
const isVideo = file.type.startsWith('video/')
const isValidFileType = isImage || isVideo
console.log(isValidFileType)
if (!isValidFileType) {
this.$message.error('只能上传图片或视频文件')
}
@ -330,7 +330,8 @@ export default {
height: 100%;
padding: 16px;
color: #9ea9b2;
margin:0 16px;
// margin:0 16px;
margin-left: 16px;
background-color: var(--bs-background-2) !important;
.top-search-wrap {

@ -33,6 +33,6 @@ export default {
<style lang="scss" scoped>
.right-screen-list-wrap {
width: 100%;
padding-bottom: 16px;
// padding-bottom: 16px;
}
</style>

@ -291,7 +291,7 @@ export default {
// padding-top: 16px;
width: 220px;
// height: 100%;
margin-bottom: 16px;
// margin-bottom: 16px;
box-sizing: border-box;
color: var(--bs-el-title);
background-color: var(--bs-background-2);

@ -44,6 +44,7 @@ export default {
.bs-manage-main-wrap {
display: flex;
height: 100%;
padding-top: 16px;
background-color: var(--bs-background-1);
// padding-top: 16px;
}
</style>

@ -7,10 +7,12 @@ $--font-path: '~element-ui/lib/theme-chalk/fonts';
//
.bs-container {
height: 100% !important;
width: 100%;
position: absolute;
// width: 100%;
// position: absolute;
box-sizing: border-box;
padding: 16px;
// padding: 16px;
margin-left: 16px;
background-color: var(--bs-background-1);
.inner-container {
height: 100% !important;
background-color: var(--bs-background-2);

@ -138,7 +138,8 @@ function registerTheme (config) {
'--bs-el-background-3': '#303640', // 组件背景色表格头部、下拉框hover...
'--bs-el-title': '#ffffff', // 标题字体颜色
'--bs-el-text': '#ffffff', // 一般字体颜色
'--bs-el-border': 'transparent' // 边框颜色
'--bs-el-border': 'transparent', // 边框颜色
'--bs-el-color-primary-active': '64, 158, 255'
}
const mergedTheme = { ...defaultTheme, ...config?.customTheme }
const style = document.createElement('style')

Loading…
Cancel
Save