Return-Path: X-Original-To: apmail-apex-commits-archive@minotaur.apache.org Delivered-To: apmail-apex-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 2FFF018FAE for ; Fri, 18 Mar 2016 22:13:27 +0000 (UTC) Received: (qmail 66509 invoked by uid 500); 18 Mar 2016 22:13:27 -0000 Delivered-To: apmail-apex-commits-archive@apex.apache.org Received: (qmail 66473 invoked by uid 500); 18 Mar 2016 22:13:27 -0000 Mailing-List: contact commits-help@apex.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@apex.incubator.apache.org Delivered-To: mailing list commits@apex.incubator.apache.org Received: (qmail 66464 invoked by uid 99); 18 Mar 2016 22:13:27 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Mar 2016 22:13:27 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id A594AC0035 for ; Fri, 18 Mar 2016 22:13:26 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -3.221 X-Spam-Level: X-Spam-Status: No, score=-3.221 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001] autolearn=disabled Received: from mx2-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id 8NGshDGiz0tj for ; Fri, 18 Mar 2016 22:13:25 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx2-lw-eu.apache.org (ASF Mail Server at mx2-lw-eu.apache.org) with SMTP id 9D5BD5F3F5 for ; Fri, 18 Mar 2016 22:13:24 +0000 (UTC) Received: (qmail 66407 invoked by uid 99); 18 Mar 2016 22:13:23 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Mar 2016 22:13:23 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 87265E08ED; Fri, 18 Mar 2016 22:13:23 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sashap@apache.org To: commits@apex.incubator.apache.org Date: Fri, 18 Mar 2016 22:13:31 -0000 Message-Id: <5ff3decfe7a84f5c9ba31c9ea7d6d337@git.apache.org> In-Reply-To: <67e50a480e994df99a8dcd1c573f1833@git.apache.org> References: <67e50a480e994df99a8dcd1c573f1833@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [09/26] incubator-apex-site git commit: from 7a8804b25247fa64430f6e030a81bc7389b7daf4 http://git-wip-us.apache.org/repos/asf/incubator-apex-site/blob/e411d993/content/docs/malhar/css/theme_extra.css ---------------------------------------------------------------------- diff --git a/content/docs/malhar/css/theme_extra.css b/content/docs/malhar/css/theme_extra.css new file mode 100644 index 0000000..9845d00 --- /dev/null +++ b/content/docs/malhar/css/theme_extra.css @@ -0,0 +1,154 @@ +/* + * Sphinx doesn't have support for section dividers like we do in + * MkDocs, this styles the section titles in the nav + * + * https://github.com/mkdocs/mkdocs/issues/175 + */ +.wy-menu-vertical span { + line-height: 18px; + padding: 0.4045em 1.618em; + display: block; + position: relative; + font-size: 90%; + color: #838383; +} + +.wy-menu-vertical .subnav a { + padding: 0.4045em 2.427em; +} + +/* + * Long navigations run off the bottom of the screen as the nav + * area doesn't scroll. + * + * https://github.com/mkdocs/mkdocs/pull/202 + */ +.wy-nav-side { + height: 100%; + overflow-y: auto; +} + +/* + * readthedocs theme hides nav items when the window height is + * too small to contain them. + * + * https://github.com/mkdocs/mkdocs/issues/#348 + */ +.wy-menu-vertical ul { + margin-bottom: 2em; +} + +/* + * Fix wrapping in the code highlighting + * + * https://github.com/mkdocs/mkdocs/issues/233 + */ +code { + white-space: pre; + padding: 2px 5px; +} + +/* + * Wrap inline code samples otherwise they shoot of the side and + * can't be read at all. + * + * https://github.com/mkdocs/mkdocs/issues/313 + */ +p code { + word-wrap: break-word; +} + +/** + * Make code blocks display as blocks and give them the appropriate + * font size and padding. + * + * https://github.com/mkdocs/mkdocs/issues/855 + */ +pre code { + display: block; + padding: 12px; + font-size: 12px; +} + +/* + * Fix link colors when the link text is inline code. + * + * https://github.com/mkdocs/mkdocs/issues/718 + */ +a code { + color: #2980B9; +} +a:hover code { + color: #3091d1; +} +a:visited code { + color: #9B59B6; +} + +/* + * The CSS classes from highlight.js seem to clash with the + * ReadTheDocs theme causing some code to be incorrectly made + * bold and italic. + * + * https://github.com/mkdocs/mkdocs/issues/411 + */ +code.cs, code.c { + font-weight: inherit; + font-style: inherit; +} + +/* + * Fix some issues with the theme and non-highlighted code + * samples. Without and highlighting styles attached the + * formatting is broken. + * + * https://github.com/mkdocs/mkdocs/issues/319 + */ +.no-highlight { + display: block; + padding: 0.5em; + color: #333; +} + + +/* + * Additions specific to the search functionality provided by MkDocs + */ + +#mkdocs-search-results article h3 +{ + margin-top: 23px; + border-top: 1px solid #E1E4E5; + padding-top: 24px; +} + +#mkdocs-search-results article:first-child h3 { + border-top: none; +} + +#mkdocs-search-query{ + width: 100%; + border-radius: 50px; + padding: 6px 12px; + border-color: #D1D4D5; +} + +.wy-menu-vertical li ul { + display: inherit; +} + +.wy-menu-vertical li ul.subnav ul.subnav{ + padding-left: 1em; +} + + +/* + * Improve inline code blocks within admonitions. + * + * https://github.com/mkdocs/mkdocs/issues/656 + */ + div.admonition code { + color: #404040; + border: 1px solid rgba(0, 0, 0, 0.2); + background: rgba(255, 255, 255, 0.7); +} http://git-wip-us.apache.org/repos/asf/incubator-apex-site/blob/e411d993/content/docs/malhar/favicon.ico ---------------------------------------------------------------------- diff --git a/content/docs/malhar/favicon.ico b/content/docs/malhar/favicon.ico new file mode 100644 index 0000000..c0b3dae Binary files /dev/null and b/content/docs/malhar/favicon.ico differ http://git-wip-us.apache.org/repos/asf/incubator-apex-site/blob/e411d993/content/docs/malhar/fonts/fontawesome-webfont.eot ---------------------------------------------------------------------- diff --git a/content/docs/malhar/fonts/fontawesome-webfont.eot b/content/docs/malhar/fonts/fontawesome-webfont.eot new file mode 100755 index 0000000..0662cb9 Binary files /dev/null and b/content/docs/malhar/fonts/fontawesome-webfont.eot differ