dask_sphinx_theme-1.3.6/0000755000175100001710000000000014063176246016026 5ustar runnerdocker00000000000000dask_sphinx_theme-1.3.6/LICENSE.txt0000644000175100001710000000267214063176230017651 0ustar runnerdocker00000000000000Copyright (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.in0000644000175100001710000000054314063176230017557 0ustar runnerdocker00000000000000recursive-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-INFO0000644000175100001710000000157214063176246017130 0ustar runnerdocker00000000000000Metadata-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.rst0000644000175100001710000000075514063176230017515 0ustar runnerdocker00000000000000Dask 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/0000755000175100001710000000000014063176246021523 5ustar runnerdocker00000000000000dask_sphinx_theme-1.3.6/dask_sphinx_theme/__init__.py0000644000175100001710000000061314063176230023625 0ustar runnerdocker00000000000000from 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.html0000644000175100001710000001057514063176230023727 0ustar runnerdocker00000000000000{% 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/0000755000175100001710000000000014063176246023012 5ustar runnerdocker00000000000000dask_sphinx_theme-1.3.6/dask_sphinx_theme/static/css/0000755000175100001710000000000014063176246023602 5ustar runnerdocker00000000000000dask_sphinx_theme-1.3.6/dask_sphinx_theme/static/css/explore.css0000644000175100001710000000310014063176230025755 0ustar runnerdocker00000000000000.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.css0000644000175100001710000000141714063176230026141 0ustar runnerdocker00000000000000/* 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.css0000644000175100001710000000323614063176230025451 0ustar runnerdocker00000000000000@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/0000755000175100001710000000000014063176246024257 5ustar runnerdocker00000000000000dask_sphinx_theme-1.3.6/dask_sphinx_theme/static/images/dask-horizontal-white.svg0000644000175100001710000000603414063176230031223 0ustar runnerdocker00000000000000 Dask dask_sphinx_theme-1.3.6/dask_sphinx_theme/static/images/favicon.ico0000755000175100001710000003605614063176230026406 0ustar runnerdocker00000000000000 h6  (00 h&(  )K%1W)4N1:\?kҭCw1*T/O_?8Z>iRK|QmUU7]̉:^?gGu׮N|X7X͸7W FqTݩ[x$[8]7a7Fs3M`6W̲4[5UN ^dL7\X;aϗ5T˾5ZsgҖL}؆gj];bЫ2M2U33f Pܴ\Hd8l;`Ύe>`%+A/2M4Rʡ.E /TCmӪL{R|?a"hmj?8^yfR-Aq1K1Pɏ? >g%LzUXKimmM9_PgҖ: ,FP3Q˭8Z;`gЯ3f?_*F7W`;`?hBoӇ8qL(^fYmkof9X1;a>gClӼHtԑJvcIz4Es 7^.=hҲCpGuךGw ]giAf joi"1Z9`͖>fBmHtMzQTݰUZT9bDnԡIwM{ٕV>fl_inp+T 6[?fFr:JyqQگTZ]`UGu'HvרM}Pud^kaimh,HmM;Wߑ]beRAL~RQTlgi.hmb'HY<`egNQQTݷ^+f#glcYf}ihXPَVXb\fkiT iamVDUY^Qeif HmTmHUݐZ_egcHj+RAY^cc6PX^aL HmXލ\`UV[Z߻TU0VG?3f(0` 'G .N74N'(P-LC5S˻5V˴6[p7Z3,XH,L(5S̵7X:]gAlBoԕDoG=pUL 2PL7V:[;b=gAmDrHwIx}Ey,?_)R%6V8[:`ο;dk@kҦCqHvK{LڴMLKx?UU.E6Uˤ9[:^3[2;j+BpkGuչK|ORQdOU?.W&3Y<3[@7Y<0V53Z-0Y%9b5_6mf?4Sʃ9Z:]5X4?.\ >q-IzؒNQTW}O U.E 5[d9]9^9^9^:_gѴAlӗDopCtDCr&Hy_? 2Rf8Z9\5]L8 E{!LrPUXZR"1U$7]͛9^:_:_;_8]:`;cЯ5]&. /Ne5T7W6XT5Y[9^:^f9$HO^^egjg 1X7[ϋ:`;b:eS_?0MȄ6S7W2V80W:8^Ͱ9_?eCmժDk4*U[cfjiR\ L 7]J:_=c>eЏ.\"91Kɦ4R7V.P&3 5Y98^Ϩ>eDoJv֥Gz2??*]Dfikf#/W 9]͹d<]&)D%2K4Q6Sͤ/K?5]4>eѣDoJwNڒI&_gjljHf-K6]Έ;a>e@fC$H. -CO2K4O4Ru??9e:CnұKwPTvL?c_jmnzc8 4\Xefg?j|:h'?HySq\bg~c`kmpi/O:^Δ=c>fg@mBpԑBs*_P&\bhc)hjnpn%/O8\͐;b>fAiDmԜEqyFtSHr1?v:u .Q9_Pf$H5]L:_Έ=0.5.2 dask_sphinx_theme-1.3.6/dask_sphinx_theme.egg-info/top_level.txt0000644000175100001710000000002214063176246025741 0ustar runnerdocker00000000000000dask_sphinx_theme dask_sphinx_theme-1.3.6/requirements.txt0000644000175100001710000000003214063176230021276 0ustar runnerdocker00000000000000sphinx_rtd_theme >= 0.5.2 dask_sphinx_theme-1.3.6/setup.cfg0000644000175100001710000000004614063176246017647 0ustar runnerdocker00000000000000[egg_info] tag_build = tag_date = 0 dask_sphinx_theme-1.3.6/setup.py0000644000175100001710000000176114063176230017536 0ustar runnerdocker00000000000000#!/usr/bin/env python from setuptools import setup import dask_sphinx_theme setup(name='dask_sphinx_theme', version=dask_sphinx_theme.__version__, url='https://github.com/dask/dask-sphinx-theme/', license='BSD', author='Dask Developers', description='Dask theme for Sphinx', long_description=open('README.rst').read(), zip_safe=False, packages=['dask_sphinx_theme'], package_data={'dask_sphinx_theme': [ 'theme.conf', '*.html', 'static/css/*.css', 'static/images/*.svg', 'static/images/*.ico', 'static/js/*.js', 'static/font/*.*' ]}, include_package_data=True, # http://www.sphinx-doc.org/en/stable/theming.html#distribute-your-theme-as-a-python-package entry_points = { 'sphinx.html_themes': [ 'dask_sphinx_theme = dask_sphinx_theme', ] }, install_requires=open('requirements.txt').read().strip().split('\n'), )