aboutsummaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
Diffstat (limited to 'public')
-rwxr-xr-xpublic/css/gogs.css11
-rw-r--r--public/less/_repository.less14
2 files changed, 15 insertions, 10 deletions
diff --git a/public/css/gogs.css b/public/css/gogs.css
index ae1b8880..5adb5245 100755
--- a/public/css/gogs.css
+++ b/public/css/gogs.css
@@ -2236,8 +2236,12 @@ footer .container .links > *:first-child {
font-weight: normal;
padding: 5px 10px;
}
-.repository #commits-table {
- width: 100%;
+.repository #commits-table thead th:first-of-type {
+ padding-left: 15px;
+}
+.repository #commits-table thead .sha {
+ font-size: 13px;
+ padding: 6px 40px 4px 35px;
}
.repository .diff-detail-box {
margin: 15px 0;
@@ -2350,9 +2354,6 @@ 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 61d153dc..e9432d80 100644
--- a/public/less/_repository.less
+++ b/public/less/_repository.less
@@ -593,7 +593,15 @@
}
}
#commits-table {
- width: 100%;
+ thead {
+ th:first-of-type {
+ padding-left: 15px;
+ }
+ .sha {
+ font-size: 13px;
+ padding: 6px 40px 4px 35px;
+ }
+ }
}
.diff-detail-box {
@@ -740,10 +748,6 @@
}
&.quickstart {
- .ui.grid {
- margin-top: 0;
- }
-
.guide {
.item {
padding: 1em;