diff --git a/rhodecode/public/css/main.less b/rhodecode/public/css/main.less --- a/rhodecode/public/css/main.less +++ b/rhodecode/public/css/main.less @@ -2423,15 +2423,53 @@ h3.files_location{ background-color: white; border-left: 1px solid #eeeeee; } - - - - - - - - - +// quick filter +.grid-quick-filter { + float: right; + position: relative; +} + +.grid-filter-box { + display: flex; + padding: 0px; + border-radius: 3px; + margin-bottom: 0; + + a { + border: none !important; + } + + li { + list-style-type: none + } +} + +.grid-filter-box-icon { + line-height: 33px; + padding: 0; + width: 20px; + position: absolute; + z-index: 11; + left: 5px; +} + +.grid-filter-box-input { + margin-right: 0; + + input { + border: 1px solid @white; + padding-left: 25px; + width: 145px; + + &:hover { + border-color: @grey6; + } + + &:focus { + border-color: @grey5; + } + } +} diff --git a/rhodecode/templates/admin/gists/index.mako b/rhodecode/templates/admin/gists/index.mako --- a/rhodecode/templates/admin/gists/index.mako +++ b/rhodecode/templates/admin/gists/index.mako @@ -14,19 +14,7 @@ %endif %def> -<%def name="breadcrumbs_links()"> - - %if c.show_private and not c.show_public: - ${_('Private Gists for user %s') % c.rhodecode_user.username} - %elif c.show_public and not c.show_private: - ${_('Public Gists for user %s') % c.rhodecode_user.username} - %elif c.show_public and c.show_private: - ${_('All Gists for user %s') % c.rhodecode_user.username} - %else: - ${_('All Public Gists')} - %endif - - 0 -%def> +<%def name="breadcrumbs_links()">%def> <%def name="menu_bar_nav()"> ${self.menu_items(active='gists')} @@ -35,43 +23,52 @@ <%def name="main()"> +