Add green outline to New Branch button (!5447)
This commit is contained in:
parent
46a17ffd5a
commit
f735a4b2d2
3 changed files with 11 additions and 1 deletions
|
@ -3,6 +3,7 @@ Please view this file on the master branch, on stable branches it's out of date.
|
|||
v 8.11.0 (unreleased)
|
||||
- Fix of 'Commits being passed to custom hooks are already reachable when using the UI'
|
||||
- Limit git rev-list output count to one in forced push check
|
||||
- Add green outline to New Branch button !5447 (winniehell)
|
||||
- Retrieve rendered HTML from cache in one request
|
||||
- Load project invited groups and members eagerly in ProjectTeam#fetch_members
|
||||
|
||||
|
|
|
@ -135,6 +135,15 @@
|
|||
@include btn-green;
|
||||
}
|
||||
|
||||
&.btn-inverted {
|
||||
&.btn-success,
|
||||
&.btn-new,
|
||||
&.btn-create,
|
||||
&.btn-save {
|
||||
@include btn-outline($white-light, $green-normal, $green-normal, $green-light, $white-light, $green-light);
|
||||
}
|
||||
}
|
||||
|
||||
&.btn-gray {
|
||||
@include btn-gray;
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
.pull-right
|
||||
#new-branch{'data-path' => can_create_branch_namespace_project_issue_path(@project.namespace, @project, @issue)}
|
||||
= link_to namespace_project_branches_path(@project.namespace, @project, branch_name: @issue.to_branch_name, issue_iid: @issue.iid),
|
||||
method: :post, class: 'btn has-tooltip', title: @issue.to_branch_name, disabled: 'disabled' do
|
||||
method: :post, class: 'btn btn-new btn-inverted has-tooltip', title: @issue.to_branch_name, disabled: 'disabled' do
|
||||
.checking
|
||||
= icon('spinner spin')
|
||||
Checking branches
|
||||
|
|
Loading…
Reference in a new issue