Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
df76fd16
Commit
df76fd16
authored
May 24, 2018
by
Annabel Dunstone Gray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix login tabs
parent
1d2b4144
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
26 additions
and
22 deletions
+26
-22
app/assets/stylesheets/bootstrap_migration.scss
app/assets/stylesheets/bootstrap_migration.scss
+4
-0
app/assets/stylesheets/framework/gitlab_theme.scss
app/assets/stylesheets/framework/gitlab_theme.scss
+2
-2
app/assets/stylesheets/framework/secondary_navigation_elements.scss
.../stylesheets/framework/secondary_navigation_elements.scss
+6
-6
app/views/devise/shared/_tab_single.html.haml
app/views/devise/shared/_tab_single.html.haml
+2
-2
app/views/devise/shared/_tabs_ldap.html.haml
app/views/devise/shared/_tabs_ldap.html.haml
+8
-8
app/views/devise/shared/_tabs_normal.html.haml
app/views/devise/shared/_tabs_normal.html.haml
+4
-4
No files found.
app/assets/stylesheets/bootstrap_migration.scss
View file @
df76fd16
...
...
@@ -138,3 +138,7 @@ table {
@extend
.border-0
;
}
}
.nav-tabs
.nav-link
{
border
:
0
;
}
app/assets/stylesheets/framework/gitlab_theme.scss
View file @
df76fd16
...
...
@@ -169,8 +169,8 @@
color
:
$color-800
;
}
.nav-links
li
.active
a
{
border-bottom
-color
:
$color-500
;
.nav-links
li
a
.active
{
border-bottom
:
2px
solid
$color-500
;
.badge.badge-pill
{
font-weight
:
$gl-font-weight-bold
;
...
...
app/assets/stylesheets/framework/secondary_navigation_elements.scss
View file @
df76fd16
...
...
@@ -31,9 +31,8 @@
color
:
$black
;
}
}
}
&
.active
a
{
&
.active
{
color
:
$black
;
font-weight
:
$gl-font-weight-bold
;
...
...
@@ -42,6 +41,7 @@
}
}
}
}
}
.top-area
{
...
...
app/views/devise/shared/_tab_single.html.haml
View file @
df76fd16
%ul
.nav-links.new-session-tabs.single-tab.nav-tabs.nav
%li
.
active
%a
=
tab_title
%li
.
nav-item
%a
.nav-link.active
=
tab_title
app/views/devise/shared/_tabs_ldap.html.haml
View file @
df76fd16
%ul
.nav-links.new-session-tabs.nav-tabs.nav
{
class:
(
'custom-provider-tabs'
if
form_based_providers
.
any?
)
}
-
if
crowd_enabled?
%li
.
active
=
link_to
"Crowd"
,
"#crowd"
,
'data-toggle'
=>
'tab'
%li
.
nav-item
=
link_to
"Crowd"
,
"#crowd"
,
class:
'nav-link active'
,
'data-toggle'
=>
'tab'
-
@ldap_servers
.
each_with_index
do
|
server
,
i
|
%li
{
class:
active_when
(
i
.
zero?
&&
!
crowd_enabled?
)
}
=
link_to
server
[
'label'
],
"#
#{
server
[
'provider_name'
]
}
"
,
'data-toggle'
=>
'tab'
%li
.nav-item
{
class:
active_when
(
i
.
zero?
&&
!
crowd_enabled?
)
}
=
link_to
server
[
'label'
],
"#
#{
server
[
'provider_name'
]
}
"
,
class:
'nav-link'
,
'data-toggle'
=>
'tab'
-
if
password_authentication_enabled_for_web?
%li
=
link_to
'Standard'
,
'#login-pane'
,
'data-toggle'
=>
'tab'
%li
.nav-item
=
link_to
'Standard'
,
'#login-pane'
,
class:
'nav-link'
,
'data-toggle'
=>
'tab'
-
if
allow_signup?
%li
=
link_to
'Register'
,
'#register-pane'
,
'data-toggle'
=>
'tab'
%li
.nav-item
=
link_to
'Register'
,
'#register-pane'
,
class:
'nav-link'
,
'data-toggle'
=>
'tab'
app/views/devise/shared/_tabs_normal.html.haml
View file @
df76fd16
%ul
.nav-links.new-session-tabs.nav-tabs.nav
{
role:
'tablist'
}
%li
.
active
{
role:
'presentation'
}
%a
{
href:
'#login-pane'
,
data:
{
toggle:
'tab'
},
role:
'tab'
}
Sign in
%li
.
nav-item
{
role:
'presentation'
}
%a
.nav-link.active
{
href:
'#login-pane'
,
data:
{
toggle:
'tab'
},
role:
'tab'
}
Sign in
-
if
allow_signup?
%li
{
role:
'presentation'
}
%a
{
href:
'#register-pane'
,
data:
{
toggle:
'tab'
},
role:
'tab'
}
Register
%li
.nav-item
{
role:
'presentation'
}
%a
.nav-link
{
href:
'#register-pane'
,
data:
{
toggle:
'tab'
},
role:
'tab'
}
Register
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment