You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ss...@apache.org on 2013/09/26 22:12:06 UTC

git commit: Aligned column headers to top for consistent rendering.

Updated Branches:
  refs/heads/master 616973da1 -> 50db57694


Aligned column headers to top for consistent rendering.

"vertical-align: bottom;", which is Bootstrap's default for <th>
elements, renders inconsistently when the cell contains enough content
to wrap.

Nuking the style lets ".table th, .table td" win with
"vertical-align: top;" and renders consistently.

Review: https://reviews.apache.org/r/14328/


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/50db5769
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/50db5769
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/50db5769

Branch: refs/heads/master
Commit: 50db5769435da87c8b3aa500a86653ad8ca8f14c
Parents: 616973d
Author: Ross Allen <re...@gmail.com>
Authored: Thu Sep 26 09:37:39 2013 -0700
Committer: Ross Allen <re...@gmail.com>
Committed: Thu Sep 26 13:11:44 2013 -0700

----------------------------------------------------------------------
 src/webui/master/static/css/mesos.css | 13 +++++++++++++
 1 file changed, 13 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/50db5769/src/webui/master/static/css/mesos.css
----------------------------------------------------------------------
diff --git a/src/webui/master/static/css/mesos.css b/src/webui/master/static/css/mesos.css
index 26c5ee7..fa5f36b 100644
--- a/src/webui/master/static/css/mesos.css
+++ b/src/webui/master/static/css/mesos.css
@@ -1,3 +1,16 @@
+/*
+ * BOOTSTRAP OVERRIDES
+ */
+
+.table thead th {
+  vertical-align: top;
+}
+
+/*
+ * /BOOTSTRAP OVERRIDES
+ */
+
+
 body {
   /* Add space for fixed position navbar. */
   padding-top: 60px;