Commit efb501ec authored by Oswaldo Ferreira's avatar Oswaldo Ferreira

Merge branch '2518-saved-configuration-for-issue-board' of...

Merge branch '2518-saved-configuration-for-issue-board' of https://gitlab.com/gitlab-org/gitlab-ee into 2518-saved-configuration-for-issue-board
parents 1ca881ab 473da128
......@@ -103,6 +103,8 @@ $(() => {
if (labelIndex === -1) {
filterPath.push(param);
}
this.cantEdit.push('label');
});
Store.filter.path = filterPath.join('&');
......
......@@ -41,7 +41,7 @@ export default {
return this.board.milestone ? this.board.milestone.id : '';
},
milestoneTitleClass() {
return this.milestoneTitle === 'ANY_MILESTONE' ? 'bold' : 'text-secondary';
return this.milestoneTitle === 'ANY_MILESTONE' ? 'text-secondary': 'bold';
},
selected() {
return this.board.milestone ? this.board.milestone.name : '';
......
......@@ -291,10 +291,6 @@
}
}
.dropdown-menu-wide {
width: 100%;
}
.droplab-dropdown {
.dropdown-toggle > i {
pointer-events: none;
......
......@@ -393,5 +393,9 @@ ul.indent-list {
.list-item {
padding: $gl-padding 0;
border-bottom: solid 1px $border-color;
// add a border between all items, but not at the start or end
+ .list-item {
border-top: solid 1px $border-color;
}
}
......@@ -40,12 +40,6 @@ body.modal-open {
max-width: 440px;
}
.modal-dialog {
// TODO: this needs top and bottom padding (inside content area)
max-height: calc(100vh - #{$new-navbar-height});
padding: $gl-padding;
}
.modal.popup-dialog {
display: block;
......
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