1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-23 02:38:35 +00:00

Responsive design fixes (#4508)

* reset to master

* build css

* Fixed spacing
This commit is contained in:
kolaente
2018-07-26 17:25:41 +02:00
committed by Lauris BH
parent f847884d16
commit 8d1ad55598
7 changed files with 113 additions and 7 deletions

View File

@@ -172,9 +172,14 @@
#clone-panel {
width: 350px;
@media only screen and (max-width: 768px) {
width: 100%;
}
input {
border-radius: 0;
padding: 5px 10px;
width: 50%;
}
.clone.button {
@@ -220,6 +225,12 @@
padding: 8px 10px;
font-weight: normal;
}
.ui.tiny.blue.buttons {
@media only screen and (max-width: 768px) {
width: 100%;
}
}
}
#repo-files-table {
@@ -1229,6 +1240,20 @@
.prerelease.field {
margin-bottom: 0;
}
.field {
button, input {
@media only screen and (max-width: 438px) {
width: 100%;
}
}
button {
@media only screen and (max-width: 768px) {
margin-bottom: 1em;
}
}
}
}
&.forks {
@@ -1756,3 +1781,9 @@ tbody.commit-list {
#repo-topic {
margin-top: 5px;
}
.new-dependency-drop-list {
@media only screen and (max-width: 768px) {
width: 100%;
}
}