Commit c0169753 authored by Phil Hughes's avatar Phil Hughes

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
parents afef35e9 3886489a
...@@ -70,6 +70,7 @@ export default { ...@@ -70,6 +70,7 @@ export default {
<td <td
v-for="key in keys" v-for="key in keys"
:key="key" :key="key"
class="break-word"
> >
{{ item[key] }} {{ item[key] }}
</td> </td>
......
...@@ -446,6 +446,10 @@ img.emoji { ...@@ -446,6 +446,10 @@ img.emoji {
opacity: .5; opacity: .5;
} }
.break-word {
word-wrap: break-word;
}
/** COMMON CLASSES **/ /** COMMON CLASSES **/
.prepend-top-0 { margin-top: 0; } .prepend-top-0 { margin-top: 0; }
.prepend-top-5 { margin-top: 5px; } .prepend-top-5 { margin-top: 5px; }
......
...@@ -102,8 +102,14 @@ ...@@ -102,8 +102,14 @@
} }
} }
.performance-bar-modal .modal-footer { .performance-bar-modal {
display: none; .modal-footer {
display: none;
}
.modal-dialog {
width: 860px;
}
} }
} }
......
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