diff options
Diffstat (limited to 'web_src')
-rw-r--r-- | web_src/css/helpers.css | 4 | ||||
-rw-r--r-- | web_src/css/repo/release-tag.css | 5 | ||||
-rw-r--r-- | web_src/js/components/DashboardRepoList.vue | 2 |
3 files changed, 5 insertions, 6 deletions
diff --git a/web_src/css/helpers.css b/web_src/css/helpers.css index 17a89ebfb7..bd1fb992ac 100644 --- a/web_src/css/helpers.css +++ b/web_src/css/helpers.css @@ -2,14 +2,10 @@ Gitea's tailwind-style CSS helper classes have `gt-` prefix. Gitea's private styles use `g-` prefix. */ -.gt-db { display: block !important; } .gt-df { display: flex !important; } -.gt-di { display: inline !important; } -.gt-dif { display: inline-flex !important; } .gt-dib { display: inline-block !important; } .gt-ac { align-items: center !important; } .gt-jc { justify-content: center !important; } -.gt-js { justify-content: flex-start !important; } .gt-je { justify-content: flex-end !important; } .gt-sb { justify-content: space-between !important; } .gt-fc { flex-direction: column !important; } diff --git a/web_src/css/repo/release-tag.css b/web_src/css/repo/release-tag.css index 33ff2cddd9..70925f5a0e 100644 --- a/web_src/css/repo/release-tag.css +++ b/web_src/css/repo/release-tag.css @@ -23,8 +23,11 @@ .repository.releases #release-list > li .meta { margin-top: 4px; - text-align: right; position: relative; + text-align: right; + display: flex; + flex-direction: column; + gap: 1em; } .repository.releases #release-list > li .detail { diff --git a/web_src/js/components/DashboardRepoList.vue b/web_src/js/components/DashboardRepoList.vue index bc6cc6a2c4..f1ea937f05 100644 --- a/web_src/js/components/DashboardRepoList.vue +++ b/web_src/js/components/DashboardRepoList.vue @@ -17,7 +17,7 @@ <div class="ui attached segment repos-search"> <div class="ui fluid right action left icon input" :class="{loading: isLoading}"> <input type="search" spellcheck="false" maxlength="255" @input="changeReposFilter(reposFilter)" v-model="searchQuery" ref="search" @keydown="reposFilterKeyControl" :placeholder="textSearchRepos"> - <i class="icon gt-df gt-ac gt-jc"><svg-icon name="octicon-search" :size="16"/></i> + <i class="icon"><svg-icon name="octicon-search" :size="16"/></i> <div class="ui dropdown icon button" :title="textFilter"> <svg-icon name="octicon-filter" :size="16"/> <div class="menu"> |