aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkolaente <k@knt.li>2021-10-17 16:05:32 +0200
committerGitHub <noreply@github.com>2021-10-17 15:05:32 +0100
commit554988c7b23aef99c226986509ab55ce74af7671 (patch)
tree73445f1d4997598cc12f7af468ae25e06b726ef3
parent7117c7774ae1c1003c95d3df8dfaa5bd7270165d (diff)
downloadgitea-554988c7b23aef99c226986509ab55ce74af7671.tar.gz
gitea-554988c7b23aef99c226986509ab55ce74af7671.zip
fix: repository summary on mobile (#17322)
This PR fixes the repository summary on mobile. Most of it is vertically centering things and some spacing. #### Before: ![Screen Shot 2021-10-15 at 19 12 25](https://user-images.githubusercontent.com/13721712/137528901-021867b5-73c3-4f48-8408-18bc573f5ee7.png) #### After: ![Screen Shot 2021-10-15 at 19 28 06](https://user-images.githubusercontent.com/13721712/137528970-058a66fd-d5d9-44ea-ba5f-998bf8cbf4fe.png)
-rw-r--r--web_src/less/_repository.less11
1 files changed, 11 insertions, 0 deletions
diff --git a/web_src/less/_repository.less b/web_src/less/_repository.less
index 69f58e26b0..8f9c5ba6b5 100644
--- a/web_src/less/_repository.less
+++ b/web_src/less/_repository.less
@@ -2261,6 +2261,7 @@
.list {
width: 100%;
display: flex;
+ align-items: center;
.item {
width: 100%;
@@ -2268,10 +2269,12 @@
&:first-of-type {
border-radius: var(--border-radius) 0 0 var(--border-radius);
+ padding-left: .25rem;
}
&:last-of-type {
border-radius: 0 var(--border-radius) var(--border-radius) 0;
+ padding-right: .25rem;
}
a {
@@ -2408,6 +2411,10 @@
border-radius: 0;
user-select: none;
+ @media @mediaSm {
+ display: none;
+ }
+
.bar {
white-space: nowrap;
border: 0;
@@ -3099,6 +3106,10 @@ td.blob-excerpt {
.repository-summary-language-stats {
height: 48px;
overflow: hidden;
+
+ @media @mediaSm {
+ height: auto;
+ }
}
.ui.form .right .ui.button {