Skip to content

Commit 5c14dcb

Browse files
committed
Make n-window selector button more prominent
1 parent d0dcb03 commit 5c14dcb

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

src/components/cylc/workspace/Toolbar.vue

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,20 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
8585
</div>
8686

8787
<!-- n-window selector -->
88-
<v-chip
88+
<v-btn
8989
:disabled="isStopped"
90-
link
90+
variant="tonal"
91+
rounded
9192
size="small"
9293
data-cy="n-win-selector"
9394
>
9495
N={{ nWindow }}
96+
<template #append>
97+
<v-icon
98+
:icon="$options.icons.mdiChevronDown"
99+
class="mx-n1"
100+
/>
101+
</template>
95102
<v-menu
96103
activator="parent"
97104
:close-on-content-click="false"
@@ -122,7 +129,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
122129
</v-card-text>
123130
</v-card>
124131
</v-menu>
125-
</v-chip>
132+
</v-btn>
126133

127134
<!-- workflow status message -->
128135
<span class="status-msg text-body-2">
@@ -207,7 +214,8 @@ import {
207214
mdiPlusBoxMultiple,
208215
mdiStop,
209216
mdiViewList,
210-
mdiAccount
217+
mdiAccount,
218+
mdiChevronDown,
211219
} from '@mdi/js'
212220
import { startCase } from 'lodash'
213221
import { until } from '@/utils'
@@ -462,7 +470,8 @@ export default {
462470
run: mdiPlay,
463471
stop: mdiStop,
464472
mdiCog,
465-
mdiAccount
473+
mdiAccount,
474+
mdiChevronDown,
466475
},
467476
}
468477
</script>

0 commit comments

Comments
 (0)