##// END OF EJS Templates
ui: fixed branding look&feel as per discussions.
dan -
r3543:692134f0 default
parent child Browse files
Show More
@@ -214,8 +214,7 b' class TestAdminSettingsGlobal(object):'
214 214 })
215 215
216 216 response = response.follow()
217 response.mustcontain(
218 """<div class="branding">- %s</div>""" % new_title)
217 response.mustcontain(new_title)
219 218
220 219 def post_and_verify_settings(self, settings):
221 220 old_title = 'RhodeCode'
@@ -1024,11 +1024,15 b' label {'
1024 1024 float:left;
1025 1025 }
1026 1026
1027 .branding{
1027 .branding {
1028 1028 float: left;
1029 1029 padding: 9px 2px;
1030 1030 line-height: 1em;
1031 1031 font-size: @navigation-fontsize;
1032
1033 a {
1034 color: @grey5
1035 }
1032 1036 }
1033 1037
1034 1038 img {
@@ -11,9 +11,11 b''
11 11 <div class="logo-wrapper">
12 12 <a href="${h.route_path('home')}"><img src="${h.asset('images/rhodecode-logo-white-60x60.png')}" alt="RhodeCode"/></a>
13 13 </div>
14 %if c.rhodecode_name:
15 <div class="branding">- ${h.branding(c.rhodecode_name)}</div>
16 %endif
14 % if c.rhodecode_name:
15 <div class="branding">
16 <a href="${h.route_path('home')}">${h.branding(c.rhodecode_name)}</a>
17 </div>
18 % endif
17 19 </div>
18 20 <!-- MENU BAR NAV -->
19 21 ${self.menu_bar_nav()}
@@ -16,9 +16,11 b''
16 16 <div class="logo-wrapper">
17 17 <a href="${h.route_path('home')}"><img src="${h.asset('images/rhodecode-logo-white-60x60.png')}" alt="RhodeCode"/></a>
18 18 </div>
19 %if c.rhodecode_name:
20 <div class="branding">- ${h.branding(c.rhodecode_name)}</div>
21 %endif
19 % if c.rhodecode_name:
20 <div class="branding">
21 <a href="${h.route_path('home')}">${h.branding(c.rhodecode_name)}</a>
22 </div>
23 % endif
22 24 </div>
23 25 </div>
24 26 </div>
@@ -16,9 +16,11 b''
16 16 <div class="logo-wrapper">
17 17 <a href="${h.route_path('home')}"><img src="${h.asset('images/rhodecode-logo-white-60x60.png')}" alt="RhodeCode"/></a>
18 18 </div>
19 %if c.rhodecode_name:
20 <div class="branding">- ${h.branding(c.rhodecode_name)}</div>
21 %endif
19 % if c.rhodecode_name:
20 <div class="branding">
21 <a href="${h.route_path('home')}">${h.branding(c.rhodecode_name)}</a>
22 </div>
23 % endif
22 24 </div>
23 25 </div>
24 26 </div>
@@ -16,9 +16,11 b''
16 16 <div class="logo-wrapper">
17 17 <a href="${h.route_path('home')}"><img src="${h.asset('images/rhodecode-logo-white-60x60.png')}" alt="RhodeCode"/></a>
18 18 </div>
19 %if c.rhodecode_name:
20 <div class="branding">- ${h.branding(c.rhodecode_name)}</div>
21 %endif
19 % if c.rhodecode_name:
20 <div class="branding">
21 <a href="${h.route_path('home')}">${h.branding(c.rhodecode_name)}</a>
22 </div>
23 % endif
22 24 </div>
23 25 </div>
24 26 </div>
General Comments 0
You need to be logged in to leave comments. Login now