diff options
author | slene <vslene@gmail.com> | 2014-03-15 15:28:06 +0800 |
---|---|---|
committer | slene <vslene@gmail.com> | 2014-03-15 15:28:06 +0800 |
commit | 06deed820d9f48ecf972c8716b17ad58b91ab9b9 (patch) | |
tree | fc94500dd1dd607d1c6470f89abadcba84bbc285 /public/css | |
parent | e251b9bbca35e01060ac3b2ee0bd836dc7719c19 (diff) |
Add HomeLink and AvatarLink to User model. Please use .SignedUser in template.
Diffstat (limited to 'public/css')
-rwxr-xr-x | public/css/gogs.css | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/public/css/gogs.css b/public/css/gogs.css index 160f561c..e7730b2d 100755 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -520,4 +520,34 @@ body { #gogs-source-table.table-hover > tbody > tr:hover > td { background-color: #FEFEFE; -}
\ No newline at end of file +} + +.activity-list { + font-size: 14px; +} + +.activity-list .icon { + font-size: 20px; + color: #aaa; + float: left; +} + +.activity-list .info { + float: left; + padding:0 0 0 10px; + line-height: 1.7em; +} + +.activity-list .meta { + color: #aaa; +} + +.activity-list li { + padding: 15px 0; + border-top: 1px solid #ddd; +} + +.activity-list li:first-child { + border-top: none; +} + |