You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by vi...@apache.org on 2016/02/03 20:31:25 UTC

[4/4] mesos git commit: Use full screen width for Mesos UI using Bootstrap's container-fluid.

Use full screen width for Mesos UI using Bootstrap's container-fluid.

The solution to our problem is solved by updating the Bootstrap CSS
file, as container-fluid was introduced later in Bootstrap.

I have updated to latest stable release of Bootstrap v3.3.6. Looking
through the change log, the only thing that we are using in the Mesos UI
and changed is the "hide" class (deprecated), so instances of these have
been replaced by its successor ".hidden" class.

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


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

Branch: refs/heads/master
Commit: 156a471931ba93ae2855af91c79ac7cf2508ca1c
Parents: c93c500
Author: Michael Lunøe <mi...@gmail.com>
Authored: Wed Feb 3 11:30:30 2016 -0800
Committer: Vinod Kone <vi...@gmail.com>
Committed: Wed Feb 3 11:30:30 2016 -0800

----------------------------------------------------------------------
 src/webui/master/static/browse.html                 | 2 +-
 src/webui/master/static/css/bootstrap-3.0.3.min.css | 7 -------
 src/webui/master/static/css/bootstrap-3.3.6.min.css | 6 ++++++
 src/webui/master/static/framework.html              | 2 +-
 src/webui/master/static/home.html                   | 4 ++--
 src/webui/master/static/index.html                  | 6 +++---
 src/webui/master/static/slave.html                  | 2 +-
 src/webui/master/static/slave_executor.html         | 2 +-
 src/webui/master/static/slave_framework.html        | 2 +-
 9 files changed, 16 insertions(+), 17 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/156a4719/src/webui/master/static/browse.html
----------------------------------------------------------------------
diff --git a/src/webui/master/static/browse.html b/src/webui/master/static/browse.html
index 6b18056..04a4600 100644
--- a/src/webui/master/static/browse.html
+++ b/src/webui/master/static/browse.html
@@ -20,7 +20,7 @@
   </li>
 </ol>
 
-<div class="alert alert-error hide" id="alert">
+<div class="alert alert-error hidden" id="alert">
   <button class="close" data-dismiss="alert">×</button>
   <strong>{{alert_message}}</strong>
 </div>