diff options
author | Ezekiel Kigbo <ekigbo@gitlab.com> | 2019-05-02 14:49:11 +0200 |
---|---|---|
committer | Ezekiel Kigbo <ekigbo@gitlab.com> | 2019-05-06 16:42:44 +0100 |
commit | cd27bead2e16586f9dcb1c9a467afce18f39fcb0 (patch) | |
tree | 613e689146f2b984f4ec86a5442887fd8ba74cd2 /app/views/dashboard | |
parent | 6accad69e214f44ac84f3ceac4159c712aa9af2e (diff) | |
download | gitlab-ce-cd27bead2e16586f9dcb1c9a467afce18f39fcb0.tar.gz |
Cleanup css classes and styles
Use class and id syntax for button attributes
Use feature flag variable and shorthand if expression
Use shorthand if expression
Use a classname instead of tag
Simplify common rules
Use size variable
Move flex grow and shrink to utility classes
Extract redused classes
Remove unecessary styles
Diffstat (limited to 'app/views/dashboard')
-rw-r--r-- | app/views/dashboard/_projects_head.html.haml | 2 | ||||
-rw-r--r-- | app/views/dashboard/projects/_nav.html.haml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/dashboard/_projects_head.html.haml b/app/views/dashboard/_projects_head.html.haml index 1d349572091..97a446dbeec 100644 --- a/app/views/dashboard/_projects_head.html.haml +++ b/app/views/dashboard/_projects_head.html.haml @@ -14,7 +14,7 @@ .top-area.scrolling-tabs-container.inner-page-scroll-tabs .fade-left= icon('angle-left') .fade-right= icon('angle-right') - %ul.nav-links.scrolling-tabs.mobile-separator.nav.nav-tabs{ class: feature_project_list_filter_bar ? "border-0" : "" } + %ul.nav-links.scrolling-tabs.mobile-separator.nav.nav-tabs{ class: ('border-0' if feature_project_list_filter_bar) } = nav_link(page: [dashboard_projects_path, root_path]) do = link_to dashboard_projects_path, class: 'shortcuts-activity', data: {placement: 'right'} do = _("Your projects") diff --git a/app/views/dashboard/projects/_nav.html.haml b/app/views/dashboard/projects/_nav.html.haml index fdab2bde095..f9b61bf1f3e 100644 --- a/app/views/dashboard/projects/_nav.html.haml +++ b/app/views/dashboard/projects/_nav.html.haml @@ -4,7 +4,7 @@ - is_explore_trending = project_tab_filter == :explore_trending - feature_project_list_filter_bar = Feature.enabled?(:project_list_filter_bar) -.nav-block{ class: Feature.enabled?(:project_list_filter_bar) ? "w-100" : "" } +.nav-block{ class: ("w-100" if feature_project_list_filter_bar) } - if feature_project_list_filter_bar .btn-group.button-filter-group.d-flex.m-0.p-0 - if project_tab_filter == :explore || is_explore_trending |