diff options
author | Ben Rohlfs <[email protected]> | 2025-08-15 04:09:44 -0700 |
---|---|---|
committer | Gerrit Code Review <[email protected]> | 2025-08-15 04:09:44 -0700 |
commit | 9fefccbe83e238ab4e34c30975c4b96d05075659 (patch) | |
tree | be96802aca3ca2842966cf2d822f27187dddf0b7 | |
parent | d34db580816d59995ab1f7505e820210e2dab4fa (diff) | |
parent | c917c37be9e5b0db3184e1083f11468ba54f6f88 (diff) |
Merge "Fix unintentional reduction of padding for copy buttons"upstream/master
-rw-r--r-- | polygerrit-ui/app/elements/change/gr-change-view/gr-change-view.ts | 2 | ||||
-rw-r--r-- | polygerrit-ui/app/elements/change/gr-commit-info/gr-commit-info.ts | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/polygerrit-ui/app/elements/change/gr-change-view/gr-change-view.ts b/polygerrit-ui/app/elements/change/gr-change-view/gr-change-view.ts index 750fecf62a..23d0fc6fe8 100644 --- a/polygerrit-ui/app/elements/change/gr-change-view/gr-change-view.ts +++ b/polygerrit-ui/app/elements/change/gr-change-view/gr-change-view.ts @@ -848,7 +848,7 @@ export class GrChangeView extends LitElement { color: transparent; } .changeCopyClipboard { - margin-left: var(--spacing-s); + margin-left: var(--spacing-m); } .showCopyLinkDialogButton { --gr-button-padding: 0 0 0 var(--spacing-s); diff --git a/polygerrit-ui/app/elements/change/gr-commit-info/gr-commit-info.ts b/polygerrit-ui/app/elements/change/gr-commit-info/gr-commit-info.ts index c3f7a76b47..0e39c03462 100644 --- a/polygerrit-ui/app/elements/change/gr-commit-info/gr-commit-info.ts +++ b/polygerrit-ui/app/elements/change/gr-commit-info/gr-commit-info.ts @@ -51,6 +51,9 @@ export class GrCommitInfo extends LitElement { gr-weblink { margin-right: 0; } + gr-copy-clipboard { + margin-left: var(--spacing-s); + } `, ]; } |