mirror of
https://github.com/akvorado/akvorado.git
synced 2025-12-12 06:24:10 +01:00
console/frontend: remove one size for options panel
Otherwise, we have too many options to test
This commit is contained in:
@@ -1,13 +1,13 @@
|
|||||||
<template>
|
<template>
|
||||||
<aside
|
<aside
|
||||||
class="transition-height transition-width w-full shrink-0 duration-100 lg:h-auto"
|
class="transition-height transition-width w-full shrink-0 duration-100 lg:h-auto"
|
||||||
:class="open ? 'h-80 lg:w-64 xl:w-80' : 'h-4 lg:w-4'"
|
:class="open ? 'h-80 lg:w-64' : 'h-4 lg:w-4'"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
class="absolute z-30 translate-x-4 transition-transform lg:translate-y-4"
|
class="absolute z-30 translate-x-4 transition-transform lg:translate-y-4"
|
||||||
:class="
|
:class="
|
||||||
open
|
open
|
||||||
? 'translate-y-80 rotate-180 lg:translate-x-64 xl:translate-x-80'
|
? 'translate-y-80 rotate-180 lg:translate-x-64'
|
||||||
: 'translate-y-4 lg:translate-x-0'
|
: 'translate-y-4 lg:translate-x-0'
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
@@ -35,7 +35,7 @@
|
|||||||
:disabled="hasErrors && !loading"
|
:disabled="hasErrors && !loading"
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
:type="loading ? 'default' : 'primary'"
|
:type="loading ? 'default' : 'primary'"
|
||||||
class="order-3 w-32 justify-center lg:order-2 lg:grow-0"
|
class="order-3 w-28 justify-center lg:order-2 lg:grow-0"
|
||||||
>
|
>
|
||||||
{{ loading ? "Cancel" : applyLabel }}
|
{{ loading ? "Cancel" : applyLabel }}
|
||||||
</InputButton>
|
</InputButton>
|
||||||
@@ -86,7 +86,7 @@
|
|||||||
class="rounded border border-gray-300 bg-gray-200 px-1 dark:border-gray-600 dark:bg-gray-900"
|
class="rounded border border-gray-300 bg-gray-200 px-1 dark:border-gray-600 dark:bg-gray-900"
|
||||||
>Ctrl-Space</kbd
|
>Ctrl-Space</kbd
|
||||||
>
|
>
|
||||||
to show completions
|
for completions
|
||||||
</template>
|
</template>
|
||||||
</SectionLabel>
|
</SectionLabel>
|
||||||
<InputFilter v-model="filter" class="mb-2" />
|
<InputFilter v-model="filter" class="mb-2" />
|
||||||
|
|||||||
Reference in New Issue
Block a user