mirror of
https://github.com/go-gitea/gitea
synced 2025-08-17 15:08:27 +00:00
Fix repo buttons overflowing
- Don't show SVG(major cause for taking up space and being shown as "column"). - Allow it to be a new columnif the number is too big.
This commit is contained in:
@@ -2965,8 +2965,11 @@ tbody.commit-list {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.repo-buttons {
|
.repo-buttons {
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
word-break: keep-all;
|
||||||
|
|
||||||
@media @mediaSm {
|
@media @mediaSm {
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
@@ -3011,6 +3014,11 @@ tbody.commit-list {
|
|||||||
pointer-events: none !important;
|
pointer-events: none !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@media @mediaSm {
|
||||||
|
.svg {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.tag-code {
|
.tag-code {
|
||||||
|
Reference in New Issue
Block a user