summaryrefslogtreecommitdiffstats
path: root/public
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2015-12-02 20:10:00 -0500
committerUnknwon <u@gogs.io>2015-12-02 20:10:00 -0500
commit29375059e1d7d943cc3e517f2433b5df1f126db2 (patch)
tree7218f26599e187e04718fda44da6d364a67747a6 /public
parent85449b2f11b3a0b13b7a37ac024a924435e15745 (diff)
downloadgitea-29375059e1d7d943cc3e517f2433b5df1f126db2.tar.gz
gitea-29375059e1d7d943cc3e517f2433b5df1f126db2.zip
minor CSS fix
Diffstat (limited to 'public')
-rwxr-xr-xpublic/css/gogs.css9
-rw-r--r--public/less/_repository.less12
2 files changed, 21 insertions, 0 deletions
diff --git a/public/css/gogs.css b/public/css/gogs.css
index 0214069e31..1c5a29b251 100755
--- a/public/css/gogs.css
+++ b/public/css/gogs.css
@@ -1864,6 +1864,9 @@ footer .container .links > *:first-child {
position: relative;
width: 325%;
}
+.repository.file.list #repo-files-table thead th .ui.sha.label {
+ font-weight: bold;
+}
.repository.file.list #repo-files-table thead .ui.avatar {
margin-bottom: 5px;
}
@@ -2234,6 +2237,9 @@ footer .container .links > *:first-child {
font-weight: normal;
padding: 5px 10px;
}
+.repository #commits-table {
+ width: 100%;
+}
.repository .diff-detail-box {
margin: 15px 0;
line-height: 30px;
@@ -2345,6 +2351,9 @@ footer .container .links > *:first-child {
overflow-x: auto;
overflow-y: hidden;
}
+.repository.quickstart .ui.grid {
+ margin-top: 0;
+}
.repository.quickstart .guide .item {
padding: 1em;
}
diff --git a/public/less/_repository.less b/public/less/_repository.less
index 184c145050..61d153dcde 100644
--- a/public/less/_repository.less
+++ b/public/less/_repository.less
@@ -146,11 +146,16 @@
padding-top: 8px;
padding-bottom: 5px;
font-weight: normal;
+
&:first-child {
display: block;
position: relative;
width: 325%;
}
+
+ .ui.sha.label {
+ font-weight: bold;
+ }
}
.ui.avatar {
margin-bottom: 5px;
@@ -587,6 +592,9 @@
}
}
}
+ #commits-table {
+ width: 100%;
+ }
.diff-detail-box {
margin: 15px 0;
@@ -732,6 +740,10 @@
}
&.quickstart {
+ .ui.grid {
+ margin-top: 0;
+ }
+
.guide {
.item {
padding: 1em;