From 51313fbb633c8d2fd710e7a44acdd3a77f1ae32c Mon Sep 17 00:00:00 2001 From: silverwind Date: Tue, 13 Apr 2021 02:10:57 +0200 Subject: [PATCH] Clone panel fixes (#15435) - Use {{end}} diff --git a/web_src/less/_repository.less b/web_src/less/_repository.less index 71a9cbcdd0..6042a75948 100644 --- a/web_src/less/_repository.less +++ b/web_src/less/_repository.less @@ -201,18 +201,25 @@ .clone.button { font-size: 13px; padding: 7.5px 5px; - - &:first-child { - border-radius: var(--border-radius) 0 0 var(--border-radius); - } } #repo-clone-https, - #repo-clone-ssh, - #clipboard-btn { + #repo-clone-ssh { border-right: none; } + #download-btn { + border-left: none; + } + + button:first-of-type { + border-radius: var(--border-radius) 0 0 var(--border-radius) !important; + } + + button:last-of-type { + border-radius: 0 var(--border-radius) var(--border-radius) 0 !important; + } + .icon.button { padding: 0 10px; }