Show More
@@ -135,7 +135,8 b' cursor: pointer;' | |||
|
135 | 135 | padding:0; |
|
136 | 136 | margin:0; |
|
137 | 137 | } |
|
138 | .line:hover{ | |
|
138 | ||
|
139 | .diffblock.margined.comm .line:hover{ | |
|
139 | 140 | background-color:#FFFFCC !important; |
|
140 | 141 | cursor: pointer !important; |
|
141 | 142 | background-image:url("../images/icons/comment_add.png") !important; |
@@ -16,7 +16,7 b'' | |||
|
16 | 16 | ${_('private repository')} |
|
17 | 17 | </span> |
|
18 | 18 | </td> |
|
19 |
<td class="private_repo_msg"><img style="vertical-align:bottom" src="${h.url( |
|
|
19 | <td class="private_repo_msg"><img style="vertical-align:bottom" src="${h.url('/images/icons/user.png')}"/>${r2p.user.username}</td> | |
|
20 | 20 | </tr> |
|
21 | 21 | %else: |
|
22 | 22 | <tr id="id${id(r2p.user.username)}"> |
@@ -58,7 +58,7 b'' | |||
|
58 | 58 | <a href="${h.url('summary_home',repo_name=repo['dbrepo_fork']['repo_name'])}"> |
|
59 | 59 | <img class="icon" alt="${_('public')}" |
|
60 | 60 | title="${_('Fork of')} ${repo['dbrepo_fork']['repo_name']}" |
|
61 |
src="${h.url( |
|
|
61 | src="${h.url('/images/icons/arrow_divide.png')}"/></a> | |
|
62 | 62 | %endif |
|
63 | 63 | </td> |
|
64 | 64 | <td title="${repo['description']}">${h.truncate(repo['description'],60)}</td> |
@@ -138,16 +138,16 b'' | |||
|
138 | 138 | <tr> |
|
139 | 139 | <td> |
|
140 | 140 | %if repo['dbrepo']['repo_type'] =='hg': |
|
141 |
<img class="icon" title="${_('Mercurial repository')}" alt="${_('Mercurial repository')}" src="${h.url( |
|
|
141 | <img class="icon" title="${_('Mercurial repository')}" alt="${_('Mercurial repository')}" src="${h.url('/images/icons/hgicon.png')}"/> | |
|
142 | 142 | %elif repo['dbrepo']['repo_type'] =='git': |
|
143 |
<img class="icon" title="${_('Git repository')}" alt="${_('Git repository')}" src="${h.url( |
|
|
143 | <img class="icon" title="${_('Git repository')}" alt="${_('Git repository')}" src="${h.url('/images/icons/giticon.png')}"/> | |
|
144 | 144 | %else: |
|
145 | 145 | |
|
146 | 146 | %endif |
|
147 | 147 | %if repo['dbrepo']['private']: |
|
148 |
<img class="icon" alt="${_('private')}" src="${h.url( |
|
|
148 | <img class="icon" alt="${_('private')}" src="${h.url('/images/icons/lock.png')}"/> | |
|
149 | 149 | %else: |
|
150 |
<img class="icon" alt="${_('public')}" src="${h.url( |
|
|
150 | <img class="icon" alt="${_('public')}" src="${h.url('/images/icons/lock_open.png')}"/> | |
|
151 | 151 | %endif |
|
152 | 152 | |
|
153 | 153 | ${h.link_to(repo['name'], h.url('summary_home',repo_name=repo['name']),class_="repo_name")} |
@@ -59,23 +59,23 b'' | |||
|
59 | 59 | ${h.select('users_group_members',[x[0] for x in c.group_members],c.group_members,multiple=True,size=8,style="min-width:210px")} |
|
60 | 60 | <div id="remove_all_elements" style="cursor:pointer;text-align:center"> |
|
61 | 61 | ${_('Remove all elements')} |
|
62 |
<img alt="remove" style="vertical-align:text-bottom" src="${h.url( |
|
|
62 | <img alt="remove" style="vertical-align:text-bottom" src="${h.url('/images/icons/arrow_right.png')}"/> | |
|
63 | 63 | </div> |
|
64 | 64 | </div> |
|
65 | 65 | <div style="float:left;width:20px;padding-top:50px"> |
|
66 | 66 | <img alt="add" id="add_element" |
|
67 | 67 | style="padding:2px;cursor:pointer" |
|
68 |
src="${h.url( |
|
|
68 | src="${h.url('/images/icons/arrow_left.png')}"/> | |
|
69 | 69 | <br /> |
|
70 | 70 | <img alt="remove" id="remove_element" |
|
71 | 71 | style="padding:2px;cursor:pointer" |
|
72 |
src="${h.url( |
|
|
72 | src="${h.url('/images/icons/arrow_right.png')}"/> | |
|
73 | 73 | </div> |
|
74 | 74 | <div style="float:left"> |
|
75 | 75 | <div class="text" style="padding: 0px 0px 6px;">${_('Available members')}</div> |
|
76 | 76 | ${h.select('available_members',[],c.available_members,multiple=True,size=8,style="min-width:210px")} |
|
77 | 77 | <div id="add_all_elements" style="cursor:pointer;text-align:center"> |
|
78 |
<img alt="add" style="vertical-align:text-bottom" src="${h.url( |
|
|
78 | <img alt="add" style="vertical-align:text-bottom" src="${h.url('/images/icons/arrow_left.png')}"/> | |
|
79 | 79 | ${_('Add all elements')} |
|
80 | 80 | </div> |
|
81 | 81 | </div> |
@@ -119,7 +119,7 b'' | |||
|
119 | 119 | %for change,filenode,diff,cs1,cs2,stat in c.changes: |
|
120 | 120 | %if change !='removed': |
|
121 | 121 | <div style="clear:both;height:10px"></div> |
|
122 | <div class="diffblock margined" id="${self.fid(filenode.changeset.raw_id,filenode.path)}"> | |
|
122 | <div class="diffblock margined comm" id="${self.fid(filenode.changeset.raw_id,filenode.path)}"> | |
|
123 | 123 | <div class="code-header"> |
|
124 | 124 | <div class="changeset_header"> |
|
125 | 125 | <span class="changeset_file"> |
@@ -38,7 +38,7 b'' | |||
|
38 | 38 | %for entry in c.following: |
|
39 | 39 | <div class="currently_following"> |
|
40 | 40 | %if entry.follows_user_id: |
|
41 |
<img title="${_('following user')}" alt="${_('user')}" src="${h.url( |
|
|
41 | <img title="${_('following user')}" alt="${_('user')}" src="${h.url('/images/icons/user.png')}"/> | |
|
42 | 42 | ${entry.follows_user.full_contact} |
|
43 | 43 | %endif |
|
44 | 44 | |
@@ -50,9 +50,9 b'' | |||
|
50 | 50 | </span> |
|
51 | 51 | </div> |
|
52 | 52 | %if entry.follows_repository.private: |
|
53 |
<img class="icon" title="${_('private repository')}" alt="${_('private repository')}" src="${h.url( |
|
|
53 | <img class="icon" title="${_('private repository')}" alt="${_('private repository')}" src="${h.url('/images/icons/lock.png')}"/> | |
|
54 | 54 | %else: |
|
55 |
<img class="icon" title="${_('public repository')}" alt="${_('public repository')}" src="${h.url( |
|
|
55 | <img class="icon" title="${_('public repository')}" alt="${_('public repository')}" src="${h.url('/images/icons/lock_open.png')}"/> | |
|
56 | 56 | %endif |
|
57 | 57 | |
|
58 | 58 | ${h.link_to(entry.follows_repository.repo_name,h.url('summary_home', |
General Comments 0
You need to be logged in to leave comments.
Login now