# HG changeset patch # User domruf # Date 1509127518 -7200 # Node ID 647e7e0ce8125501447f50572d6d8ffa0db4c474 # Parent 42932bee7a370638daa115eae66570a005f599b9 less: use bootstrap class .text-muted instead of custom one diff -r 42932bee7a37 -r 647e7e0ce812 kallithea/public/css/style.css --- a/kallithea/public/css/style.css Sun Oct 29 13:36:22 2017 +0100 +++ b/kallithea/public/css/style.css Fri Oct 27 20:05:18 2017 +0200 @@ -50,9 +50,6 @@ .changeset_hash { font-family: Lucida Console, Consolas, Monaco, Inconsolata, Liberation Mono, monospace; } -.empty_data { - color: #B9B9B9; -} .inline-comments-general.show-general-status .hidden.general-only { display: block !important; } diff -r 42932bee7a37 -r 647e7e0ce812 kallithea/public/less/style.less --- a/kallithea/public/less/style.less Sun Oct 29 13:36:22 2017 +0100 +++ b/kallithea/public/less/style.less Fri Oct 27 20:05:18 2017 +0200 @@ -54,9 +54,7 @@ .changeset_hash { font-family: Lucida Console, Consolas, Monaco, Inconsolata, Liberation Mono, monospace; } -.empty_data { - color: #B9B9B9; -} + .inline-comments-general.show-general-status .hidden.general-only { display: block !important; } diff -r 42932bee7a37 -r 647e7e0ce812 kallithea/templates/admin/user_groups/user_group_edit_members.html --- a/kallithea/templates/admin/user_groups/user_group_edit_members.html Sun Oct 29 13:36:22 2017 +0100 +++ b/kallithea/templates/admin/user_groups/user_group_edit_members.html Fri Oct 27 20:05:18 2017 +0200 @@ -8,5 +8,5 @@ %endfor %else: - ${_('No members yet')} + ${_('No members yet')} %endif diff -r 42932bee7a37 -r 647e7e0ce812 kallithea/templates/base/perms_summary.html --- a/kallithea/templates/base/perms_summary.html Sun Oct 29 13:36:22 2017 +0100 +++ b/kallithea/templates/base/perms_summary.html Fri Oct 27 20:05:18 2017 +0200 @@ -19,7 +19,7 @@ %endif %if not permissions[section]: - ${_('No permissions defined yet')} + ${_('No permissions defined yet')} %else:
diff -r 42932bee7a37 -r 647e7e0ce812 kallithea/templates/compare/compare_cs.html --- a/kallithea/templates/compare/compare_cs.html Sun Oct 29 13:36:22 2017 +0100 +++ b/kallithea/templates/compare/compare_cs.html Fri Oct 27 20:05:18 2017 +0200 @@ -2,7 +2,7 @@ <%namespace name="changelog_table" file="/changelog/changelog_table.html"/>
%if not c.cs_ranges: - ${_('No changesets')} + ${_('No changesets')} %else: %if c.ancestors: diff -r 42932bee7a37 -r 647e7e0ce812 kallithea/templates/compare/compare_diff.html --- a/kallithea/templates/compare/compare_diff.html Sun Oct 29 13:36:22 2017 +0100 +++ b/kallithea/templates/compare/compare_diff.html Fri Oct 27 20:05:18 2017 +0200 @@ -66,7 +66,7 @@
%if not c.file_diff_data: - ${_('No files')} + ${_('No files')} %endif %for fid, url_fid, op, a_path, path, diff, stats in c.file_diff_data:
diff -r 42932bee7a37 -r 647e7e0ce812 kallithea/templates/pullrequests/pullrequest_data.html --- a/kallithea/templates/pullrequests/pullrequest_data.html Sun Oct 29 13:36:22 2017 +0100 +++ b/kallithea/templates/pullrequests/pullrequest_data.html Fri Oct 27 20:05:18 2017 +0200 @@ -3,7 +3,7 @@ <%def name="pullrequest_overview(pullrequests)"> %if not len(pullrequests): -
${_('No entries')}
+
${_('No entries')}
<% return %> %endif diff -r 42932bee7a37 -r 647e7e0ce812 kallithea/templates/pullrequests/pullrequest_show.html --- a/kallithea/templates/pullrequests/pullrequest_show.html Sun Oct 29 13:36:22 2017 +0100 +++ b/kallithea/templates/pullrequests/pullrequest_show.html Fri Oct 27 20:05:18 2017 +0200 @@ -303,7 +303,7 @@
%if not c.file_diff_data: - ${_('No files')} + ${_('No files')} %endif %for fid, url_fid, op, a_path, path, diff, stats in c.file_diff_data:
diff -r 42932bee7a37 -r 647e7e0ce812 kallithea/tests/functional/test_compare_local.py --- a/kallithea/tests/functional/test_compare_local.py Sun Oct 29 13:36:22 2017 +0100 +++ b/kallithea/tests/functional/test_compare_local.py Fri Oct 27 20:05:18 2017 +0200 @@ -126,8 +126,8 @@ response.mustcontain('%s@default' % (HG_REPO)) response.mustcontain('%s@default' % (HG_REPO)) # branch are equal - response.mustcontain('No files') - response.mustcontain('No changesets') + response.mustcontain('No files') + response.mustcontain('No changesets') def test_index_branch_git(self): self.log_user() @@ -142,8 +142,8 @@ response.mustcontain('%s@master' % (GIT_REPO)) response.mustcontain('%s@master' % (GIT_REPO)) # branch are equal - response.mustcontain('No files') - response.mustcontain('No changesets') + response.mustcontain('No files') + response.mustcontain('No changesets') def test_compare_revisions_hg(self): self.log_user()