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
Tatuya Kamada
gitlab-ce
Commits
ee26dae6
Commit
ee26dae6
authored
Feb 19, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update bootstrap-sass gem
parent
9470675b
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
20 additions
and
16 deletions
+20
-16
Gemfile.lock
Gemfile.lock
+6
-2
app/assets/stylesheets/sections/merge_requests.scss
app/assets/stylesheets/sections/merge_requests.scss
+2
-0
app/views/admin/projects/index.html.haml
app/views/admin/projects/index.html.haml
+6
-8
app/views/devise/sessions/_new_base.html.haml
app/views/devise/sessions/_new_base.html.haml
+4
-4
app/views/projects/_visibility_level.html.haml
app/views/projects/_visibility_level.html.haml
+1
-1
app/views/projects/merge_requests/show/_mr_accept.html.haml
app/views/projects/merge_requests/show/_mr_accept.html.haml
+1
-1
No files found.
Gemfile.lock
View file @
ee26dae6
...
...
@@ -47,6 +47,9 @@ GEM
astrolabe (1.3.0)
parser (>= 2.2.0.pre.3, < 3.0)
attr_required (1.0.0)
autoprefixer-rails (5.1.6)
execjs
json
awesome_print (1.2.0)
axiom-types (0.0.5)
descendants_tracker (~> 0.0.1)
...
...
@@ -57,8 +60,9 @@ GEM
erubis (>= 2.6.6)
binding_of_caller (0.7.2)
debug_inspector (>= 0.0.1)
bootstrap-sass (3.0.3.0)
sass (~> 3.2)
bootstrap-sass (3.3.3)
autoprefixer-rails (>= 5.0.0.1)
sass (>= 3.2.19)
browser (0.7.2)
builder (3.2.2)
cal-heatmap-rails (0.0.1)
...
...
app/assets/stylesheets/sections/merge_requests.scss
View file @
ee26dae6
...
...
@@ -24,6 +24,7 @@
.accept-control
{
display
:
inline-block
;
margin
:
0
;
margin-left
:
20px
;
padding
:
10px
0
;
line-height
:
20px
;
...
...
@@ -31,6 +32,7 @@
.remove_source_checkbox
{
margin
:
0
;
font-weight
:
bold
;
}
}
}
...
...
app/views/admin/projects/index.html.haml
View file @
ee26dae6
...
...
@@ -13,15 +13,13 @@
.form-group
%strong
Activity
.checkbox
=
label_tag
:with_push
,
'Not empty'
=
check_box_tag
:with_push
,
1
,
params
[
:with_push
]
%span
.light
Projects with push events
=
label_tag
:with_push
do
=
check_box_tag
:with_push
,
1
,
params
[
:with_push
]
%span
Projects with push events
.checkbox
=
label_tag
:abandoned
,
'Abandoned'
=
check_box_tag
:abandoned
,
1
,
params
[
:abandoned
]
%span
.light
No activity over 6 month
=
label_tag
:abandoned
do
=
check_box_tag
:abandoned
,
1
,
params
[
:abandoned
]
%span
No activity over 6 month
%fieldset
%strong
Visibility level:
...
...
app/views/devise/sessions/_new_base.html.haml
View file @
ee26dae6
...
...
@@ -2,11 +2,11 @@
=
f
.
text_field
:login
,
class:
"form-control top"
,
placeholder:
"Username or Email"
,
autofocus:
"autofocus"
=
f
.
password_field
:password
,
class:
"form-control bottom"
,
placeholder:
"Password"
-
if
devise_mapping
.
rememberable?
.remember-me
%label
.checkbox.remember_me
{
for:
"user_remember_me"
}
.remember-me
.checkbox
%label
{
for:
"user_remember_me"
}
=
f
.
check_box
:remember_me
%span
Remember me
.pull-right
=
link_to
"Forgot your password?"
,
new_password_path
(
resource_name
)
.pull-right
=
link_to
"Forgot your password?"
,
new_password_path
(
resource_name
)
%div
=
f
.
submit
"Sign in"
,
class:
"btn btn-save"
app/views/projects/_visibility_level.html.haml
View file @
ee26dae6
...
...
@@ -7,8 +7,8 @@
-
Gitlab
::
VisibilityLevel
.
values
.
each
do
|
level
|
.radio
-
restricted
=
restricted_visibility_levels
.
include?
(
level
)
=
f
.
radio_button
:visibility_level
,
level
,
checked:
(
visibility_level
==
level
),
disabled:
restricted
=
label
:project_visibility_level
,
level
do
=
f
.
radio_button
:visibility_level
,
level
,
checked:
(
visibility_level
==
level
),
disabled:
restricted
=
visibility_level_icon
(
level
)
.option-title
=
visibility_level_label
(
level
)
...
...
app/views/projects/merge_requests/show/_mr_accept.html.haml
View file @
ee26dae6
...
...
@@ -17,7 +17,7 @@
.accept-action
=
f
.
submit
"Accept Merge Request"
,
class:
"btn btn-create accept_merge_request"
-
if
can_remove_branch?
(
@merge_request
.
source_project
,
@merge_request
.
source_branch
)
&&
!
@merge_request
.
for_fork?
.accept-control
.accept-control
.checkbox
=
label_tag
:should_remove_source_branch
,
class:
"remove_source_checkbox"
do
=
check_box_tag
:should_remove_source_branch
Remove source-branch
...
...
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