Commit 898748a3 authored by Jacques Erasmus's avatar Jacques Erasmus

Merge branch 'cngo-remove-iterations-page-specific-css' into 'master'

Remove iterations page specific CSS

See merge request gitlab-org/gitlab!55520
parents 736f756f 66f2c474
......@@ -193,7 +193,6 @@ module Gitlab
config.assets.precompile << "page_bundles/import.css"
config.assets.precompile << "page_bundles/incident_management_list.css"
config.assets.precompile << "page_bundles/issues_list.css"
config.assets.precompile << "page_bundles/iterations.css"
config.assets.precompile << "page_bundles/jira_connect.css"
config.assets.precompile << "page_bundles/jira_connect_users.css"
config.assets.precompile << "page_bundles/learn_gitlab.css"
......
/* TODO Remove this CSS page bundle once this CSS override has been added to GitLab UI */
.gl-alert .gl-label .gl-link {
text-decoration: none;
}
- add_to_breadcrumbs _("Iterations"), group_iterations_path(@group)
- breadcrumb_title params[:id]
- page_title _("Iterations")
- add_page_specific_style 'page_bundles/iterations'
- if Feature.enabled?(:group_iterations, @group, default_enabled: true)
.js-iteration{ data: { full_path: @group.full_path,
......
- add_to_breadcrumbs _("Iterations"), project_iterations_path(@project)
- breadcrumb_title params[:id]
- page_title _("Iteration")
- add_page_specific_style 'page_bundles/iterations'
.js-iteration{ data: { full_path: @project.full_path,
can_edit: can?(current_user, :admin_iteration, @project).to_s,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment