Commit 772490c8 authored by Dennis Tang's avatar Dennis Tang

fix tabs for bootstrap 4

parent 82430b2d
...@@ -3,19 +3,18 @@ ...@@ -3,19 +3,18 @@
- active_tab = local_assigns.fetch(:active_tab, 'new') - active_tab = local_assigns.fetch(:active_tab, 'new')
= javascript_include_tag 'https://apis.google.com/js/api.js' = javascript_include_tag 'https://apis.google.com/js/api.js'
= render_gcp_signup_offer = render_gcp_signup_offer
.row.prepend-top-default .row.prepend-top-default
.col-sm-3 .col-sm-3
= render 'sidebar' = render 'sidebar'
.col-lg-9.js-toggle-container .col-lg-9.js-toggle-container
%ul.nav-links.gitlab-tabs{ role: 'tablist' } %ul.nav-links.nav-tabs.gitlab-tabs.nav{ role: 'tablist' }
%li{ class: active_when(active_tab == 'new'), role: 'presentation' } %li.nav-item{ role: 'presentation' }
%a{ href: '#create-new-cluster-pane', id: 'create-new-cluster-tab', data: { toggle: 'tab' }, role: 'tab' } %a.nav-link{ href: '#create-new-cluster-pane', id: 'create-new-cluster-tab', class: active_when(active_tab == 'new'), data: { toggle: 'tab' }, role: 'tab' }
%span Create new Cluster on GKE %span Create new Cluster on GKE
%li{ class: active_when(active_tab == 'existing'), role: 'presentation' } %li.nav-item{ role: 'presentation' }
%a{ href: '#add-existing-cluster-pane', id: 'add-existing-cluster-tab', data: { toggle: 'tab' }, role: 'tab' } %a.nav-link{ href: '#add-existing-cluster-pane', id: 'add-existing-cluster-tab', class: active_when(active_tab == 'existing'), data: { toggle: 'tab' }, role: 'tab' }
%span Add existing cluster %span Add existing cluster
.tab-content.gitlab-tab-content .tab-content.gitlab-tab-content
......
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