CLOUDSTACK-4046: Fix global settings CSS

-Truncate key/name field to prevent long strings from stretching the
 table width beyond the container bounds.

-Update min-width for truncated fields for better compatibility
This commit is contained in:
Brian Federle 2014-08-26 14:16:19 -07:00
parent 5b221c2126
commit e7e6b7233b
2 changed files with 3 additions and 2 deletions

View File

@ -164,7 +164,7 @@ table tbody td.loading {
table tbody td.truncated { table tbody td.truncated {
overflow: visible; overflow: visible;
max-width: 88px; max-width: 120px;
} }
table tbody td.truncated > span { table tbody td.truncated > span {

View File

@ -63,7 +63,8 @@
fields: { fields: {
name: { name: {
label: 'label.name', label: 'label.name',
id: true id: true,
truncate: true
}, },
description: { description: {
label: 'label.description' label: 'label.description'