diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2024-03-17 20:40:42 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-17 12:40:42 +0000 |
commit | 673286d8c8a00bf7240a93187d767fb5a5e32a31 (patch) | |
tree | 0851cdcf7df8efb450e25ff057d1c783940f66e1 /templates/repo | |
parent | a228656e3d318ffd871b414578f0b83aa5a65878 (diff) | |
download | gitea-673286d8c8a00bf7240a93187d767fb5a5e32a31.tar.gz gitea-673286d8c8a00bf7240a93187d767fb5a5e32a31.zip |
Refactor clone-panel styles (#29861)
1. The borders were doubled on the "empty" page, fix it.
2. Remove unnecessary CSS classes like "clone", "compact", etc
3. Use CSS class "clone-panel" instead of ID "clone-panel"
4. Use `tw-flex-1` instead of `gt-f1`
5. Remove unnecessary ID "more-btn"
Diffstat (limited to 'templates/repo')
-rw-r--r-- | templates/repo/clone_buttons.tmpl | 6 | ||||
-rw-r--r-- | templates/repo/empty.tmpl | 2 | ||||
-rw-r--r-- | templates/repo/home.tmpl | 4 | ||||
-rw-r--r-- | templates/repo/wiki/revision.tmpl | 2 | ||||
-rw-r--r-- | templates/repo/wiki/view.tmpl | 2 |
5 files changed, 8 insertions, 8 deletions
diff --git a/templates/repo/clone_buttons.tmpl b/templates/repo/clone_buttons.tmpl index a664c4bda8..89daba9dc9 100644 --- a/templates/repo/clone_buttons.tmpl +++ b/templates/repo/clone_buttons.tmpl @@ -1,15 +1,15 @@ <!-- there is always at least one button (by context/repo.go) --> {{if $.CloneButtonShowHTTPS}} - <button class="ui small compact clone button" id="repo-clone-https" data-link="{{$.CloneButtonOriginLink.HTTPS}}"> + <button class="ui small button" id="repo-clone-https" data-link="{{$.CloneButtonOriginLink.HTTPS}}"> HTTPS </button> {{end}} {{if $.CloneButtonShowSSH}} - <button class="ui small compact clone button" id="repo-clone-ssh" data-link="{{$.CloneButtonOriginLink.SSH}}"> + <button class="ui small button" id="repo-clone-ssh" data-link="{{$.CloneButtonOriginLink.SSH}}"> SSH </button> {{end}} <input id="repo-clone-url" size="20" class="js-clone-url" value="{{$.CloneButtonOriginLink.HTTPS}}" readonly> -<button class="ui basic small compact icon button" id="clipboard-btn" data-tooltip-content="{{ctx.Locale.Tr "copy_url"}}" data-clipboard-target="#repo-clone-url" aria-label="{{ctx.Locale.Tr "copy_url"}}"> +<button class="ui small icon button" id="clipboard-btn" data-tooltip-content="{{ctx.Locale.Tr "copy_url"}}" data-clipboard-target="#repo-clone-url" aria-label="{{ctx.Locale.Tr "copy_url"}}"> {{svg "octicon-copy" 14}} </button> diff --git a/templates/repo/empty.tmpl b/templates/repo/empty.tmpl index a858a728e9..d3665a9f8b 100644 --- a/templates/repo/empty.tmpl +++ b/templates/repo/empty.tmpl @@ -37,7 +37,7 @@ </a> {{end}} {{end}} - <div class="ui action small input gt-df gt-f1"> + <div class="clone-panel ui action small input tw-flex-1"> {{template "repo/clone_buttons" .}} </div> </div> diff --git a/templates/repo/home.tmpl b/templates/repo/home.tmpl index ef10904bcc..24bafb8d9d 100644 --- a/templates/repo/home.tmpl +++ b/templates/repo/home.tmpl @@ -124,9 +124,9 @@ <div class="gt-df gt-ac"> <!-- Only show clone panel in repository home page --> {{if eq $n 0}} - <div class="ui action tiny input" id="clone-panel"> + <div class="clone-panel ui action tiny input"> {{template "repo/clone_buttons" .}} - <button id="more-btn" class="ui basic small compact jump dropdown icon button" data-tooltip-content="{{ctx.Locale.Tr "repo.more_operations"}}"> + <button class="ui small jump dropdown icon button" data-tooltip-content="{{ctx.Locale.Tr "repo.more_operations"}}"> {{svg "octicon-kebab-horizontal"}} <div class="menu"> {{if not $.DisableDownloadSourceArchives}} diff --git a/templates/repo/wiki/revision.tmpl b/templates/repo/wiki/revision.tmpl index 647c331d55..182635e011 100644 --- a/templates/repo/wiki/revision.tmpl +++ b/templates/repo/wiki/revision.tmpl @@ -15,7 +15,7 @@ </div> </div> <div class="ui eight wide column text right"> - <div class="ui action small input" id="clone-panel"> + <div class="clone-panel ui action small input"> {{template "repo/clone_buttons" .}} {{template "repo/clone_script" .}} </div> diff --git a/templates/repo/wiki/view.tmpl b/templates/repo/wiki/view.tmpl index 19da3fd199..fefa9c589e 100644 --- a/templates/repo/wiki/view.tmpl +++ b/templates/repo/wiki/view.tmpl @@ -28,7 +28,7 @@ </div> </div> </div> - <div class="ui action small input gt-df gt-ac" id="clone-panel"> + <div class="clone-panel ui action small input"> {{template "repo/clone_buttons" .}} {{template "repo/clone_script" .}} </div> |