This is an automated email from the ASF dual-hosted git repository.
maximebeauchemin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
The following commit(s) were added to refs/heads/master by this push:
new 77d1e5d Always use fluid container for navbar. (#4279)
77d1e5d is described below
commit 77d1e5d046c30c1193b8c709e8b811651fed3950
Author: Xiao Hanyu <[email protected]>
AuthorDate: Thu Jan 25 00:55:57 2018 +0800
Always use fluid container for navbar. (#4279)
As in https://github.com/apache/incubator-superset/pull/4147 removes the
final non fluid container navbar, I think there's no need to keep this
line of code. Just use navbar with fluid container, always.
---
superset/templates/appbuilder/navbar.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/superset/templates/appbuilder/navbar.html
b/superset/templates/appbuilder/navbar.html
index 2a6b65b..27f2fee 100644
--- a/superset/templates/appbuilder/navbar.html
+++ b/superset/templates/appbuilder/navbar.html
@@ -3,7 +3,7 @@
{% set WARNING_MSG = appbuilder.app.config.get('WARNING_MSG') %}
<div class="navbar navbar-static-top {{menu.extra_classes}}" role="navigation">
- <div class="container{{ '-fluid' if not navbar_container else '' }}">
+ <div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse"
data-target=".navbar-collapse">
<span class="icon-bar"></span>
--
To stop receiving notification emails like this one, please contact
[email protected].