Skip to content

Commit c67b155

Browse files
committed
invisible buttons
1 parent e4203c5 commit c67b155

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

src/portals/SysBio/components/BulkTable.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
:sort-desc.sync="sortDesc"
4444
>
4545
<template #cell(gene)="r">
46-
<button @click="findGene(r.item.gene)">{{ r.item.gene }}</button>
46+
<button class="invisible-button" @click="findGene(r.item.gene)">{{ r.item.gene }}</button>
4747
</template>
4848
</b-table>
4949
<b-pagination

src/portals/SysBio/css/sysbio.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -361,4 +361,8 @@ tr.downregulated {
361361
}
362362
span.downregulated {
363363
color: #12bdfe;
364+
}
365+
button.invisible-button {
366+
border: none;
367+
background-color: inherit;
364368
}

0 commit comments

Comments
 (0)