update
This commit is contained in:
@@ -383,7 +383,7 @@ onUnmounted(() => {
|
|||||||
<small class="text-xs max-w-[80%]">{{ error }}</small>
|
<small class="text-xs max-w-[80%]">{{ error }}</small>
|
||||||
</div>
|
</div>
|
||||||
<!-- Case 8: Active session, SSH connected, Docker available, show list -->
|
<!-- Case 8: Active session, SSH connected, Docker available, show list -->
|
||||||
<div v-else class="flex-grow overflow-auto p-4">
|
<div v-else class="docker-content-area flex-grow overflow-auto">
|
||||||
<div v-if="containers.length === 0 && !isLoading" class="flex flex-col justify-center items-center text-center flex-grow text-text-secondary h-full">
|
<div v-if="containers.length === 0 && !isLoading" class="flex flex-col justify-center items-center text-center flex-grow text-text-secondary h-full">
|
||||||
{{ t('dockerManager.noContainers') }}
|
{{ t('dockerManager.noContainers') }}
|
||||||
</div>
|
</div>
|
||||||
@@ -537,6 +537,12 @@ onUnmounted(() => {
|
|||||||
|
|
||||||
/* Styles for Card View when container is narrow */
|
/* Styles for Card View when container is narrow */
|
||||||
@container docker-manager-pane (max-width: 600px) { /* Use container query, adjust breakpoint if needed */
|
@container docker-manager-pane (max-width: 600px) { /* Use container query, adjust breakpoint if needed */
|
||||||
|
/* +++ Add padding to content area in card view +++ */
|
||||||
|
.docker-content-area {
|
||||||
|
padding: 1rem; /* Equivalent to p-4 */
|
||||||
|
}
|
||||||
|
/* +++ End padding rule +++ */
|
||||||
|
|
||||||
.responsive-thead.responsive-thead { /* Increased specificity */
|
.responsive-thead.responsive-thead { /* Increased specificity */
|
||||||
display: none; /* Hide table header */
|
display: none; /* Hide table header */
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -231,7 +231,7 @@ const componentProps = computed(() => {
|
|||||||
case 'dockerManager':
|
case 'dockerManager':
|
||||||
// DockerManager 可能不需要 session 信息,但需要转发事件
|
// DockerManager 可能不需要 session 信息,但需要转发事件
|
||||||
return {
|
return {
|
||||||
class: 'pane-content',
|
class: 'flex-grow h-full overflow-hidden', // <-- 修改:添加 flex-grow 和 h-full,并保留 overflow-hidden
|
||||||
// 假设 DockerManager 会发出 'docker-command' 事件
|
// 假设 DockerManager 会发出 'docker-command' 事件
|
||||||
// onDockerCommand: (payload: { containerId: string; command: 'up' | 'down' | 'restart' | 'stop' }) => emit('dockerCommand', payload),
|
// onDockerCommand: (payload: { containerId: string; command: 'up' | 'down' | 'restart' | 'stop' }) => emit('dockerCommand', payload),
|
||||||
// 暂时不添加事件转发,等组件实现后再确定
|
// 暂时不添加事件转发,等组件实现后再确定
|
||||||
|
|||||||
Reference in New Issue
Block a user