bug: Fix cannot copy text content from sidebar (#3506)
* bug: Fixes cannot copy text content from sidebar . * fixes cannot copy issue in sidebar Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="cw-accordion">
|
<div class="cw-accordion">
|
||||||
<button class="cw-accordion--title" @click="$emit('click')">
|
<button class="cw-accordion--title drag-handle" @click="$emit('click')">
|
||||||
<div class="cw-accordion--title-wrap">
|
<div class="cw-accordion--title-wrap">
|
||||||
<emoji-or-icon class="icon-or-emoji" :icon="icon" :emoji="emoji" />
|
<emoji-or-icon class="icon-or-emoji" :icon="icon" :emoji="emoji" />
|
||||||
<h5>
|
<h5>
|
||||||
@@ -69,7 +69,7 @@ export default {
|
|||||||
background: var(--s-50);
|
background: var(--s-50);
|
||||||
border-bottom: 1px solid var(--s-100);
|
border-bottom: 1px solid var(--s-100);
|
||||||
border-top: 1px solid var(--s-100);
|
border-top: 1px solid var(--s-100);
|
||||||
cursor: pointer;
|
cursor: grab;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|||||||
@@ -11,6 +11,7 @@
|
|||||||
:disabled="!dragEnabled"
|
:disabled="!dragEnabled"
|
||||||
class="list-group"
|
class="list-group"
|
||||||
ghost-class="ghost"
|
ghost-class="ghost"
|
||||||
|
handle=".drag-handle"
|
||||||
@start="dragging = true"
|
@start="dragging = true"
|
||||||
@end="onDragEnd"
|
@end="onDragEnd"
|
||||||
>
|
>
|
||||||
|
|||||||
Reference in New Issue
Block a user