Merge branch '44453-performance-bar-modalbox' into 'master'

Resolve "Performance bar modal box content overflows"

Closes #44453

See merge request gitlab-org/gitlab-ce!17889
This commit is contained in:
Phil Hughes 2018-03-22 12:37:57 +00:00
commit c01697539c
3 changed files with 13 additions and 2 deletions

View File

@ -70,6 +70,7 @@ export default {
<td
v-for="key in keys"
:key="key"
class="break-word"
>
{{ item[key] }}
</td>

View File

@ -446,6 +446,10 @@ img.emoji {
opacity: .5;
}
.break-word {
word-wrap: break-word;
}
/** COMMON CLASSES **/
.prepend-top-0 { margin-top: 0; }
.prepend-top-5 { margin-top: 5px; }

View File

@ -102,8 +102,14 @@
}
}
.performance-bar-modal .modal-footer {
display: none;
.performance-bar-modal {
.modal-footer {
display: none;
}
.modal-dialog {
width: 860px;
}
}
}