summaryrefslogtreecommitdiffstats
path: root/public/css
diff options
context:
space:
mode:
authorGary Kim <gary@garykim.dev>2019-07-17 20:02:41 +0000
committertechknowlogick <techknowlogick@gitea.io>2019-07-17 16:02:41 -0400
commitc8aa46d27bbd2c85c75f11b22aba2b0197b82bde (patch)
tree59e4789db1e4312e0a156afd6babfa812b3c8601 /public/css
parent34516603adfdc33a9d4b8186d2aa81d34972b8b9 (diff)
downloadgitea-c8aa46d27bbd2c85c75f11b22aba2b0197b82bde.tar.gz
gitea-c8aa46d27bbd2c85c75f11b22aba2b0197b82bde.zip
Add Extra Info to Branches Page (#7461)
* Add branch protection information to branches page This change will add a tag on the ui that indicates whether a branch is protected on the repository branches page. Signed-off-by: Gary Kim <gary@garykim.dev> * Add last commit information to repo branches page This change adds the ID and commit message of the last commit on a branch to the branches page for repositories. Signed-off-by: Gary Kim <gary@garykim.dev> * Make branch page commit message truncate in css rather then template The truncating of commit messages shown under branches in the repository branches page has been moved to using css rather then the Go template as the template was causing some issues when the commit messaged had a link when rendered. This commit also makes the commit message paragraph itself use flex in order to make managing its elements easier. Signed-off-by: Gary Kim <gary@garykim.dev>
Diffstat (limited to 'public/css')
-rw-r--r--public/css/index.css3
1 files changed, 2 insertions, 1 deletions
diff --git a/public/css/index.css b/public/css/index.css
index 0630cb6ed5..4a7dfb2824 100644
--- a/public/css/index.css
+++ b/public/css/index.css
@@ -982,7 +982,8 @@ tbody.commit-list{vertical-align:baseline}
.ui.repository.list .item .time{font-size:12px;color:grey}
.ui.repository.list .item .ui.tags{margin-bottom:1em}
.ui.repository.list .item .ui.avatar.image{width:24px;height:24px}
-.ui.repository.branches .time{font-size:12px;color:grey}
+.ui.repository.branches .info{font-size:12px;color:grey;display:flex;white-space:pre}
+.ui.repository.branches .info .commit-message{max-width:72em;overflow:hidden;text-overflow:ellipsis}
.ui.user.list .item{padding-bottom:25px}
.ui.user.list .item:not(:first-child){border-top:1px solid #eee;padding-top:25px}
.ui.user.list .item .ui.avatar.image{width:40px;height:40px}