mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
add style in App.vue, set class .pointer on transaction-list-item
This commit is contained in:
parent
7ddfeed97d
commit
67506c0ed6
@ -40,3 +40,8 @@ export default {
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
<style>
|
||||||
|
.pointer {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|||||||
@ -13,7 +13,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-for="({ id, typeId }, index) in transactions" :key="id">
|
<div v-for="({ id, typeId }, index) in transactions" :key="id">
|
||||||
<transaction-list-item :typeId="typeId">
|
<transaction-list-item :typeId="typeId" class="pointer">
|
||||||
<template #DECAY>
|
<template #DECAY>
|
||||||
<transaction-decay class="list-group-item" v-bind="transactions[index]" />
|
<transaction-decay class="list-group-item" v-bind="transactions[index]" />
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div :class="visible ? 'bg-secondary' : ''" class="transaction-slot-creation">
|
<div class="transaction-slot-creation">
|
||||||
<div @click="visible = !visible">
|
<div @click="visible = !visible">
|
||||||
<!-- Collaps Icon -->
|
<!-- Collaps Icon -->
|
||||||
<div class="text-right" style="width: 95%; position: absolute">
|
<div class="text-right" style="width: 95%; position: absolute">
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div :class="visible ? 'bg-secondary' : ''" class="transaction-slot-decay">
|
<div class="transaction-slot-decay">
|
||||||
<div @click="visible = !visible">
|
<div @click="visible = !visible">
|
||||||
<!-- Collaps Icon -->
|
<!-- Collaps Icon -->
|
||||||
<div class="text-right" style="width: 95%; position: absolute">
|
<div class="text-right" style="width: 95%; position: absolute">
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div :class="visible ? 'bg-secondary' : ''" class="transaction-slot-receive">
|
<div class="transaction-slot-receive">
|
||||||
<div @click="visible = !visible">
|
<div @click="visible = !visible">
|
||||||
<!-- Collaps Icon -->
|
<!-- Collaps Icon -->
|
||||||
<div class="text-right" style="width: 95%; position: absolute">
|
<div class="text-right" style="width: 95%; position: absolute">
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div :class="visible ? 'bg-secondary' : ''" class="transaction-slot-send">
|
<div class="transaction-slot-send">
|
||||||
<div @click="visible = !visible">
|
<div @click="visible = !visible">
|
||||||
<!-- Collaps Icon -->
|
<!-- Collaps Icon -->
|
||||||
<div class="text-right" style="width: 95%; position: absolute">
|
<div class="text-right" style="width: 95%; position: absolute">
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user