horizon/openstack_dashboard/static/dashboard/scss/components/_transfer_tables.scss
Rob Cresswell 36ead14328 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
2016-04-04 13:30:10 +01:00

25 lines
447 B
SCSS

.transfer-table {
.fa[title] {
cursor: pointer;
}
.transfer-heading{
@extend h5;
font-size: $font-size-h5;
}
.transfer-section {
margin-top: $padding-large-vertical;
}
.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;
}
}