Show More
@@ -253,12 +253,10 b' tr.inline-comments div {' | |||
|
253 | 253 | } |
|
254 | 254 | |
|
255 | 255 | .pr-version { |
|
256 | float: left; | |
|
257 | margin: 0px 4px; | |
|
256 | display: inline-block; | |
|
258 | 257 | } |
|
259 | 258 | .pr-version-inline { |
|
260 | float: left; | |
|
261 | margin: 0px 4px; | |
|
259 | display: inline-block; | |
|
262 | 260 | } |
|
263 | 261 | .pr-version-num { |
|
264 | 262 | font-size: 10px; |
@@ -37,6 +37,10 b'' | |||
|
37 | 37 | &:hover { |
|
38 | 38 | border-color: @grey4; |
|
39 | 39 | } |
|
40 | ||
|
41 | &.authortag { | |
|
42 | padding: 2px; | |
|
43 | } | |
|
40 | 44 | } |
|
41 | 45 | |
|
42 | 46 | .tag0 { .border ( @border-thickness-tags, @grey4 ); color:@grey4; } |
@@ -62,6 +62,13 b'' | |||
|
62 | 62 | |
|
63 | 63 | <div class="author ${'author-inline' if inline else 'author-general'}"> |
|
64 | 64 | ${base.gravatar_with_user(comment.author.email, 16, tooltip=True)} |
|
65 | ||
|
66 | % if comment.pull_request and comment.pull_request.author.user_id == comment.author.user_id: | |
|
67 | <span class="tag authortag tooltip" title="${_('Pull request author')}"> | |
|
68 | ${_('author')} | |
|
69 | </span> | |
|
70 | % endif | |
|
71 | ||
|
65 | 72 | </div> |
|
66 | 73 | <div class="date"> |
|
67 | 74 | ${h.age_component(comment.modified_at, time_is_local=True)} |
@@ -139,15 +146,9 b'' | |||
|
139 | 146 | <a class="permalink" href="#comment-${comment.comment_id}"> ¶</a> |
|
140 | 147 | |
|
141 | 148 | <div class="comment-links-block"> |
|
142 | % if comment.pull_request and comment.pull_request.author.user_id == comment.author.user_id: | |
|
143 | <span class="tag authortag tooltip" title="${_('Pull request author')}"> | |
|
144 | ${_('author')} | |
|
145 | </span> | |
|
146 | | | |
|
147 | % endif | |
|
149 | ||
|
148 | 150 |
|
|
149 | <div class="pr-version-inline"> | |
|
150 | <a href="${request.current_route_path(_query=dict(version=comment.pull_request_version_id), _anchor='comment-{}'.format(comment.comment_id))}"> | |
|
151 | <a class="pr-version-inline" href="${request.current_route_path(_query=dict(version=comment.pull_request_version_id), _anchor='comment-{}'.format(comment.comment_id))}"> | |
|
151 | 152 | % if outdated_at_ver: |
|
152 | 153 | <code class="pr-version-num" title="${_('Outdated comment from pull request version v{0}, latest v{1}').format(pr_index_ver, latest_ver)}"> |
|
153 | 154 | outdated ${'v{}'.format(pr_index_ver)} | |
@@ -158,25 +159,26 b'' | |||
|
158 | 159 | </code> |
|
159 | 160 | % endif |
|
160 | 161 | </a> |
|
161 | </div> | |
|
162 | 162 | % else: |
|
163 | 163 | % if comment.pull_request_version_id and pr_index_ver: |
|
164 | | | |
|
165 | <div class="pr-version"> | |
|
164 | ||
|
166 | 165 |
|
|
167 | <a href="?version=${comment.pull_request_version_id}#comment-${comment.comment_id}"> | |
|
166 | <a class="pr-version" | |
|
167 | href="?version=${comment.pull_request_version_id}#comment-${comment.comment_id}" | |
|
168 | > | |
|
168 | 169 | ${_('Outdated comment from pull request version v{0}, latest v{1}').format(pr_index_ver, latest_ver)} |
|
169 | </a> | |
|
170 | </a> | | |
|
170 | 171 | % else: |
|
171 | <div title="${_('Comment from pull request version v{0}, latest v{1}').format(pr_index_ver, latest_ver)}"> | |
|
172 | <a href="${h.route_path('pullrequest_show',repo_name=comment.pull_request.target_repo.repo_name,pull_request_id=comment.pull_request.pull_request_id, version=comment.pull_request_version_id)}"> | |
|
172 | <a class="pr-version" | |
|
173 | title="${_('Comment from pull request version v{0}, latest v{1}').format(pr_index_ver, latest_ver)}" | |
|
174 | href="${h.route_path('pullrequest_show',repo_name=comment.pull_request.target_repo.repo_name,pull_request_id=comment.pull_request.pull_request_id, version=comment.pull_request_version_id)}" | |
|
175 | > | |
|
173 | 176 |
|
|
174 | 177 |
|
|
175 | 178 |
|
|
176 |
|
|
|
177 | </div> | |
|
179 | </a> | | |
|
178 | 180 | % endif |
|
179 | </div> | |
|
181 | ||
|
180 | 182 |
|
|
181 | 183 | % endif |
|
182 | 184 |
General Comments 0
You need to be logged in to leave comments.
Login now