BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
08fded3f
Commit
08fded3f
authored
Nov 29, 2012
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor improvments to UI
parent
9df6f7bf
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
18 additions
and
5 deletions
+18
-5
common.scss
app/assets/stylesheets/common.scss
+4
-0
common.scss
app/assets/stylesheets/gitlab_bootstrap/common.scss
+10
-1
index.html.haml
app/views/dashboard/index.html.haml
+0
-1
_projects.html.haml
app/views/groups/_projects.html.haml
+2
-0
show.html.haml
app/views/groups/show.html.haml
+0
-1
project_resource.html.haml
app/views/layouts/project_resource.html.haml
+1
-0
empty.html.haml
app/views/projects/empty.html.haml
+0
-1
_no_ssh.html.haml
app/views/shared/_no_ssh.html.haml
+1
-1
No files found.
app/assets/stylesheets/common.scss
View file @
08fded3f
...
@@ -602,6 +602,10 @@ li.note {
...
@@ -602,6 +602,10 @@ li.note {
margin-bottom
:
10px
;
margin-bottom
:
10px
;
background
:
#FEE
;
background
:
#FEE
;
padding-left
:
20px
;
padding-left
:
20px
;
&
.centered
{
text-align
:
center
;
}
}
}
.oauth_select_holder
{
.oauth_select_holder
{
...
...
app/assets/stylesheets/gitlab_bootstrap/common.scss
View file @
08fded3f
...
@@ -34,6 +34,7 @@
...
@@ -34,6 +34,7 @@
/** PILLS & TABS**/
/** PILLS & TABS**/
.nav-pills
a
:hover
{
background-color
:
#888
;
}
.nav-pills
a
:hover
{
background-color
:
#888
;
}
.nav-pills
.active
a
{
background-color
:
$style_color
;
}
.nav-pills
.active
a
{
background-color
:
$style_color
;
}
.nav-pills
>
.active
>
a
>
i
[
class
^=
"icon-"
]
{
background
:
inherit
;
}
.nav-tabs
>
li
>
a
,
.nav-pills
>
li
>
a
{
color
:
$style_color
;
}
.nav-tabs
>
li
>
a
,
.nav-pills
>
li
>
a
{
color
:
$style_color
;
}
.nav.nav-tabs
{
.nav.nav-tabs
{
li
{
li
{
...
@@ -77,7 +78,15 @@ img.lil_av { padding-left: 4px; padding-right: 3px; }
...
@@ -77,7 +78,15 @@ img.lil_av { padding-left: 4px; padding-right: 3px; }
img
.small
{
width
:
80px
;
}
img
.small
{
width
:
80px
;
}
/** HELPERS **/
/** HELPERS **/
.nothing_here_message
{
text-align
:
center
;
padding
:
20px
;
color
:
#777
;
}
.nothing_here_message
{
text-align
:
center
;
padding
:
20px
;
color
:
#666
;
font-weight
:
normal
;
font-size
:
16px
;
line-height
:
36px
;
}
p
.slead
{
color
:
#456
;
font-size
:
16px
;
margin-bottom
:
12px
;
font-weight
:
200
;
line-height
:
24px
;
}
p
.slead
{
color
:
#456
;
font-size
:
16px
;
margin-bottom
:
12px
;
font-weight
:
200
;
line-height
:
24px
;
}
/** FORMS **/
/** FORMS **/
...
...
app/views/dashboard/index.html.haml
View file @
08fded3f
...
@@ -2,7 +2,6 @@
...
@@ -2,7 +2,6 @@
.projects
.projects
.activities.span8
.activities.span8
=
render
"events/event_last_push"
,
event:
@last_push
=
render
"events/event_last_push"
,
event:
@last_push
=
render
'shared/no_ssh'
.event_filter
.event_filter
=
event_filter_link
EventFilter
.
push
,
'Push events'
=
event_filter_link
EventFilter
.
push
,
'Push events'
...
...
app/views/groups/_projects.html.haml
View file @
08fded3f
...
@@ -9,6 +9,8 @@
...
@@ -9,6 +9,8 @@
%i
.icon-plus
%i
.icon-plus
New Project
New Project
%ul
.unstyled
%ul
.unstyled
-
if
projects
.
blank?
%p
.nothing_here_message
This groups has no projects yet
-
projects
.
each
do
|
project
|
-
projects
.
each
do
|
project
|
%li
.wll
%li
.wll
=
link_to
project_path
(
project
),
class:
dom_class
(
project
)
do
=
link_to
project_path
(
project
),
class:
dom_class
(
project
)
do
...
...
app/views/groups/show.html.haml
View file @
08fded3f
...
@@ -6,7 +6,6 @@
...
@@ -6,7 +6,6 @@
%span
.cgray
Events and projects are filtered in scope of group
%span
.cgray
Events and projects are filtered in scope of group
%hr
%hr
=
render
'shared/no_ssh'
-
if
@events
.
any?
-
if
@events
.
any?
.content_list
=
render
@events
.content_list
=
render
@events
-
else
-
else
...
...
app/views/layouts/project_resource.html.haml
View file @
08fded3f
...
@@ -4,6 +4,7 @@
...
@@ -4,6 +4,7 @@
%body
{
class:
"#{app_theme} project"
}
%body
{
class:
"#{app_theme} project"
}
=
render
"layouts/flash"
=
render
"layouts/flash"
=
render
"layouts/head_panel"
,
title:
@project
.
name
=
render
"layouts/head_panel"
,
title:
@project
.
name
=
render
'shared/no_ssh'
.container
.container
%ul
.main_menu
%ul
.main_menu
=
nav_link
(
html_options:
{
class:
"home
#{
project_tab_class
}
"
})
do
=
nav_link
(
html_options:
{
class:
"home
#{
project_tab_class
}
"
})
do
...
...
app/views/projects/empty.html.haml
View file @
08fded3f
=
render
'shared/no_ssh'
=
render
'clone_panel'
=
render
'clone_panel'
%div
.git-empty
%div
.git-empty
...
...
app/views/shared/_no_ssh.html.haml
View file @
08fded3f
-
if
current_user
.
require_ssh_key?
-
if
current_user
.
require_ssh_key?
%p
.error_message
%p
.error_message
.centered
You won't be able to pull or push project code via SSH until you
#{
link_to
'add an SSH key'
,
new_key_path
}
to your profile
You won't be able to pull or push project code via SSH until you
#{
link_to
'add an SSH key'
,
new_key_path
}
to your profile
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