diff options
author | silverwind <me@silverwind.io> | 2020-11-12 16:59:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-12 23:59:33 +0800 |
commit | c2e05d9f9ab5aa15961a1fb37c4cf23367b6c4d5 (patch) | |
tree | e9df4c0d842ba407da044cbc317c862b9d8e3368 /templates | |
parent | 4117a443c27cc5b8af75be32ed6949d028694eff (diff) | |
download | gitea-c2e05d9f9ab5aa15961a1fb37c4cf23367b6c4d5.tar.gz gitea-c2e05d9f9ab5aa15961a1fb37c4cf23367b6c4d5.zip |
Form styling adjustments (#13501)
* Form styling adjustments
- Move all form-related styling to _forms.less
- Defined new form-related variables
- Fix spinner on frontpage repo search
- Add new rounded-* helpers and fix repo search radius
* misc arc green tweaks
Co-authored-by: zeripath <art27@cantab.net>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Co-authored-by: Lauris BH <lauris@nix.lv>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/user/dashboard/repolist.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/user/dashboard/repolist.tmpl b/templates/user/dashboard/repolist.tmpl index e1b97c8b9c..319bb3c6ee 100644 --- a/templates/user/dashboard/repolist.tmpl +++ b/templates/user/dashboard/repolist.tmpl @@ -91,7 +91,7 @@ </a> </div> </div> - <div class="ui attached table segment"> + <div v-if="repos.length" class="ui attached table segment rounded-bottom"> <ul class="repo-owner-name-list"> <li v-for="repo in repos" :class="{'private': repo.private || repo.internal}"> <a :href="suburl + '/' + repo.full_name"> @@ -139,7 +139,7 @@ </a> </div> </h4> - <div class="ui attached table segment"> + <div v-if="organizations.length" class="ui attached table segment rounded-bottom"> <ul class="repo-owner-name-list"> <li v-for="org in organizations"> <a :href="suburl + '/' + org.name"> |