Commit 4b1fd05a authored by Jacob Schatz's avatar Jacob Schatz

fixes conflicts with frontend code

parent c922092b
...@@ -101,83 +101,74 @@ ...@@ -101,83 +101,74 @@
margin-bottom: 0px; margin-bottom: 0px;
} }
<<<<<<< HEAD .count-buttons {
display: block;
margin-bottom: 12px;
}
.btn { .btn {
@include btn-gray; @include btn-gray;
text-transform: none;
}
.count-with-arrow {
display: inline-block;
position: relative;
margin-left: 4px;
.count { .arrow {
display: inline-block; &:before {
======= content: '';
.count-buttons { display: inline-block;
display: block; position: absolute;
margin-bottom: 12px; width: 0;
} height: 0;
border-color: transparent;
border-style: solid;
top: 50%;
left: 0;
margin-top: -6px;
border-width: 7px 5px 7px 0;
border-right-color: #dce0e5;
}
.btn { &:after {
@include btn-gray; content: '';
text-transform: none; position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
top: 50%;
left: 1px;
margin-top: -9px;
border-width: 10px 7px 10px 0;
border-right-color: #FFF;
}
} }
.count-with-arrow { .count {
@include btn-gray;
display: inline-block; display: inline-block;
position: relative; background: white;
margin-left: 4px; border-radius: 2px;
border-width: 1px;
.arrow { border-style: solid;
&:before { font-size: 13px;
content: ''; font-weight: 600;
display: inline-block; line-height: 20px;
position: absolute; padding: 11px 16px;
width: 0; letter-spacing: .4px;
height: 0; padding: 10px;
border-color: transparent; text-align: center;
border-style: solid; vertical-align: middle;
top: 50%; touch-action: manipulation;
left: 0; cursor: pointer;
margin-top: -6px; background-image: none;
border-width: 7px 5px 7px 0; white-space: nowrap;
border-right-color: #dce0e5; margin: 0 11px 0px 4px;
}
&:hover {
&:after { background: #FFF;
content: '';
position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
top: 50%;
left: 1px;
margin-top: -9px;
border-width: 10px 7px 10px 0;
border-right-color: #FFF;
}
}
.count {
@include btn-gray;
display: inline-block;
background: white;
border-radius: 2px;
border-width: 1px;
border-style: solid;
font-size: 13px;
font-weight: 600;
line-height: 20px;
padding: 11px 16px;
letter-spacing: .4px;
padding: 10px;
text-align: center;
vertical-align: middle;
touch-action: manipulation;
cursor: pointer;
background-image: none;
white-space: nowrap;
margin: 0 11px 0px 4px;
&:hover {
background: #FFF;
}
} }
>>>>>>> origin/master
} }
} }
} }
......
- project = project || @project - project = project || @project
<<<<<<< HEAD
.git-clone-holder.input-group
.input-group-addon.git-protocols
.input-group-btn
= ssh_clone_button(project)
.input-group-btn
= http_clone_button(project)
- if alternative_kerberos_url?
.input-group-btn
= kerberos_clone_button(project)
=======
.git-clone-holder .git-clone-holder
.btn-group.clone-options .btn-group.clone-options
...@@ -24,8 +13,11 @@ ...@@ -24,8 +13,11 @@
%li %li
%a#http-selector{href: @project.http_url_to_repo} %a#http-selector{href: @project.http_url_to_repo}
HTTPS HTTPS
- if alternative_kerberos_url?
%li
%a#kerberos-btn{href: @project.kerberos_url_to_repo}
KRB5
>>>>>>> origin/master
= text_field_tag :project_clone, default_url_to_repo(project), class: "js-select-on-focus form-control", readonly: true = text_field_tag :project_clone, default_url_to_repo(project), class: "js-select-on-focus form-control", readonly: true
.input-group-btn .input-group-btn
= clipboard_button(clipboard_target: '#project_clone') = clipboard_button(clipboard_target: '#project_clone')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment