Merge branch '47146-new-project-active-tab' into 'master'
Resolve "Active tab for new project doesn't change properly" Closes #47146 See merge request gitlab-org/gitlab-ce!19408
This commit is contained in:
commit
064218b543
2 changed files with 9 additions and 7 deletions
|
@ -183,7 +183,9 @@ table {
|
|||
|
||||
.nav-tabs {
|
||||
.nav-link {
|
||||
border: 0;
|
||||
border-top: 0;
|
||||
border-left: 0;
|
||||
border-right: 0;
|
||||
}
|
||||
|
||||
.nav-item {
|
||||
|
|
|
@ -29,16 +29,16 @@
|
|||
|
||||
.col-lg-9.js-toggle-container
|
||||
%ul.nav.nav-tabs.nav-links.gitlab-tabs{ role: 'tablist' }
|
||||
%li{ class: active_when(active_tab == 'blank'), role: 'presentation' }
|
||||
%a{ href: '#blank-project-pane', id: 'blank-project-tab', data: { toggle: 'tab' }, role: 'tab' }
|
||||
%li.nav-item{ role: 'presentation' }
|
||||
%a.nav-link.active{ href: '#blank-project-pane', id: 'blank-project-tab', data: { toggle: 'tab' }, role: 'tab' }
|
||||
%span.d-none.d-sm-block Blank project
|
||||
%span.d-block.d-sm-none Blank
|
||||
%li{ class: active_when(active_tab == 'template'), role: 'presentation' }
|
||||
%a{ href: '#create-from-template-pane', id: 'create-from-template-tab', data: { toggle: 'tab' }, role: 'tab' }
|
||||
%li.nav-item{ role: 'presentation' }
|
||||
%a.nav-link{ href: '#create-from-template-pane', id: 'create-from-template-tab', data: { toggle: 'tab' }, role: 'tab' }
|
||||
%span.d-none.d-sm-block Create from template
|
||||
%span.d-block.d-sm-none Template
|
||||
%li{ class: active_when(active_tab == 'import'), role: 'presentation' }
|
||||
%a{ href: '#import-project-pane', id: 'import-project-tab', data: { toggle: 'tab' }, role: 'tab' }
|
||||
%li.nav-item{ role: 'presentation' }
|
||||
%a.nav-link{ href: '#import-project-pane', id: 'import-project-tab', data: { toggle: 'tab' }, role: 'tab' }
|
||||
%span.d-none.d-sm-block Import project
|
||||
%span.d-block.d-sm-none Import
|
||||
|
||||
|
|
Loading…
Reference in a new issue