Make dropdown style on project page consistent
This commit is contained in:
parent
27d34789c9
commit
a7102fb790
4 changed files with 55 additions and 3 deletions
|
@ -10,14 +10,19 @@ import Cookies from 'js-cookie';
|
|||
const $projectCloneField = $('#project_clone');
|
||||
const $cloneBtnText = $('a.clone-dropdown-btn span');
|
||||
|
||||
const selectedCloneOption = $cloneBtnText.text().trim();
|
||||
if (selectedCloneOption.length > 0) {
|
||||
$(`a:contains('${selectedCloneOption}')`, $cloneOptions).addClass('is-active');
|
||||
}
|
||||
|
||||
$('a', $cloneOptions).on('click', (e) => {
|
||||
const $this = $(e.currentTarget);
|
||||
const url = $this.attr('href');
|
||||
|
||||
e.preventDefault();
|
||||
|
||||
$('.active', $cloneOptions).not($this).removeClass('active');
|
||||
$this.toggleClass('active');
|
||||
$('.is-active', $cloneOptions).not($this).removeClass('is-active');
|
||||
$this.toggleClass('is-active');
|
||||
$projectCloneField.val(url);
|
||||
$cloneBtnText.text($this.text());
|
||||
|
||||
|
|
|
@ -722,3 +722,48 @@
|
|||
@include set-invisible;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
// TODO: change global style and remove mixin
|
||||
@mixin new-style-dropdown {
|
||||
.dropdown-menu {
|
||||
li {
|
||||
padding: 0 1px;
|
||||
|
||||
&.dropdown-header {
|
||||
padding: 8px 16px;
|
||||
}
|
||||
|
||||
a {
|
||||
border-radius: 0;
|
||||
padding: 8px 16px;
|
||||
|
||||
&.is-focused,
|
||||
&:hover,
|
||||
&:active,
|
||||
&:focus {
|
||||
background-color: $gray-darker;
|
||||
}
|
||||
|
||||
&.is-active {
|
||||
font-weight: inherit;
|
||||
|
||||
&::before {
|
||||
top: 16px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.dropdown-menu-selectable {
|
||||
li {
|
||||
a {
|
||||
padding: 8px 40px;
|
||||
|
||||
&.is-active::before {
|
||||
left: 16px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -282,6 +282,8 @@
|
|||
}
|
||||
|
||||
.project-repo-buttons {
|
||||
@include new-style-dropdown;
|
||||
|
||||
.project-action-button .dropdown-menu {
|
||||
max-height: 250px;
|
||||
overflow-y: auto;
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
%span
|
||||
= default_clone_protocol.upcase
|
||||
= icon('caret-down')
|
||||
%ul.dropdown-menu.dropdown-menu-right.clone-options-dropdown
|
||||
%ul.dropdown-menu.dropdown-menu-selectable.dropdown-menu-right.clone-options-dropdown
|
||||
%li
|
||||
= ssh_clone_button(project)
|
||||
%li
|
||||
|
|
Loading…
Reference in a new issue