forked from FoundKeyGang/FoundKey
Improve usability
This commit is contained in:
parent
026265cb1e
commit
5553c3fb17
1 changed files with 9 additions and 6 deletions
|
@ -1,12 +1,15 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="cpjygsrt" :class="{ error: error != null, warn: warn != null, draggable }">
|
<div class="cpjygsrt" :class="{ error: error != null, warn: warn != null }">
|
||||||
<header class="drag-handle">
|
<header>
|
||||||
<div class="title"><slot name="header"></slot></div>
|
<div class="title"><slot name="header"></slot></div>
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<slot name="func"></slot>
|
<slot name="func"></slot>
|
||||||
<button v-if="removable" @click="remove()">
|
<button v-if="removable" @click="remove()">
|
||||||
<fa :icon="faTrashAlt"/>
|
<fa :icon="faTrashAlt"/>
|
||||||
</button>
|
</button>
|
||||||
|
<button v-if="draggable" class="drag-handle">
|
||||||
|
<fa :icon="faBars"/>
|
||||||
|
</button>
|
||||||
<button @click="toggleContent(!showBody)">
|
<button @click="toggleContent(!showBody)">
|
||||||
<template v-if="showBody"><fa icon="angle-up"/></template>
|
<template v-if="showBody"><fa icon="angle-up"/></template>
|
||||||
<template v-else><fa icon="angle-down"/></template>
|
<template v-else><fa icon="angle-down"/></template>
|
||||||
|
@ -23,6 +26,7 @@
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import Vue from 'vue';
|
import Vue from 'vue';
|
||||||
|
import { faBars } from '@fortawesome/free-solid-svg-icons';
|
||||||
import { faTrashAlt } from '@fortawesome/free-regular-svg-icons';
|
import { faTrashAlt } from '@fortawesome/free-regular-svg-icons';
|
||||||
import i18n from '../../../../i18n';
|
import i18n from '../../../../i18n';
|
||||||
|
|
||||||
|
@ -54,7 +58,7 @@ export default Vue.extend({
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
showBody: this.expanded,
|
showBody: this.expanded,
|
||||||
faTrashAlt
|
faTrashAlt, faBars
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -124,9 +128,8 @@ export default Vue.extend({
|
||||||
&:active
|
&:active
|
||||||
color var(--faceTextButtonActive)
|
color var(--faceTextButtonActive)
|
||||||
|
|
||||||
&.draggable
|
.drag-handle
|
||||||
> header
|
cursor move
|
||||||
cursor move
|
|
||||||
|
|
||||||
> .warn
|
> .warn
|
||||||
color #b19e49
|
color #b19e49
|
||||||
|
|
Loading…
Reference in a new issue