dask_sphinx_theme-1.3.6/ 0000755 0001751 0000171 00000000000 14063176246 016026 5 ustar runner docker 0000000 0000000 dask_sphinx_theme-1.3.6/LICENSE.txt 0000644 0001751 0000171 00000002672 14063176230 017651 0 ustar runner docker 0000000 0000000 Copyright (c) 2018 Dask Developers
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
Neither the name of Anaconda nor the names of any contributors may be used to
endorse or promote products derived from this software without specific prior
written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
THE POSSIBILITY OF SUCH DAMAGE.
dask_sphinx_theme-1.3.6/MANIFEST.in 0000644 0001751 0000171 00000000543 14063176230 017557 0 ustar runner docker 0000000 0000000 recursive-include dask_sphinx_theme *.py
recursive-include dask_sphinx_theme *.html
recursive-include dask_sphinx_theme *.css
recursive-include dask_sphinx_theme *.svg
recursive-include dask_sphinx_theme *.ico
recursive-include dask_sphinx_theme *.conf
include setup.py
include requirements.txt
include README.rst
include LICENSE.txt
include MANIFEST.in
dask_sphinx_theme-1.3.6/PKG-INFO 0000644 0001751 0000171 00000001572 14063176246 017130 0 ustar runner docker 0000000 0000000 Metadata-Version: 1.0
Name: dask_sphinx_theme
Version: 1.3.6
Summary: Dask theme for Sphinx
Home-page: https://github.com/dask/dask-sphinx-theme/
Author: Dask Developers
Author-email: UNKNOWN
License: BSD
Description: Dask Sphinx Theme
=================
This is the official Sphinx theme for Dask documentation. It extends the
``sphinx_rtd_theme`` project, but adds custom styling and a navigation bar to
additional Dask subprojects.
When creating a Dask subproject you can include this theme by changing this
line in your conf.py file
.. code-block:: python
html_theme = 'dask_sphinx_theme'
And by including ``dask_sphinx_theme`` as a requirement in your documentation
installation.
History
-------
Platform: UNKNOWN
dask_sphinx_theme-1.3.6/README.rst 0000644 0001751 0000171 00000000755 14063176230 017515 0 ustar runner docker 0000000 0000000 Dask Sphinx Theme
=================
This is the official Sphinx theme for Dask documentation. It extends the
``sphinx_rtd_theme`` project, but adds custom styling and a navigation bar to
additional Dask subprojects.
When creating a Dask subproject you can include this theme by changing this
line in your conf.py file
.. code-block:: python
html_theme = 'dask_sphinx_theme'
And by including ``dask_sphinx_theme`` as a requirement in your documentation
installation.
History
-------
dask_sphinx_theme-1.3.6/dask_sphinx_theme/ 0000755 0001751 0000171 00000000000 14063176246 021523 5 ustar runner docker 0000000 0000000 dask_sphinx_theme-1.3.6/dask_sphinx_theme/__init__.py 0000644 0001751 0000171 00000000613 14063176230 023625 0 ustar runner docker 0000000 0000000 from os import path
__version__ = '1.3.6'
def get_html_theme_path():
"""Return list of HTML theme paths."""
cur_dir = path.abspath(path.dirname(path.dirname(__file__)))
return cur_dir
# See http://www.sphinx-doc.org/en/stable/theming.html#distribute-your-theme-as-a-python-package
def setup(app):
app.add_html_theme('dask_sphinx_theme', path.abspath(path.dirname(__file__)))
dask_sphinx_theme-1.3.6/dask_sphinx_theme/layout.html 0000644 0001751 0000171 00000010575 14063176230 023727 0 ustar runner docker 0000000 0000000 {% extends "sphinx_rtd_theme/layout.html" %}
{% set css_files = css_files + ["_static/css/explore.css"] %}
{% set css_files = css_files + ["_static/css/nbsphinx.css"] %}
{% set script_files = script_files + ["_static/js/custom.js"] %}
{% block extrahead %}
{# SOCIAL GRAPH #}
{% endblock %}
{% block extrabody %}
{% endblock %}
dask_sphinx_theme-1.3.6/dask_sphinx_theme/static/ 0000755 0001751 0000171 00000000000 14063176246 023012 5 ustar runner docker 0000000 0000000 dask_sphinx_theme-1.3.6/dask_sphinx_theme/static/css/ 0000755 0001751 0000171 00000000000 14063176246 023602 5 ustar runner docker 0000000 0000000 dask_sphinx_theme-1.3.6/dask_sphinx_theme/static/css/explore.css 0000644 0001751 0000171 00000003100 14063176230 025755 0 ustar runner docker 0000000 0000000 .wy-nav-side {
padding-top: 50px;
padding-bottom: 0rem;
}
.wy-nav-content {
margin-top: 50px;
}
#explore-links {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 300;
height: 50px;
line-height: 50px;
text-align: center;
background-color: #1a1a1a;
color: #ECB172;
display: flex;
}
#explore-links .caption {
flex: 0;
width: 300px;
max-height: 100%;
padding: 5px;
}
#explore-links a {
color: #ECB172;
}
#explore-links a:hover {
background-color: #343131;
}
@media (max-width: 768px) {
#explore-links {
display: none;
}
}
#explore-links ul { /* all lists... */
display: flex;
flex: 1;
color: #ECB172;
transition: .3s;
}
#explore-links li { /* all list items... */
flex: 1;
position: relative; /* set the origin for child boxes to be positioned from */
transition: .3s;
text-align: left;
max-width: 12rem;
}
#explore-links ul li a {
padding-left: 1rem;
display: block;
height: 100%;
}
#explore-links ul ul { /* lists within lists... */
left: 0; /* align them to the left of the parent list item - necessary for some older browsers */
top: 100%; /* align them to the bottom of the parent list item - again only necessary for older browsers */
display: none; /* hide 'em */
color: #ECB172;
background-color: #1a1a1a;
}
#explore-links li:hover ul { /* when list items are hovered over, do this to lists contained within them... */
display: block; /* show 'em */
}
#explore-links ul li:hover { /* when list items are hovered over, do this to lists contained within them... */
background-color: #343131;
}
dask_sphinx_theme-1.3.6/dask_sphinx_theme/static/css/nbsphinx.css 0000644 0001751 0000171 00000001417 14063176230 026141 0 ustar runner docker 0000000 0000000 /* Turn off In/Out prompts */
div.nbinput div.prompt, div.nboutput div.prompt {
display: none;
}
.rst-content pre.literal-block div[class^='highlight'], .rst-content div[class^='highlight'] div[class^='highlight'] {
background: none;
}
.output_area table {
margin-left: 0;
margin-right: 0;
margin-top: 1em;
border: none;
border-collapse: collapse;
border-spacing: 0;
color: black;
table-layout: fixed;
}
.output_area thead {
border-bottom: 1px solid black;
vertical-align: bottom;
}
.output_area tbody tr:nth-child(2n+1) {
background: #f5f5f5;
}
.output_area tr, .output_area th, .output_area td {
text-align: right;
vertical-align: middle;
padding: 0.5em 0.5em;
line-height: normal;
white-space: normal;
max-width: none;
border: none;
}
dask_sphinx_theme-1.3.6/dask_sphinx_theme/static/css/style.css 0000644 0001751 0000171 00000003236 14063176230 025451 0 ustar runner docker 0000000 0000000 @import url("theme.css");
html {
/* Offset href links for header.
* See: https://css-tricks.com/fixed-headers-on-page-links-and-overlapping-content-oh-my/ */
scroll-padding-top: 50px
}
.rst-content h1,h2,h3,h4,h5{
font-family: 'Garamond', 'Georgia', serif;
font-weight: normal;
}
.rst-content h1 {
font-size: 240%;
}
.rst-content h2 {
font-size: 180%;
}
.rst-content h3 {
font-size: 160%;
}
.wy-menu-vertical li ul li a,
.wy-menu-vertical li.current a,
.wy-menu-vertical a {
color: #ECB172;
}
.wy-menu-vertical li.toctree-l2.current>a:hover,
.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a:hover,
.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a:hover,
.wy-menu-vertical li.current a:hover {
background: #404040;
color: #ECB172;
}
.wy-menu-vertical a:hover {
background: #303030;
}
.wy-side-nav-search>a img.logo,
.wy-side-nav-search .wy-dropdown>a img.logo {
width: 10rem
}
.wy-side-nav-search {
background-color: #1a1a1a;
}
.wy-side-nav-search>div.version {
display: none;
}
.wy-menu-vertical header,
.wy-menu-vertical p.caption {
color: #D67548;
}
.wy-menu-vertical li.on a,
.wy-menu-vertical li.current>a {
background: #303030;
border-top: none;
border-bottom: none;
}
.wy-menu-vertical ul,
.wy-side-scroll {
background-color: #1a1a1a;
}
.wy-menu-vertical li.toctree-l2.current>a,
.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a,
.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a,
.wy-menu-vertical li ul {
background-color: #303030;
}
/* Mobile */
.wy-nav-top {
background: #1a1a1a;
}
.wy-nav-top a {
color: #ECB172;
}
.wy-nav-top i {
color: #ECB172;
}
.wy-breadcrumbs {
display: none;
}
dask_sphinx_theme-1.3.6/dask_sphinx_theme/static/images/ 0000755 0001751 0000171 00000000000 14063176246 024257 5 ustar runner docker 0000000 0000000 dask_sphinx_theme-1.3.6/dask_sphinx_theme/static/images/dask-horizontal-white.svg 0000644 0001751 0000171 00000006034 14063176230 031223 0 ustar runner docker 0000000 0000000
dask_sphinx_theme-1.3.6/dask_sphinx_theme/static/images/favicon.ico 0000755 0001751 0000171 00000036056 14063176230 026406 0 ustar runner docker 0000000 0000000 h 6 ( 00 h&