Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_top_bar.html.haml « nav « layouts « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 73b253e18bd821832b73fde5249dd2ce4be36d09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- if show_super_sidebar?
  - top_bar_class = 'top-bar-fixed container-fluid'
  - top_bar_container_class = nil
- else
  - top_bar_class = [@no_top_bar_container ? 'container-fluid' : container_class, @content_class]
  - top_bar_container_class = 'gl-border-b'

%div{ class: top_bar_class, data: { testid: 'top-bar' } }
  .top-bar-container.gl-display-flex.gl-align-items-center.gl-gap-2{ :class => top_bar_container_class }
    - if show_super_sidebar?
      = render Pajamas::ButtonComponent.new(icon: 'sidebar', category: :tertiary, button_options: { class: 'js-super-sidebar-toggle-expand super-sidebar-toggle gl-ml-n3', title: _('Expand sidebar'), aria: { controls: 'super-sidebar', expanded: 'false', label: _('Navigation sidebar') } })
    - elsif defined?(@left_sidebar)
      = render Pajamas::ButtonComponent.new(icon: 'sidebar', category: :tertiary, button_options: { class: 'toggle-mobile-nav gl-ml-n3', data: { testid: 'toggle_mobile_nav_button' }, aria: { label: _('Open sidebar') } })
    = render "layouts/nav/breadcrumbs/breadcrumbs"
    = render "layouts/nav/ask_duo_button"