diff --git a/orion-ops-ui/src/views/exec/exec-command/components/exec-command-panel.vue b/orion-ops-ui/src/views/exec/exec-command/components/exec-command-panel.vue index 5483790d..7c881a85 100644 --- a/orion-ops-ui/src/views/exec/exec-command/components/exec-command-panel.vue +++ b/orion-ops-ui/src/views/exec/exec-command/components/exec-command-panel.vue @@ -259,10 +259,15 @@ .exec-form-container { .selected-host { width: 100%; + height: 32px; + padding: 0 8px; + border-radius: 2px; display: flex; align-items: center; justify-content: space-between; color: var(--color-text-2); + background: var(--color-fill-2); + transition: all 0.3s; &-count { font-size: 16px; @@ -270,13 +275,17 @@ display: inline-block; margin: 0 6px; } + + &:hover { + background: var(--color-fill-3); + } } } :deep(.panel-header) { width: 100%; height: 28px; - margin-bottom: 4px; + margin-bottom: 12px; display: flex; justify-content: space-between; align-items: flex-start; diff --git a/orion-ops-ui/src/views/exec/exec-job/components/exec-job-detail-drawer.vue b/orion-ops-ui/src/views/exec/exec-job/components/exec-job-detail-drawer.vue index 38fee99a..fcf06bb9 100644 --- a/orion-ops-ui/src/views/exec/exec-job/components/exec-job-detail-drawer.vue +++ b/orion-ops-ui/src/views/exec/exec-job/components/exec-job-detail-drawer.vue @@ -1,7 +1,7 @@