Prevent transfer tables expanding out of modal

The transfer tables can sometimes expand out of the modal when they have
columns containing very long UUID entries, which is common for Networks/
Subnets. We should force word-break to prevent this.

Change-Id: I65fece6139010b128f8b60e3a53e0b5ac7b82edb
Closes-Bug: 1565724
This commit is contained in:
Rob Cresswell 2016-04-04 13:30:10 +01:00
parent 2eb320bd31
commit c0e04d4a1e
1 changed files with 6 additions and 0 deletions

View File

@ -15,4 +15,10 @@
.magic-search-bar, .basic-search-bar {
margin: $padding-small-vertical 0;
}
// Make sure long UUIDs don't force the table outside the modal
// See https://bugs.launchpad.net/horizon/+bug/1565724
td {
word-break: break-all;
}
}