mirror of https://github.com/1Panel-dev/1Panel
style: Optimize layout style (#7354)
parent
c95d61397d
commit
1ff4f33ceb
|
@ -1246,7 +1246,7 @@ const message = {
|
|||
infoDetail: 'File properties',
|
||||
root: 'Root directory',
|
||||
list: 'File list',
|
||||
sub: 'Include subdirectories',
|
||||
sub: 'Subdirectories',
|
||||
downloadSuccess: 'Successfully downloaded',
|
||||
theme: 'Theme',
|
||||
language: 'Language',
|
||||
|
|
|
@ -460,4 +460,14 @@ html.dark {
|
|||
.el-checkbox__input.is-indeterminate .el-checkbox__inner::before {
|
||||
background-color: var(--panel-main-bg-color-10);
|
||||
}
|
||||
|
||||
.custom-input-textarea {
|
||||
background-color: var(--panel-main-bg-color-10) !important;
|
||||
color: var(--el-color-info) !important;
|
||||
}
|
||||
.custom-input-textarea:hover {
|
||||
background-color: var(--panel-main-bg-color-9) !important;
|
||||
color: var(--el-color-primary) !important;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -263,3 +263,10 @@ html {
|
|||
background-color: #f5f7fa !important;
|
||||
color: var(--el-color-info) !important;
|
||||
}
|
||||
|
||||
.custom-input-textarea:hover {
|
||||
color: var(--el-color-primary) !important;
|
||||
background-color: var(--el-color-primary-light-9) !important;
|
||||
border-color: var(--el-button-border-color) !important;
|
||||
}
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
<el-row style="margin-top: 20px" v-if="confShowType === 'base'">
|
||||
<el-col :span="1"><br /></el-col>
|
||||
<el-col :xs="24" :sm="24" :md="15" :lg="12" :xl="10">
|
||||
<el-form :model="form" label-position="left" :rules="rules" ref="formRef" label-width="120px">
|
||||
<el-form :model="form" label-position="left" :rules="rules" ref="formRef" label-width="auto">
|
||||
<el-form-item :label="$t('container.mirrors')" prop="mirrors">
|
||||
<div
|
||||
class="flex w-full justify-start flex-col sm:flex-row sm:items-end"
|
||||
|
|
|
@ -386,7 +386,7 @@
|
|||
</div>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column :label="$t('file.mode')" prop="mode" max-width="50">
|
||||
<el-table-column :label="$t('file.mode')" prop="mode" max-width="50" min-width="110px">
|
||||
<template #default="{ row }">
|
||||
<el-link :underline="false" @click="openMode(row)">{{ row.mode }}</el-link>
|
||||
</template>
|
||||
|
|
Loading…
Reference in New Issue