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 @@ $(() => { ...@@ -103,6 +103,8 @@ $(() => {
if (labelIndex === -1) { if (labelIndex === -1) {
filterPath.push(param); filterPath.push(param);
} }
this.cantEdit.push('label');
}); });
Store.filter.path = filterPath.join('&'); Store.filter.path = filterPath.join('&');
......
...@@ -41,7 +41,7 @@ export default { ...@@ -41,7 +41,7 @@ export default {
return this.board.milestone ? this.board.milestone.id : ''; return this.board.milestone ? this.board.milestone.id : '';
}, },
milestoneTitleClass() { milestoneTitleClass() {
return this.milestoneTitle === 'ANY_MILESTONE' ? 'bold' : 'text-secondary'; return this.milestoneTitle === 'ANY_MILESTONE' ? 'text-secondary': 'bold';
}, },
selected() { selected() {
return this.board.milestone ? this.board.milestone.name : ''; return this.board.milestone ? this.board.milestone.name : '';
......
...@@ -291,10 +291,6 @@ ...@@ -291,10 +291,6 @@
} }
} }
.dropdown-menu-wide {
width: 100%;
}
.droplab-dropdown { .droplab-dropdown {
.dropdown-toggle > i { .dropdown-toggle > i {
pointer-events: none; pointer-events: none;
......
...@@ -393,5 +393,9 @@ ul.indent-list { ...@@ -393,5 +393,9 @@ ul.indent-list {
.list-item { .list-item {
padding: $gl-padding 0; 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 { ...@@ -40,12 +40,6 @@ body.modal-open {
max-width: 440px; 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 { .modal.popup-dialog {
display: block; 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