mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-19 16:29:17 +08:00
fix: 统一状态栏样式 (#2162)
This commit is contained in:
parent
7dacac8846
commit
78999f97db
@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div v-loading="loading">
|
<div v-loading="loading">
|
||||||
<div class="a-card" style="margin-top: 20px">
|
<div class="app-status" style="margin-top: 20px">
|
||||||
<el-card>
|
<el-card>
|
||||||
<div>
|
<div>
|
||||||
<el-tag style="float: left" effect="dark" type="success">Docker</el-tag>
|
<el-tag style="float: left" effect="dark" type="success">Docker</el-tag>
|
||||||
@ -54,7 +54,7 @@
|
|||||||
v-model="form.mirrors"
|
v-model="form.mirrors"
|
||||||
style="width: calc(100% - 80px)"
|
style="width: calc(100% - 80px)"
|
||||||
/>
|
/>
|
||||||
<el-button class="append-button" @click="onChangeMirrors" icon="Setting">
|
<el-button @click="onChangeMirrors" icon="Setting">
|
||||||
{{ $t('commons.button.set') }}
|
{{ $t('commons.button.set') }}
|
||||||
</el-button>
|
</el-button>
|
||||||
</div>
|
</div>
|
||||||
@ -87,7 +87,7 @@
|
|||||||
v-model="form.registries"
|
v-model="form.registries"
|
||||||
style="width: calc(100% - 80px)"
|
style="width: calc(100% - 80px)"
|
||||||
/>
|
/>
|
||||||
<el-button class="append-button" @click="onChangeRegistries" icon="Setting">
|
<el-button @click="onChangeRegistries" icon="Setting">
|
||||||
{{ $t('commons.button.set') }}
|
{{ $t('commons.button.set') }}
|
||||||
</el-button>
|
</el-button>
|
||||||
</div>
|
</div>
|
||||||
@ -451,28 +451,3 @@ onMounted(() => {
|
|||||||
search();
|
search();
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.a-card {
|
|
||||||
font-size: 17px;
|
|
||||||
.el-card {
|
|
||||||
--el-card-padding: 12px;
|
|
||||||
.buttons {
|
|
||||||
margin-left: 100px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.status-content {
|
|
||||||
float: left;
|
|
||||||
margin-left: 50px;
|
|
||||||
}
|
|
||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.append-button {
|
|
||||||
width: 80px;
|
|
||||||
background-color: var(--el-fill-color-light);
|
|
||||||
color: var(--el-color-info);
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div v-if="recordShow" v-loading="loading">
|
<div v-if="recordShow" v-loading="loading">
|
||||||
<div class="a-card" style="margin-top: 20px">
|
<div class="app-status" style="margin-top: 20px">
|
||||||
<el-card>
|
<el-card>
|
||||||
<div>
|
<div>
|
||||||
<el-popover
|
<el-popover
|
||||||
@ -727,41 +727,6 @@ defineExpose({
|
|||||||
color: red;
|
color: red;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.a-card {
|
|
||||||
font-size: 17px;
|
|
||||||
.el-card {
|
|
||||||
--el-card-padding: 12px;
|
|
||||||
.buttons {
|
|
||||||
margin-left: 100px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.status-content {
|
|
||||||
float: left;
|
|
||||||
margin-left: 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.app-warn {
|
|
||||||
text-align: center;
|
|
||||||
margin-top: 100px;
|
|
||||||
span:first-child {
|
|
||||||
color: #bbbfc4;
|
|
||||||
}
|
|
||||||
|
|
||||||
span:nth-child(2) {
|
|
||||||
color: $primary-color;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
span:nth-child(2):hover {
|
|
||||||
color: #74a4f3;
|
|
||||||
}
|
|
||||||
|
|
||||||
img {
|
|
||||||
width: 300px;
|
|
||||||
height: 300px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.descriptionWide {
|
.descriptionWide {
|
||||||
width: 40%;
|
width: 40%;
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<div v-loading="loading">
|
<div v-loading="loading">
|
||||||
<FireRouter />
|
<FireRouter />
|
||||||
|
|
||||||
<div class="a-card" style="margin-top: 20px">
|
<div class="app-status" style="margin-top: 20px">
|
||||||
<el-card>
|
<el-card>
|
||||||
<div>
|
<div>
|
||||||
<el-tag style="float: left" effect="dark" type="success">SSH</el-tag>
|
<el-tag style="float: left" effect="dark" type="success">SSH</el-tag>
|
||||||
@ -329,19 +329,3 @@ onMounted(() => {
|
|||||||
search();
|
search();
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.a-card {
|
|
||||||
font-size: 17px;
|
|
||||||
.el-card {
|
|
||||||
--el-card-padding: 12px;
|
|
||||||
.buttons {
|
|
||||||
margin-left: 100px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.status-content {
|
|
||||||
float: left;
|
|
||||||
margin-left: 50px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user