diff --git a/app/views/features/_manage_community_fields.rhtml b/app/views/features/_manage_community_fields.rhtml index 491dffe..362d1de 100644 --- a/app/views/features/_manage_community_fields.rhtml +++ b/app/views/features/_manage_community_fields.rhtml @@ -10,7 +10,7 @@ <%= _('Display on creation?') %> - + <%= _("Check/Uncheck All")%> diff --git a/app/views/features/_manage_enterprise_fields.rhtml b/app/views/features/_manage_enterprise_fields.rhtml index 0f3195f..a312c63 100644 --- a/app/views/features/_manage_enterprise_fields.rhtml +++ b/app/views/features/_manage_enterprise_fields.rhtml @@ -10,7 +10,7 @@ <%= _('Display on registration?') %> - + <%= _("Check/Uncheck All")%> diff --git a/app/views/features/_manage_person_fields.rhtml b/app/views/features/_manage_person_fields.rhtml index 2f5e31d..3909a56 100644 --- a/app/views/features/_manage_person_fields.rhtml +++ b/app/views/features/_manage_person_fields.rhtml @@ -10,7 +10,7 @@ <%= _('Display on signup?') %> - + <%= _("Check/Uncheck All")%> diff --git a/features/manage_fields.feature b/features/manage_fields.feature index 7d69546..538a639 100644 --- a/features/manage_fields.feature +++ b/features/manage_fields.feature @@ -12,7 +12,6 @@ Feature: check all manage fields And the following community | identifier | name | | mycommunity | My Community | - And "Maria Silva" is admin of "My Community" And I am logged in as admin And I go to /admin/features/manage_fields @@ -20,22 +19,24 @@ Feature: check all manage fields Scenario: check all active person fields Given I check "person_active" And I press "save_person_fields" - And I follow "Control panel" - When I follow "Edit Profile" + When I go to admin_user's control panel + And I follow "Edit Profile" Then I should see "Custom area of study" @selenium Scenario: check all active enterprise fields Given I check "enterprise_active" And I press "save_enterprise_fields" - When I go to /myprofile/paper-street/profile_editor/edit + When I go to paper-street's control panel + And I follow "Enterprise Info and settings" Then I should see "Historic and current context" @selenium Scenario: check all active community fields Given I check "community_active" And I press "save_community_fields" - When I go to /myprofile/mycommunity/profile_editor/edit + When I go to mycommunity's control panel + And I follow "Community Info and settings" Then I should see "Economic activity" @selenium @@ -54,7 +55,8 @@ Feature: check all manage fields And I press "save_community_fields" And I uncheck "community_active" And I press "save_community_fields" - When I go to /myprofile/mycommunity/profile_editor/edit + When I go to mycommunity's control panel + And I follow "Community Info and settings" Then I should not see "Economic activity" @selenium @@ -63,5 +65,6 @@ Feature: check all manage fields And I press "save_enterprise_fields" And I uncheck "enterprise_active" And I press "save_enterprise_fields" - When I go to /myprofile/paper-street/profile_editor/edit - Then I should not see "Historic and current context" \ No newline at end of file + When I go to paper-street's control panel + And I follow "Enterprise Info and settings" + Then I should not see "Historic and current context" diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index e5bfffd..ee8e813 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -6488,3 +6488,15 @@ ul.article-versions li { font-size: 13px; padding: 3px 0px; } + +/* * * Admin manage fields * * */ + +.controller-features .manage-fields-batch-actions, +.controller-features .manage-fields-batch-actions:hover { + border-bottom:solid 2px #000; + background-color: #EEE; +} + +.controller-features .manage-fields-batch-actions td { + font-style: italic; +} -- libgit2 0.21.2