Skip to content

Commit

Permalink
Merge pull request #17895 from martenson/backp
Browse files Browse the repository at this point in the history
[24.0] do not show copy button when editing
  • Loading branch information
martenson authored Apr 4, 2024
2 parents d308444 + cd7de55 commit 1cd9752
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions client/src/components/Sharing/EditableUrl.vue
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ function onCopyOut() {
<BButton
id="tooltip-clipboard"
v-b-tooltip.hover
:disabled="editing"
size="md"
class="inline-icon-button"
:title="clipboardTitle"
Expand All @@ -98,10 +99,16 @@ function onCopyOut() {
</template>

<style scoped lang="scss">
@import "theme/blue.scss";
.editable-url {
height: 1.5rem;
display: flex;
align-items: center;
gap: 0.25rem;
}
.inline-icon-button:disabled:hover {
background-color: $brand-secondary;
color: unset;
}
</style>

0 comments on commit 1cd9752

Please sign in to comment.