##// END OF EJS Templates
old style: show the full link box on summary page - no overlap or truncation
Mads Kiilerich -
r4147:1c8f8187 rhodecode-2.2.5-gpl
parent child Browse files
Show More
@@ -1697,6 +1697,7 b' div.form div.fields div.field div.button'
1697 1697
1698 1698 #content div.box #summary {
1699 1699 margin-right: 200px;
1700 min-height: 240px;
1700 1701 }
1701 1702
1702 1703 #summary-menu-stats {
@@ -60,41 +60,41 b' window.onhashchange = function() {'
60 60
61 61 <%def name="main()">
62 62 ${self.repo_context_bar('summary')}
63 <%
64 summary = lambda n:{False:'summary-short'}.get(n)
65 %>
66 <div class="box">
63 <%
64 summary = lambda n:{False:'summary-short'}.get(n)
65 %>
66 <div class="box">
67 67 <!-- box / title -->
68 68 <div class="title">
69 69 ${self.breadcrumbs()}
70 70 </div>
71 71 <!-- end box / title -->
72 72 <div class="form">
73 <div id="summary" class="fields">
74 <div class="field">
75 <div class="label-summary">
76 <label>${_('Clone url')}:</label>
73 <div id="summary" class="fields">
74 <div class="field">
75 <div class="label-summary">
76 <label>${_('Clone url')}:</label>
77 </div>
78 <div class="input ${summary(c.show_stats)}">
79 <input style="width:80%" type="text" id="clone_url" readonly="readonly" value="${c.clone_repo_url}"/>
80 <input style="display:none;width:80%" type="text" id="clone_url_id" readonly="readonly" value="${c.clone_repo_url_id}"/>
81 <div style="display:none" id="clone_by_name" class="btn btn-small clone">${_('Show by Name')}</div>
82 <div id="clone_by_id" class="btn btn-small clone">${_('Show by ID')}</div>
83 </div>
77 84 </div>
78 <div class="input ${summary(c.show_stats)}">
79 <input style="width:80%" type="text" id="clone_url" readonly="readonly" value="${c.clone_repo_url}"/>
80 <input style="display:none;width:80%" type="text" id="clone_url_id" readonly="readonly" value="${c.clone_repo_url_id}"/>
81 <div style="display:none" id="clone_by_name" class="btn btn-small clone">${_('Show by Name')}</div>
82 <div id="clone_by_id" class="btn btn-small clone">${_('Show by ID')}</div>
83 </div>
84 </div>
85 85
86 <div class="field">
87 <div class="label-summary">
88 <label>${_('Description')}:</label>
89 </div>
90 %if c.visual.stylify_metatags:
91 <div class="input ${summary(c.show_stats)} desc">${h.urlify_text(h.desc_stylize(c.rhodecode_db_repo.description))}</div>
92 %else:
93 <div class="input ${summary(c.show_stats)} desc">${h.urlify_text(c.rhodecode_db_repo.description)}</div>
94 %endif
95 </div>
86 <div class="field">
87 <div class="label-summary">
88 <label>${_('Description')}:</label>
89 </div>
90 %if c.visual.stylify_metatags:
91 <div class="input ${summary(c.show_stats)} desc">${h.urlify_text(h.desc_stylize(c.rhodecode_db_repo.description))}</div>
92 %else:
93 <div class="input ${summary(c.show_stats)} desc">${h.urlify_text(c.rhodecode_db_repo.description)}</div>
94 %endif
95 </div>
96 96
97 <div class="field">
97 <div class="field">
98 98 <div class="label-summary">
99 99 <label>${_('Trending files')}:</label>
100 100 </div>
@@ -108,9 +108,9 b' window.onhashchange = function() {'
108 108 %endif
109 109 %endif
110 110 </div>
111 </div>
111 </div>
112 112
113 <div class="field">
113 <div class="field">
114 114 <div class="label-summary">
115 115 <label>${_('Download')}:</label>
116 116 </div>
@@ -133,7 +133,7 b' window.onhashchange = function() {'
133 133 </span>
134 134 %endif
135 135 </div>
136 </div>
136 </div>
137 137 </div>
138 138 <div id="summary-menu-stats">
139 139 <ul>
@@ -186,7 +186,7 b' window.onhashchange = function() {'
186 186 </div>
187 187
188 188
189 <div class="box" style="margin-top: -20px">
189 <div class="box">
190 190 <div class="title">
191 191 <div class="breadcrumbs">
192 192 %if c.repo_changesets:
General Comments 0
You need to be logged in to leave comments. Login now