##// 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 #content div.box #summary {
1698 #content div.box #summary {
1699 margin-right: 200px;
1699 margin-right: 200px;
1700 min-height: 240px;
1700 }
1701 }
1701
1702
1702 #summary-menu-stats {
1703 #summary-menu-stats {
@@ -60,41 +60,41 b' window.onhashchange = function() {'
60
60
61 <%def name="main()">
61 <%def name="main()">
62 ${self.repo_context_bar('summary')}
62 ${self.repo_context_bar('summary')}
63 <%
63 <%
64 summary = lambda n:{False:'summary-short'}.get(n)
64 summary = lambda n:{False:'summary-short'}.get(n)
65 %>
65 %>
66 <div class="box">
66 <div class="box">
67 <!-- box / title -->
67 <!-- box / title -->
68 <div class="title">
68 <div class="title">
69 ${self.breadcrumbs()}
69 ${self.breadcrumbs()}
70 </div>
70 </div>
71 <!-- end box / title -->
71 <!-- end box / title -->
72 <div class="form">
72 <div class="form">
73 <div id="summary" class="fields">
73 <div id="summary" class="fields">
74 <div class="field">
74 <div class="field">
75 <div class="label-summary">
75 <div class="label-summary">
76 <label>${_('Clone url')}:</label>
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 </div>
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">
86 <div class="field">
87 <div class="label-summary">
87 <div class="label-summary">
88 <label>${_('Description')}:</label>
88 <label>${_('Description')}:</label>
89 </div>
89 </div>
90 %if c.visual.stylify_metatags:
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>
91 <div class="input ${summary(c.show_stats)} desc">${h.urlify_text(h.desc_stylize(c.rhodecode_db_repo.description))}</div>
92 %else:
92 %else:
93 <div class="input ${summary(c.show_stats)} desc">${h.urlify_text(c.rhodecode_db_repo.description)}</div>
93 <div class="input ${summary(c.show_stats)} desc">${h.urlify_text(c.rhodecode_db_repo.description)}</div>
94 %endif
94 %endif
95 </div>
95 </div>
96
96
97 <div class="field">
97 <div class="field">
98 <div class="label-summary">
98 <div class="label-summary">
99 <label>${_('Trending files')}:</label>
99 <label>${_('Trending files')}:</label>
100 </div>
100 </div>
@@ -108,9 +108,9 b' window.onhashchange = function() {'
108 %endif
108 %endif
109 %endif
109 %endif
110 </div>
110 </div>
111 </div>
111 </div>
112
112
113 <div class="field">
113 <div class="field">
114 <div class="label-summary">
114 <div class="label-summary">
115 <label>${_('Download')}:</label>
115 <label>${_('Download')}:</label>
116 </div>
116 </div>
@@ -133,7 +133,7 b' window.onhashchange = function() {'
133 </span>
133 </span>
134 %endif
134 %endif
135 </div>
135 </div>
136 </div>
136 </div>
137 </div>
137 </div>
138 <div id="summary-menu-stats">
138 <div id="summary-menu-stats">
139 <ul>
139 <ul>
@@ -186,7 +186,7 b' window.onhashchange = function() {'
186 </div>
186 </div>
187
187
188
188
189 <div class="box" style="margin-top: -20px">
189 <div class="box">
190 <div class="title">
190 <div class="title">
191 <div class="breadcrumbs">
191 <div class="breadcrumbs">
192 %if c.repo_changesets:
192 %if c.repo_changesets:
General Comments 0
You need to be logged in to leave comments. Login now