# HG changeset patch # User Marcin Kuzminski # Date 2011-10-31 01:12:12 # Node ID 64f44c2cf47cbd2d2982fddbd5d1afceffa39016 # Parent 5cb398de935e9811657c1b2a52ee98d4802de53b fixes small css issues with chrome diff --git a/rhodecode/public/css/style.css b/rhodecode/public/css/style.css --- a/rhodecode/public/css/style.css +++ b/rhodecode/public/css/style.css @@ -3005,6 +3005,13 @@ div#legend_container table td,div#legend padding: 0 !important; } +.q_filter_box { + -webkit-box-shadow: rgba(0,0,0,0.07) 0 1px 2px inset; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + #q_filter { border: 0 none; color: #AAAAAA; diff --git a/rhodecode/templates/admin/repos_groups/repos_groups.html b/rhodecode/templates/admin/repos_groups/repos_groups.html --- a/rhodecode/templates/admin/repos_groups/repos_groups.html +++ b/rhodecode/templates/admin/repos_groups/repos_groups.html @@ -5,11 +5,9 @@ <%def name="breadcrumbs()"> - - ${_('Groups')} + ${_('Groups')} %if c.group.parent_group: - » ${h.link_to(c.group.parent_group.name, - h.url('repos_group_home',group_name=c.group.parent_group.group_name))} + » ${h.link_to(c.group.parent_group.name,h.url('repos_group_home',group_name=c.group.parent_group.group_name))} %endif » "${c.group.name}" ${_('with')} diff --git a/rhodecode/templates/index.html b/rhodecode/templates/index.html --- a/rhodecode/templates/index.html +++ b/rhodecode/templates/index.html @@ -1,14 +1,8 @@ ## -*- coding: utf-8 -*- <%inherit file="base/base.html"/> -<%def name="title()"> - ${_('Dashboard')} - ${c.rhodecode_name} - -<%def name="breadcrumbs()"> - ${c.rhodecode_name} - -<%def name="page_nav()"> - ${self.menu('home')} - +<%def name="title()">${_('Dashboard')} - ${c.rhodecode_name} +<%def name="breadcrumbs()">${c.rhodecode_name} +<%def name="page_nav()">${self.menu('home')} <%def name="main()"> <%include file="index_base.html" args="parent=self"/> diff --git a/rhodecode/templates/index_base.html b/rhodecode/templates/index_base.html --- a/rhodecode/templates/index_base.html +++ b/rhodecode/templates/index_base.html @@ -3,8 +3,7 @@
- - ${parent.breadcrumbs()} ${_('repositories')} + ${parent.breadcrumbs()} ${_('repositories')}
%if c.rhodecode_user.username != 'default': %if h.HasPermissionAny('hg.admin','hg.create.repository')():