You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by dm...@apache.org on 2018/02/06 22:13:23 UTC

aurora git commit: Use overflow to prevent overlapping config summary tables

Repository: aurora
Updated Branches:
  refs/heads/master f6c7d6c23 -> 8cd04aa77


Use overflow to prevent overlapping config summary tables

Previous approach seemed almost random with the way it used line breaks for words. Caused some weirdness for edge cases. This approach just caps the size of table cells, since only metadata can grow unbounded.

Reviewed at https://reviews.apache.org/r/65537/


Project: http://git-wip-us.apache.org/repos/asf/aurora/repo
Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/8cd04aa7
Tree: http://git-wip-us.apache.org/repos/asf/aurora/tree/8cd04aa7
Diff: http://git-wip-us.apache.org/repos/asf/aurora/diff/8cd04aa7

Branch: refs/heads/master
Commit: 8cd04aa77384ada1be27607744ec8453468b7336
Parents: f6c7d6c
Author: David McLaughlin <da...@dmclaughlin.com>
Authored: Tue Feb 6 14:13:14 2018 -0800
Committer: David McLaughlin <da...@dmclaughlin.com>
Committed: Tue Feb 6 14:13:14 2018 -0800

----------------------------------------------------------------------
 ui/src/main/sass/components/_job-page.scss | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/aurora/blob/8cd04aa7/ui/src/main/sass/components/_job-page.scss
----------------------------------------------------------------------
diff --git a/ui/src/main/sass/components/_job-page.scss b/ui/src/main/sass/components/_job-page.scss
index 23fe3c4..acd1f19 100644
--- a/ui/src/main/sass/components/_job-page.scss
+++ b/ui/src/main/sass/components/_job-page.scss
@@ -89,7 +89,8 @@
     }
 
     td {
-      word-break: break-word;
+      max-width: 250px;
+      overflow: auto;
     }
   }