Update bootstrap-sass gem
This commit is contained in:
parent
9470675b4e
commit
ee26dae63e
6 changed files with 20 additions and 16 deletions
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue