1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
|
.. INSPIRED FROM sphinx-design documentation
========================
Sphinx Design Components
========================
On this page, you will find user interface components such as badges, buttons,
cards, and tabs.
The components on this page are **not provided by PyData Theme**.
They are provided by `Sphinx Design <https://sphinx-design.readthedocs.io/en/pydata-theme/index.html>`_ (a Sphinx extension).
This means that if you wish to use the components on this page, you must install Sphinx Design separately and add it to your `conf.py`.
.. seealso::
To add the Sphinx Design extension to your Sphinx project, refer to `Sphinx
Design - Getting Started
<https://sphinx-design.readthedocs.io/en/pydata-theme/get_started.html>`_.
Contributors to both projects have worked to ensure compatible styling so that
Sphinx Design components look and feel consistent with the PyData Theme.
This page shows you how the Sphinx Design components would look on your site if
you were to use them in combination with the PyData Theme. Sphinx Design also
provides a `PyData-themed version of the Sphinx Design site
<https://sphinx-design.readthedocs.io/en/pydata-theme/>`__; however, their site
use an older version of this theme.
Any customizations you make to the theme could affect how these components
appear on your site. So what you see on this page might not match exactly what
you see on your site even if your site uses this theme.
.. _badges-buttons:
Badges and button-links
=======================
Here are some of the available badges:
:bdg-primary:`primary`
:bdg-secondary:`secondary`
:bdg-success:`success`
:bdg-primary-line:`primary outline`
:bdg-secondary-line:`secondary outline`
:bdg-success-line:`success outline`
Here are some of the available button-style links, also using semantic colors:
.. grid:: auto
.. grid-item::
.. button-ref:: badges-buttons
:ref-type: ref
:color: info
:shadow:
Info
.. grid-item::
.. button-ref:: badges-buttons
:ref-type: ref
:color: success
:shadow:
Success
.. grid-item::
.. button-ref:: badges-buttons
:ref-type: ref
:color: warning
:shadow:
Warning
.. grid-item::
.. button-ref:: badges-buttons
:ref-type: ref
:color: danger
:shadow:
Danger
.. grid-item::
.. button-ref:: badges-buttons
:ref-type: ref
:color: muted
:shadow:
Muted
.. grid-item::
.. button-ref:: badges-buttons
:ref-type: ref
:color: light
:shadow:
Light
.. grid-item::
.. button-ref:: badges-buttons
:ref-type: ref
:color: dark
:shadow:
Dark
.. grid-item::
.. button-ref:: badges-buttons
:ref-type: ref
:color: secondary
:shadow:
Secondary
.. grid-item::
.. button-ref:: badges-buttons
:ref-type: ref
:color: primary
:shadow:
Primary
.. note::
`Sphinx Design buttons
<https://sphinx-design.readthedocs.io/en/latest/badges_buttons.html>`__ are
actually links, meaning they are rendered in HTML with ``<a>`` tags instead
of ``<button>``. Use them if you need a link to look like a button, but try
not to overuse them as they are not considered best practice for
accessibility. (For example, it upsets user interface expectations because
the space bar can be used on ``<button>``-tag buttons but not on ``<a>``-tag
links that look like buttons.)
If in your site's :ref:`custom CSS file <custom-css>` you override the :ref:`CSS
custom properties <css-variables>` ``--pst-color-*`` (where ``*`` is one of the
semantic color names, such as ``primary``, ``danger``), badges and buttons will
automatically use the custom color.
Cards
=====
.. grid::
.. grid-item-card:: Only heading
.. grid-item-card::
Only body.
But with multiple text paragraphs.
.. grid-item-card:: Heading and body
Content of the third card.
:bdg-primary:`Sample badge`
.. grid::
.. grid-item-card:: A card with a dropdown menu
.. dropdown:: :fa:`eye me-1` Click to expand dropdown
Hidden content
.. grid-item-card:: A clickable card
:link: https://sphinx-design.readthedocs.io/en/pydata-theme/cards.html#clickable-cards
:link-alt: Clickable cards - Sphinx Design docs
Don't forget to add the alternative text with ``link-alt``!
.. grid::
.. grid-item-card::
panel 1 header
^^^^^^^^^^^^^^
panel 1 content
more content
++++++++++++++
panel 1 footer
.. grid-item-card::
panel 2 header
^^^^^^^^^^^^^^
panel 2 content
++++++++++++++
panel 2 footer
Tabs
====
.. tab-set::
.. tab-item:: c++
.. code-block:: c++
int main(const int argc, const char **argv) {
return 0;
}
.. tab-item:: python
.. code-block:: python
def main():
return
.. tab-item:: java
.. code-block:: java
class Main {
public static void main(String[] args) {
}
}
.. tab-item:: julia
.. code-block:: julia
function main()
end
.. tab-item:: fortran
.. code-block:: fortran
PROGRAM main
END PROGRAM main
Dropdowns
=========
Dropdowns look similar to admonitions, but they are clickable interactive elements that can be used to hide content.
See `the Sphinx Design Dropdown documentation <https://sphinx-design.readthedocs.io/en/latest/dropdowns.html>`__ for more information.
.. admonition:: An admonition for reference.
And some admonition content.
.. dropdown::
And with no title and some content!
.. dropdown:: With a title
And some content!
.. dropdown:: With a title and icon
:icon: unlock
And some content and an icon!
.. dropdown:: A primary color dropdown
:color: primary
:icon: unlock
And some content!
.. dropdown:: A secondary color dropdown
:color: secondary
:icon: unlock
And some content!
Copybuttons
===========
`sphinx-copybutton <https://sphinx-copybutton.readthedocs.io/en/latest/>`__ adds a copy button to each of your code cells.
You can see it in action by hovering over the code cell below:
.. code-block:: python
print("A copybutton in the top-right!")
.. admonition:: nbsphinx
If your documentation site uses both nbsphinx and Sphinx-copybutton, you
will want to add the following line to your ``conf.py`` file to prevent the
copy button from appearing on top of notebook cell numbers:
.. code-block:: python
:caption: conf.py
copybutton_selector = ":not(.prompt) > div.highlight pre"
Toggle buttons
==============
`sphinx-togglebutton <https://sphinx-togglebutton.readthedocs.io/en/latest/>`__ allows you to convert admonitions into toggle-able elements.
.. admonition:: Click me to toggle!
:class: dropdown
This will be hidden until a click!
.. toggle::
A standalone toggle button!
|