Fix bootlint issues on git clone holder bar
This commit is contained in:
parent
5b3c823fc9
commit
f972a9e34c
3 changed files with 30 additions and 17 deletions
|
@ -21,6 +21,10 @@
|
||||||
@include border-radius($radius 0 0 $radius)
|
@include border-radius($radius 0 0 $radius)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@mixin border-radius-right($radius) {
|
||||||
|
@include border-radius(0 0 $radius $radius)
|
||||||
|
}
|
||||||
|
|
||||||
@mixin linear-gradient($from, $to) {
|
@mixin linear-gradient($from, $to) {
|
||||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from($from), to($to));
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from($from), to($to));
|
||||||
background-image: -webkit-linear-gradient($from, $to);
|
background-image: -webkit-linear-gradient($from, $to);
|
||||||
|
|
|
@ -102,6 +102,15 @@
|
||||||
|
|
||||||
.input-group-addon {
|
.input-group-addon {
|
||||||
background: #FAFAFA;
|
background: #FAFAFA;
|
||||||
|
|
||||||
|
&.git-protocols {
|
||||||
|
padding: 0;
|
||||||
|
border: none;
|
||||||
|
|
||||||
|
.input-group-btn:last-child > .btn {
|
||||||
|
@include border-radius-right(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,22 +1,22 @@
|
||||||
- project = project || @project
|
- project = project || @project
|
||||||
.git-clone-holder.input-group
|
.git-clone-holder.input-group
|
||||||
.input-group-btn
|
.input-group-addon.git-protocols
|
||||||
%button{ |
|
.input-group-btn
|
||||||
:type => 'button', |
|
%button{ |
|
||||||
class: "btn btn-sm #{ 'active' if default_clone_protocol == 'ssh' }#{ ' has_tooltip' if current_user && current_user.require_ssh_key? }", |
|
class: "btn btn-sm #{ 'active' if default_clone_protocol == 'ssh' }#{ ' has_tooltip' if current_user && current_user.require_ssh_key? }", |
|
||||||
:"data-clone" => project.ssh_url_to_repo, |
|
:"data-clone" => project.ssh_url_to_repo, |
|
||||||
:"data-title" => "Add an SSH key to your profile<br> to pull or push via SSH",
|
:"data-title" => "Add an SSH key to your profile<br> to pull or push via SSH",
|
||||||
:"data-html" => "true",
|
:"data-html" => "true",
|
||||||
:"data-container" => "body"}
|
:"data-container" => "body"}
|
||||||
SSH
|
SSH
|
||||||
%button{ |
|
.input-group-btn
|
||||||
:type => 'button', |
|
%button{ |
|
||||||
class: "btn btn-sm #{ 'active' if default_clone_protocol == 'http' }#{ ' has_tooltip' if current_user && current_user.require_password? }", |
|
class: "btn btn-sm #{ 'active' if default_clone_protocol == 'http' }#{ ' has_tooltip' if current_user && current_user.require_password? }", |
|
||||||
:"data-clone" => project.http_url_to_repo, |
|
:"data-clone" => project.http_url_to_repo, |
|
||||||
:"data-title" => "Set a password on your account<br> to pull or push via #{gitlab_config.protocol.upcase}",
|
:"data-title" => "Set a password on your account<br> to pull or push via #{gitlab_config.protocol.upcase}",
|
||||||
:"data-html" => "true",
|
:"data-html" => "true",
|
||||||
:"data-container" => "body"}
|
:"data-container" => "body"}
|
||||||
= gitlab_config.protocol.upcase
|
= gitlab_config.protocol.upcase
|
||||||
= text_field_tag :project_clone, default_url_to_repo(project), class: "js-select-on-focus form-control input-sm", readonly: true
|
= text_field_tag :project_clone, default_url_to_repo(project), class: "js-select-on-focus form-control input-sm", readonly: true
|
||||||
- if project.kind_of?(Project)
|
- if project.kind_of?(Project)
|
||||||
.input-group-addon
|
.input-group-addon
|
||||||
|
|
Loading…
Reference in a new issue