# HG changeset patch # User Mads Kiilerich # Date 2013-04-03 13:56:12 # Node ID 8a8a559eaf950f4ada95010e3907923406b4564d # Parent 659bd922520e058969d0322468db013cd469a807 pullrequests: state "closed" explicitly A closed-as-in-locked icon did not communicate the closed-as-in-inactive state clearly. Instead we say "Closed" and make the text greyed out. Not pretty but more efficient. 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 @@ -4567,6 +4567,14 @@ PULL REQUESTS font-weight: bold; } +div.closed h4 a, +h3.closed, +#pullrequests_container li.closed a + { + color: #555; + background: #eee; +} + /**** PERMS *****/ diff --git a/rhodecode/templates/admin/users/user_edit_my_account_pullrequests.html b/rhodecode/templates/admin/users/user_edit_my_account_pullrequests.html --- a/rhodecode/templates/admin/users/user_edit_my_account_pullrequests.html +++ b/rhodecode/templates/admin/users/user_edit_my_account_pullrequests.html @@ -7,16 +7,16 @@