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
Kazuhiko Shiozaki
gitlab-ce
Commits
6bf65697
Commit
6bf65697
authored
Nov 21, 2012
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use fieldset. Improved profile
parent
cc539151
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
66 additions
and
73 deletions
+66
-73
app/assets/stylesheets/common.scss
app/assets/stylesheets/common.scss
+0
-12
app/assets/stylesheets/sections/header.scss
app/assets/stylesheets/sections/header.scss
+9
-14
app/assets/stylesheets/sections/nav.scss
app/assets/stylesheets/sections/nav.scss
+1
-1
app/assets/stylesheets/sections/profile.scss
app/assets/stylesheets/sections/profile.scss
+14
-0
app/views/keys/index.html.haml
app/views/keys/index.html.haml
+1
-1
app/views/profile/account.html.haml
app/views/profile/account.html.haml
+5
-8
app/views/profile/design.html.haml
app/views/profile/design.html.haml
+15
-16
app/views/profile/show.html.haml
app/views/profile/show.html.haml
+21
-21
No files found.
app/assets/stylesheets/common.scss
View file @
6bf65697
...
...
@@ -20,18 +20,6 @@ body {
float
:right
;
}
.profile_avatar_holder
{
float
:left
;
width
:
60px
;
height
:
60px
;
margin-right
:
20px
;
img
{
width
:
60px
;
height
:
60px
;
background
:
#eee
;
}
}
.visible_link
,
.author_link
{
...
...
app/assets/stylesheets/sections/header.scss
View file @
6bf65697
...
...
@@ -156,12 +156,7 @@ header {
display
:
block
;
}
}
.account-links
{
background
:
#79C3E0
;
display
:
none
;
border-radius
:
5px
;
width
:
100px
;
margin-top
:
0
;
float
:
right
;
box-shadow
:
0
1px
1px
rgba
(
0
,
0
,
0
,
0
.2
);
position
:
relative
;
&
:before
{
...
...
@@ -171,33 +166,33 @@ header {
position
:
absolute
;
border
:
5px
solid
transparent
;
border-color
:
rgba
(
255
,
255
,
255
,
0
);
border-bottom-color
:
#
333
;
border-bottom-color
:
#
555
;
text-indent
:
-9999px
;
top
:
-10px
;
line-height
:
0
;
right
:
10px
;
z-index
:
10
;
}
background
:
#
333
;
background
:
#
555
;
display
:
none
;
z-index
:
100000
;
@include
border-radius
(
4px
);
width
:
100px
;
position
:
absolute
;
right
:
10
px
;
top
:
42
px
;
right
:
5
px
;
top
:
38
px
;
margin-top
:
0
;
float
:
right
;
box-shadow
:
0
1px
1px
rgba
(
0
,
0
,
0
,
0
.2
);
a
{
color
:
#
EEE
;
padding
:
6
px
10px
;
color
:
#
fff
;
padding
:
7
px
10px
;
display
:
block
;
text-shadow
:
none
;
border-bottom
:
1px
solid
#
555
;
border-bottom
:
1px
solid
#
666
;
font-size
:
12px
;
&
:hover
{
color
:
#
eee
;
background
:
#
444
;
color
:
#
fff
;
background
:
#
333
;
}
}
}
...
...
app/assets/stylesheets/sections/nav.scss
View file @
6bf65697
...
...
@@ -6,7 +6,7 @@ ul.main_menu {
border-radius
:
4px
;
margin
:
auto
;
margin
:
30px
0
;
border
:
1px
solid
#
AAA
;
border
:
1px
solid
#
BBB
;
height
:
37px
;
@include
bg-gray-gradient
;
position
:relative
;
...
...
app/assets/stylesheets/sections/profile.scss
View file @
6bf65697
...
...
@@ -6,3 +6,17 @@
}
}
}
.profile_avatar_holder
{
float
:left
;
width
:
60px
;
height
:
60px
;
margin-right
:
20px
;
img
{
width
:
60px
;
height
:
60px
;
background
:
#fff
;
padding
:
1px
;
border
:
1px
solid
#ddd
;
}
}
app/views/keys/index.html.haml
View file @
6bf65697
...
...
@@ -18,5 +18,5 @@
-
if
@keys
.
blank?
%tr
%td
{
colspan:
3
}
%
h3
.nothing_here_message
There are no SSH keys with access to your account.
%
p
.nothing_here_message
There are no SSH keys with access to your account.
app/views/profile/account.html.haml
View file @
6bf65697
-
if
Gitlab
.
config
.
omniauth_enabled?
%fieldset
%legend
%h3
.page_title
Social Accounts
%legend
Social Accounts
.oauth_select_holder
%p
.hint
Tip: Click on icon to activate sigin with one of the following services
-
User
.
omniauth_providers
.
each
do
|
provider
|
...
...
@@ -11,10 +10,9 @@
%fieldset
%legend
%h3
.page_title
Private token
%span
.cred.right
keep it secret!
Private token
%span
.cred.right
keep it secret!
.padded
=
form_for
@user
,
url:
profile_reset_private_token_path
,
method: :put
do
|
f
|
.data
...
...
@@ -31,8 +29,7 @@
=
f
.
submit
'Generate'
,
class:
"btn success btn-build-token"
%fieldset
%legend
%h3
.page_title
Password
%legend
Password
=
form_for
@user
,
url:
profile_password_path
,
method: :put
do
|
f
|
.padded
%p
.slead
After successful password update you will be redirected to login page where you should login with new password
...
...
app/views/profile/design.html.haml
View file @
6bf65697
=
form_for
@user
,
url:
profile_update_path
,
remote:
true
,
method: :put
do
|
f
|
%div
%h3
.page_title
Application theme
%br
%fieldset
%legend
Application theme
.themes_opts
=
label_tag
do
.prev
...
...
@@ -23,19 +22,19 @@
%br
.clearfix
%
h3
.page_title
Code review
%br
.themes_opts
=
label_tag
do
.prev
=
image_tag
"white.png"
=
f
.
radio_button
:dark_scheme
,
false
White code preview
=
label_tag
do
.prev
=
image_tag
"dark.png"
=
f
.
radio_button
:dark_scheme
,
true
Dark code preview
%
fieldset
%legend
Code review
.themes_opts
=
label_tag
do
.prev
=
image_tag
"white.png"
=
f
.
radio_button
:dark_scheme
,
false
White code preview
=
label_tag
do
.prev
=
image_tag
"dark.png"
=
f
.
radio_button
:dark_scheme
,
true
Dark code preview
:javascript
$
(
function
(){
...
...
app/views/profile/show.html.haml
View file @
6bf65697
.profile_avatar_holder
=
image_tag
gravatar_icon
(
@user
.
email
,
90
)
,
class:
"styled_image"
=
image_tag
gravatar_icon
(
@user
.
email
,
90
)
%h3
.page_title
=
@user
.
name
%br
...
...
@@ -19,21 +19,23 @@
.control-group
=
f
.
label
:name
,
class:
"control-label"
.controls
=
f
.
text_field
:name
,
class:
"input-xlarge"
=
f
.
text_field
:name
,
class:
"input-xlarge"
,
required:
true
%span
.help-block
Enter your name, so people you know can recognize you.
.control-group
=
f
.
label
:email
,
class:
"control-label"
.controls
=
f
.
text_field
:email
,
class:
"input-xlarge"
=
f
.
text_field
:email
,
class:
"input-xlarge"
,
required:
true
%span
.help-block
We also use email for avatar detection.
.span5.right
%
div
.tips
%
h6
Tips:
%
fieldset
.tips
%
legend
Tips:
%ul
%li
%p
You can change your password on Account page
-
unless
Gitlab
.
config
.
disable_gravatar?
%li
%p
.hint
You can change your avatar at
#{
link_to
"gravatar.com"
,
"http://gravatar.com"
}
%p
You can change your avatar at
#{
link_to
"gravatar.com"
,
"http://gravatar.com"
}
-
if
Gitlab
.
config
.
omniauth_enabled?
&&
@user
.
provider?
%li
...
...
@@ -41,7 +43,6 @@
You can login through
#{
@user
.
provider
.
titleize
}
!
=
link_to
"click here to change"
,
profile_account_path
%hr
.row
.span7
.control-group
...
...
@@ -59,23 +60,22 @@
=
f
.
text_area
:bio
,
rows:
6
,
class:
"input-xlarge"
,
maxlength:
250
%span
.help-block
Tell us about yourself in fewer than 250 characters.
.span5.right
.ui-box.white
.ui-box-body
%h4
Personal projects:
%s
mall
.righ
t
%span
=
current_user
.
my_own_projects
.
count
of
%span
=
current_user
.
projects_limit
%fieldset
%legend
Personal projects:
%small
.right
%s
pan
=
current_user
.
my_own_projects
.
coun
t
of
%span
=
current_user
.
projects_limit
.padded
.progress
.bar
{
style:
"width: #{current_user.projects_limit_percent}%;"
}
.ui-box.white
.ui-box-body
%h4
SSH public keys:
%strong
.right
=
link_to
current_user
.
keys
.
count
,
keys_path
%fieldset
%legend
SSH public keys:
%strong
.right
=
link_to
current_user
.
keys
.
count
,
keys_path
.padded
=
link_to
"Add Public Key"
,
new_key_path
,
class:
"btn small"
.form-actions
...
...
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