mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-20 14:30:41 +00:00
## Summary - move queue batch controls to the left of the run button - align run control styling to the Figma queue modal spec using PrimeVue PT/Tailwind (secondary background on batch + dropdown, primary run button) - normalize control heights to match actionbar buttons and tighten dropdown hit area - update run typography/spacing and replace all three chevrons (dropdown + batch up/down) with the requested SVG Design: https://www.figma.com/design/LVilZgHGk5RwWOkVN6yCEK/Queue-Progress-Modal?node-id=3845-23904&m=dev <img width="303" height="122" alt="image" src="https://github.com/user-attachments/assets/4ed80ee7-3ceb-4512-96ce-f55ec6da835e" /> ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-9134-fix-align-run-controls-with-queue-modal-design-3106d73d36508160afcedbcfe4b98291) by [Unito](https://www.unito.io) --------- Co-authored-by: github-actions <github-actions@github.com> Co-authored-by: GitHub Action <action@github.com>
27 lines
559 B
Vue
27 lines
559 B
Vue
<template>
|
|
<svg
|
|
class="h-[5px] min-h-[5px] w-[8px] min-w-[8px]"
|
|
:class="{ 'rotate-180': rotateUp }"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="8"
|
|
height="5"
|
|
viewBox="0 0 8 5"
|
|
fill="none"
|
|
aria-hidden="true"
|
|
>
|
|
<path
|
|
d="M0.650391 0.649902L3.65039 3.6499L6.65039 0.649902"
|
|
stroke="currentColor"
|
|
stroke-width="1.3"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
/>
|
|
</svg>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const { rotateUp = false } = defineProps<{
|
|
rotateUp?: boolean
|
|
}>()
|
|
</script>
|