[docs] Active tab caption is now displaying blue

This closes #1763


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/628bafa8
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/628bafa8
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/628bafa8

Branch: refs/heads/master
Commit: 628bafa896648be2631f77eb742d096c9cef8ec3
Parents: 7bdac1a
Author: Jark Wu <wuchong...@alibaba-inc.com>
Authored: Fri Mar 4 17:57:40 2016 +0800
Committer: Stephan Ewen <se...@apache.org>
Committed: Fri Mar 4 20:58:32 2016 +0100

----------------------------------------------------------------------
 docs/apis/streaming/index.md |  2 +-
 docs/page/css/codetabs.css   | 10 +++++++---
 2 files changed, 8 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/628bafa8/docs/apis/streaming/index.md
----------------------------------------------------------------------
diff --git a/docs/apis/streaming/index.md b/docs/apis/streaming/index.md
index 4a54cfc..6d69459 100644
--- a/docs/apis/streaming/index.md
+++ b/docs/apis/streaming/index.md
@@ -1493,7 +1493,7 @@ DataStream<Integer> iterationBody = iteration.map(/* this 
is executed many times
 
 To close an iteration and define the iteration tail, call the 
`closeWith(feedbackStream)` method of the `IterativeStream`.
 The DataStream given to the `closeWith` function will be fed back to the 
iteration head.
-A common pattern is to use a filter to separate the part of the strem that is 
fed back,
+A common pattern is to use a filter to separate the part of the stream that is 
fed back,
 and the part of the stream which is propagated forward. These filters can, 
e.g., define
 the "termination" logic, where an element is allowed to propagate downstream 
rather
 than being fed back.

http://git-wip-us.apache.org/repos/asf/flink/blob/628bafa8/docs/page/css/codetabs.css
----------------------------------------------------------------------
diff --git a/docs/page/css/codetabs.css b/docs/page/css/codetabs.css
index 420d559..f62c67a 100644
--- a/docs/page/css/codetabs.css
+++ b/docs/page/css/codetabs.css
@@ -53,10 +53,14 @@ ul.nav li.dropdown ul.dropdown-menu li.dropdown-submenu 
ul.dropdown-menu {
  * That looks weird. Changed the colors to active - blue, inactive - black, and
  * no color change on hover.
  */
-.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
-  color: #08c;
+.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover {
+  color: #08c !important;
 }
 
 .nav-tabs > li > a, .nav-tabs > li > a:hover {
   color: #333;
-}
\ No newline at end of file
+}
+
+.nav.nav-tabs {
+    margin-bottom: 20px;
+}

Reply via email to