# HG changeset patch # User domruf # Date 2017-10-27 20:05:18 # Node ID 647e7e0ce8125501447f50572d6d8ffa0db4c474 # Parent 42932bee7a370638daa115eae66570a005f599b9 less: use bootstrap class .text-muted instead of custom one diff --git a/kallithea/public/css/style.css b/kallithea/public/css/style.css --- a/kallithea/public/css/style.css +++ b/kallithea/public/css/style.css @@ -50,9 +50,6 @@ div.formatted-fixed, .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 --git a/kallithea/public/less/style.less b/kallithea/public/less/style.less --- a/kallithea/public/less/style.less +++ b/kallithea/public/less/style.less @@ -54,9 +54,7 @@ div.formatted-fixed, .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 --git a/kallithea/templates/admin/user_groups/user_group_edit_members.html b/kallithea/templates/admin/user_groups/user_group_edit_members.html --- a/kallithea/templates/admin/user_groups/user_group_edit_members.html +++ b/kallithea/templates/admin/user_groups/user_group_edit_members.html @@ -8,5 +8,5 @@ %endfor %else: - ${_('No members yet')} + ${_('No members yet')} %endif diff --git a/kallithea/templates/base/perms_summary.html b/kallithea/templates/base/perms_summary.html --- a/kallithea/templates/base/perms_summary.html +++ b/kallithea/templates/base/perms_summary.html @@ -19,7 +19,7 @@ %endif %if not permissions[section]: - ${_('No permissions defined yet')} + ${_('No permissions defined yet')} %else:
diff --git a/kallithea/templates/compare/compare_cs.html b/kallithea/templates/compare/compare_cs.html --- a/kallithea/templates/compare/compare_cs.html +++ b/kallithea/templates/compare/compare_cs.html @@ -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 --git a/kallithea/templates/compare/compare_diff.html b/kallithea/templates/compare/compare_diff.html --- a/kallithea/templates/compare/compare_diff.html +++ b/kallithea/templates/compare/compare_diff.html @@ -66,7 +66,7 @@ ${self.repo_context_bar('changelog')}
%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 --git a/kallithea/templates/pullrequests/pullrequest_data.html b/kallithea/templates/pullrequests/pullrequest_data.html --- a/kallithea/templates/pullrequests/pullrequest_data.html +++ b/kallithea/templates/pullrequests/pullrequest_data.html @@ -3,7 +3,7 @@ <%def name="pullrequest_overview(pullrequests)"> %if not len(pullrequests): -
${_('No entries')}
+
${_('No entries')}
<% return %> %endif diff --git a/kallithea/templates/pullrequests/pullrequest_show.html b/kallithea/templates/pullrequests/pullrequest_show.html --- a/kallithea/templates/pullrequests/pullrequest_show.html +++ b/kallithea/templates/pullrequests/pullrequest_show.html @@ -303,7 +303,7 @@ ${self.repo_context_bar('showpullrequest
%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 --git a/kallithea/tests/functional/test_compare_local.py b/kallithea/tests/functional/test_compare_local.py --- a/kallithea/tests/functional/test_compare_local.py +++ b/kallithea/tests/functional/test_compare_local.py @@ -126,8 +126,8 @@ class TestCompareController(TestControll 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 @@ class TestCompareController(TestControll 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()