properdocs-theme-mkdocs 1.6.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. properdocs_theme_mkdocs/404.html +12 -0
  2. properdocs_theme_mkdocs/__init__.py +1 -0
  3. properdocs_theme_mkdocs/base.html +251 -0
  4. properdocs_theme_mkdocs/content.html +9 -0
  5. properdocs_theme_mkdocs/css/base.css +366 -0
  6. properdocs_theme_mkdocs/css/bootstrap.min.css +12 -0
  7. properdocs_theme_mkdocs/css/bootstrap.min.css.map +1 -0
  8. properdocs_theme_mkdocs/css/brands.min.css +6 -0
  9. properdocs_theme_mkdocs/css/fontawesome.min.css +9 -0
  10. properdocs_theme_mkdocs/css/solid.min.css +6 -0
  11. properdocs_theme_mkdocs/css/v4-font-face.min.css +6 -0
  12. properdocs_theme_mkdocs/img/favicon.ico +0 -0
  13. properdocs_theme_mkdocs/img/grid.png +0 -0
  14. properdocs_theme_mkdocs/js/base.js +287 -0
  15. properdocs_theme_mkdocs/js/bootstrap.bundle.min.js +7 -0
  16. properdocs_theme_mkdocs/js/bootstrap.bundle.min.js.map +1 -0
  17. properdocs_theme_mkdocs/js/darkmode.js +65 -0
  18. properdocs_theme_mkdocs/keyboard-modal.html +40 -0
  19. properdocs_theme_mkdocs/locales/de/LC_MESSAGES/messages.mo +0 -0
  20. properdocs_theme_mkdocs/locales/es/LC_MESSAGES/messages.mo +0 -0
  21. properdocs_theme_mkdocs/locales/fa/LC_MESSAGES/messages.mo +0 -0
  22. properdocs_theme_mkdocs/locales/fr/LC_MESSAGES/messages.mo +0 -0
  23. properdocs_theme_mkdocs/locales/id/LC_MESSAGES/messages.mo +0 -0
  24. properdocs_theme_mkdocs/locales/it/LC_MESSAGES/messages.mo +0 -0
  25. properdocs_theme_mkdocs/locales/ja/LC_MESSAGES/messages.mo +0 -0
  26. properdocs_theme_mkdocs/locales/nb/LC_MESSAGES/messages.mo +0 -0
  27. properdocs_theme_mkdocs/locales/nl/LC_MESSAGES/messages.mo +0 -0
  28. properdocs_theme_mkdocs/locales/nn/LC_MESSAGES/messages.mo +0 -0
  29. properdocs_theme_mkdocs/locales/pl/LC_MESSAGES/messages.mo +0 -0
  30. properdocs_theme_mkdocs/locales/pt_BR/LC_MESSAGES/messages.mo +0 -0
  31. properdocs_theme_mkdocs/locales/ru/LC_MESSAGES/messages.mo +0 -0
  32. properdocs_theme_mkdocs/locales/tr/LC_MESSAGES/messages.mo +0 -0
  33. properdocs_theme_mkdocs/locales/uk/LC_MESSAGES/messages.mo +0 -0
  34. properdocs_theme_mkdocs/locales/zh_CN/LC_MESSAGES/messages.mo +0 -0
  35. properdocs_theme_mkdocs/locales/zh_TW/LC_MESSAGES/messages.mo +0 -0
  36. properdocs_theme_mkdocs/main.html +10 -0
  37. properdocs_theme_mkdocs/mkdocs_theme.yml +28 -0
  38. properdocs_theme_mkdocs/nav-sub.html +14 -0
  39. properdocs_theme_mkdocs/search-modal.html +21 -0
  40. properdocs_theme_mkdocs/toc.html +26 -0
  41. properdocs_theme_mkdocs/webfonts/fa-brands-400.ttf +0 -0
  42. properdocs_theme_mkdocs/webfonts/fa-brands-400.woff2 +0 -0
  43. properdocs_theme_mkdocs/webfonts/fa-regular-400.ttf +0 -0
  44. properdocs_theme_mkdocs/webfonts/fa-regular-400.woff2 +0 -0
  45. properdocs_theme_mkdocs/webfonts/fa-solid-900.ttf +0 -0
  46. properdocs_theme_mkdocs/webfonts/fa-solid-900.woff2 +0 -0
  47. properdocs_theme_mkdocs/webfonts/fa-v4compatibility.ttf +0 -0
  48. properdocs_theme_mkdocs/webfonts/fa-v4compatibility.woff2 +0 -0
  49. properdocs_theme_mkdocs-1.6.5.dist-info/METADATA +34 -0
  50. properdocs_theme_mkdocs-1.6.5.dist-info/RECORD +53 -0
  51. properdocs_theme_mkdocs-1.6.5.dist-info/WHEEL +4 -0
  52. properdocs_theme_mkdocs-1.6.5.dist-info/entry_points.txt +2 -0
  53. properdocs_theme_mkdocs-1.6.5.dist-info/licenses/LICENSE +26 -0
@@ -0,0 +1,12 @@
1
+ {% extends "base.html" %}
2
+
3
+ {% block content %}
4
+
5
+ <div class="row-fluid">
6
+ <div id="main-content" class="span12">
7
+ <h1 id="404-page-not-found" style="text-align: center">404</h1>
8
+ <p style="text-align: center"><strong>{% trans %}Page not found{% endtrans %}</strong></p>
9
+ </div>
10
+ </div>
11
+
12
+ {% endblock %}
@@ -0,0 +1 @@
1
+ __version__ = '1.6.5'
@@ -0,0 +1,251 @@
1
+ <!DOCTYPE html>
2
+ <html lang="{{ config.theme.locale|default('en') }}" data-bs-theme="{{ config.theme.color_mode }}">
3
+ <head>
4
+ {%- block site_meta %}
5
+ <meta charset="utf-8">
6
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
7
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
8
+ {% if page and page.is_homepage %}<meta name="description" content="{{ config.site_description }}">{% endif %}
9
+ {% if config.site_author %}<meta name="author" content="{{ config.site_author }}">{% endif %}
10
+ {% if page and page.canonical_url %}<link rel="canonical" href="{{ page.canonical_url }}">{% endif %}
11
+ {% if config.site_favicon %}<link rel="shortcut icon" href="{{ config.site_favicon|url }}">
12
+ {% else %}<link rel="shortcut icon" href="{{ 'img/favicon.ico'|url }}">{% endif %}
13
+ {%- endblock %}
14
+
15
+ {%- block htmltitle %}
16
+ <title>{% if page and page.title and not page.is_homepage %}{{ page.title }} - {% endif %}{{ config.site_name }}</title>
17
+ {%- endblock %}
18
+
19
+ {%- block styles %}
20
+ <link href="{{ 'css/bootstrap.min.css'|url }}" rel="stylesheet">
21
+ <link href="{{ 'css/fontawesome.min.css'|url }}" rel="stylesheet">
22
+ <link href="{{ 'css/brands.min.css'|url }}" rel="stylesheet">
23
+ <link href="{{ 'css/solid.min.css'|url }}" rel="stylesheet">
24
+ <link href="{{ 'css/v4-font-face.min.css'|url }}" rel="stylesheet">
25
+ <link href="{{ 'css/base.css'|url }}" rel="stylesheet">
26
+ {%- if config.theme.highlightjs %}
27
+ <link id="hljs-light" rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/styles/{{ config.theme.hljs_style }}.min.css" {% if config.theme.color_mode != "light" %}disabled{% endif %}>
28
+ <link id="hljs-dark" rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/styles/{{ config.theme.hljs_style_dark }}.min.css" {% if config.theme.color_mode != "dark" %}disabled{% endif %}>
29
+ {%- endif %}
30
+ {%- for path in config.extra_css %}
31
+ <link href="{{ path|url }}" rel="stylesheet">
32
+ {%- endfor %}
33
+ {%- endblock %}
34
+
35
+ {%- block libs %}
36
+ {%- if config.theme.highlightjs %}
37
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/highlight.min.js"></script>
38
+ {%- for lang in config.theme.hljs_languages %}
39
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/languages/{{lang}}.min.js"></script>
40
+ {%- endfor %}
41
+ <script>hljs.highlightAll();</script>
42
+ {%- endif %}
43
+ {%- endblock %}
44
+
45
+ {%- block analytics %}
46
+ {%- if config.theme.analytics.gtag %}
47
+ <script async src="https://www.googletagmanager.com/gtag/js?id={{ config.theme.analytics.gtag }}"></script>
48
+ <script>
49
+ window.dataLayer = window.dataLayer || [];
50
+ function gtag(){dataLayer.push(arguments);}
51
+ gtag('js', new Date());
52
+
53
+ gtag('config', {{ config.theme.analytics.gtag|tojson }});
54
+ </script>
55
+ {%- elif config.google_analytics %}
56
+ <script>
57
+ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
58
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
59
+ m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
60
+ })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
61
+
62
+ ga('create', {{ config.google_analytics[0]|tojson }}, {{ config.google_analytics[1]|tojson }});
63
+ ga('send', 'pageview');
64
+ </script>
65
+ {%- endif %}
66
+ {%- endblock %}
67
+
68
+ {%- block extrahead %} {% endblock %}
69
+ </head>
70
+
71
+ <body{% if page and page.is_homepage %} class="homepage"{% endif %}>
72
+ <div class="navbar fixed-top navbar-expand-lg navbar-{% if config.theme.nav_style == "light" %}light{% else %}dark{% endif %} bg-{{ config.theme.nav_style }}">
73
+ <div class="container">
74
+
75
+ {%- block site_name %}
76
+ <a class="navbar-brand" href="{{ nav.homepage.url|url }}">{{ config.site_name }}</a>
77
+ {%- endblock %}
78
+
79
+ {%- if nav|length>1 or (page and (page.next_page or page.previous_page)) or config.repo_url %}
80
+ <!-- Expander button -->
81
+ <button type="button" class="navbar-toggler" data-bs-toggle="collapse" data-bs-target="#navbar-collapse" aria-controls="navbar-collapse" aria-expanded="false" aria-label="Toggle navigation">
82
+ <span class="navbar-toggler-icon"></span>
83
+ </button>
84
+ {%- endif %}
85
+
86
+ <!-- Expanded navigation -->
87
+ <div id="navbar-collapse" class="navbar-collapse collapse">
88
+ {%- block site_nav %}
89
+ {%- if nav|length>1 %}
90
+ <!-- Main navigation -->
91
+ <ul class="nav navbar-nav">
92
+ {%- for nav_item in nav %}
93
+ {%- if nav_item.children %}
94
+ <li class="nav-item dropdown">
95
+ <a href="#" class="nav-link dropdown-toggle{% if nav_item.active %} active" aria-current="page{% endif %}" role="button" data-bs-toggle="dropdown" aria-expanded="false">{{ nav_item.title }}</a>
96
+ <ul class="dropdown-menu">
97
+ {%- for nav_item in nav_item.children %}
98
+ {% include "nav-sub.html" %}
99
+ {%- endfor %}
100
+ </ul>
101
+ </li>
102
+ {%- else %}
103
+ <li class="nav-item">
104
+ <a href="{{ nav_item.url|url }}" class="nav-link{% if nav_item.active %} active" aria-current="page{% endif %}">{{ nav_item.title }}</a>
105
+ </li>
106
+ {%- endif %}
107
+ {%- endfor %}
108
+ </ul>
109
+ {%- endif %}
110
+ {%- endblock %}
111
+
112
+ <ul class="nav navbar-nav ms-md-auto">
113
+ {%- block search_button %}
114
+ {%- if 'search' in config.plugins %}
115
+ <li class="nav-item">
116
+ <a href="#" class="nav-link" data-bs-toggle="modal" data-bs-target="#properdocs_search_modal">
117
+ <i class="fa fa-search"></i> {% trans %}Search{% endtrans %}
118
+ </a>
119
+ </li>
120
+ {%- endif %}
121
+ {%- endblock %}
122
+
123
+ {%- block next_prev %}
124
+ {%- if page and (page.next_page or page.previous_page) %}
125
+ <li class="nav-item">
126
+ <a rel="prev" {% if page.previous_page %}href="{{ page.previous_page.url|url }}" class="nav-link"{% else %}class="nav-link disabled"{% endif %}>
127
+ <i class="fa fa-arrow-left"></i> {% trans %}Previous{% endtrans %}
128
+ </a>
129
+ </li>
130
+ <li class="nav-item">
131
+ <a rel="next" {% if page.next_page %}href="{{ page.next_page.url|url }}" class="nav-link"{% else %}class="nav-link disabled"{% endif %}>
132
+ {% trans %}Next{% endtrans %} <i class="fa fa-arrow-right"></i>
133
+ </a>
134
+ </li>
135
+ {%- endif %}
136
+ {%- endblock %}
137
+
138
+ {%- block repo %}
139
+ {%- if page and page.edit_url %}
140
+ <li class="nav-item">
141
+ <a href="{{ page.edit_url }}" class="nav-link">
142
+ {%- if config.repo_name == 'GitHub' -%}
143
+ <i class="fa-brands fa-github"></i> {% trans repo_name=config.repo_name %}Edit on {{ repo_name }}{% endtrans %}
144
+ {%- elif config.repo_name == 'Bitbucket' -%}
145
+ <i class="fa-brands fa-bitbucket"></i> {% trans repo_name=config.repo_name %}Edit on {{ repo_name }}{% endtrans %}
146
+ {%- elif config.repo_name == 'GitLab' -%}
147
+ <i class="fa-brands fa-gitlab"></i> {% trans repo_name=config.repo_name %}Edit on {{ repo_name }}{% endtrans %}
148
+ {%- elif config.repo_name -%}
149
+ {% trans repo_name=config.repo_name%}Edit on {{ repo_name }}{% endtrans %}
150
+ {% else %}
151
+ {% trans repo_name=config.repo_name%}Edit{% endtrans %}
152
+ {%- endif -%}
153
+ </a>
154
+ </li>
155
+ {%- elif config.repo_url %}
156
+ <li class="nav-item">
157
+ <a href="{{ config.repo_url }}" class="nav-link">
158
+ {%- if config.repo_name == 'GitHub' -%}
159
+ <i class="fa-brands fa-github"></i> {{ config.repo_name }}
160
+ {%- elif config.repo_name == 'Bitbucket' -%}
161
+ <i class="fa-brands fa-bitbucket"></i> {{ config.repo_name }}
162
+ {%- elif config.repo_name == 'GitLab' -%}
163
+ <i class="fa-brands fa-gitlab"></i> {{ config.repo_name }}
164
+ {%- else -%}
165
+ {{ config.repo_name }}
166
+ {%- endif -%}
167
+ </a>
168
+ </li>
169
+ {%- endif %}
170
+ {%- endblock %}
171
+ {%- if config.theme.user_color_mode_toggle %}
172
+ <li class="nav-item dropdown">
173
+ <button id="theme-menu" aria-expanded="false" data-bs-toggle="dropdown" data-bs-display="static" aria-label="Toggle theme" class="nav-link dropdown-toggle">
174
+ <i class="fa-solid fa-circle-half-stroke fa-fw"></i>
175
+ <span class="d-lg-none ms-2">Toggle theme</span>
176
+ </button>
177
+ <ul class="dropdown-menu dropdown-menu-end">
178
+ <li>
179
+ <button class="dropdown-item d-flex align-items-center" data-bs-theme-value="light" aria-pressed="{% if config.theme.color_mode == 'light' %}true{% else %}false{% endif %}">
180
+ <i class="fa-solid fa-sun fa-fw"></i>
181
+ <span class="ms-2">Light</span>
182
+ <i class="fa-solid fa-check ms-auto{% if config.theme.color_mode != 'light' %} d-none{% endif %}"></i>
183
+ </button>
184
+ </li>
185
+ <li>
186
+ <button class="dropdown-item d-flex align-items-center" data-bs-theme-value="dark" aria-pressed="{% if config.theme.color_mode == 'dark' %}true{% else %}false{% endif %}">
187
+ <i class="fa-solid fa-moon fa-fw"></i>
188
+ <span class="ms-2">Dark</span>
189
+ <i class="fa-solid fa-check ms-auto{% if config.theme.color_mode != 'dark' %} d-none{% endif %}"></i>
190
+ </button>
191
+ </li>
192
+ <li>
193
+ <button class="dropdown-item d-flex align-items-center" data-bs-theme-value="auto" aria-pressed="{% if config.theme.color_mode == 'auto' %}true{% else %}false{% endif %}">
194
+ <i class="fa-solid fa-circle-half-stroke fa-fw"></i>
195
+ <span class="ms-2">Auto</span>
196
+ <i class="fa-solid fa-check ms-auto{% if config.theme.color_mode != 'auto' %} d-none{% endif %}"></i>
197
+ </button>
198
+ </li>
199
+ </ul>
200
+ </li>
201
+ {%- endif %}
202
+ </ul>
203
+ </div>
204
+ </div>
205
+ </div>
206
+ {%- if config.theme.color_mode != "light" or config.theme.user_color_mode_toggle %}
207
+ <script src="{{ 'js/darkmode.js'|url }}"></script>
208
+ {%- endif %}
209
+
210
+ <div class="container">
211
+ <div class="row">
212
+ {%- block content %}
213
+ <div class="col-md-3">{% include "toc.html" %}</div>
214
+ <div class="col-md-9" role="main">{% include "content.html" %}</div>
215
+ {%- endblock %}
216
+ </div>
217
+ </div>
218
+
219
+ <footer class="col-md-12">
220
+ {%- block footer %}
221
+ <hr>
222
+ {%- if config.copyright %}
223
+ <p>{{ config.copyright }}</p>
224
+ {%- endif %}
225
+ <p>{% trans properdocs_link='<a href="https://properdocs.org/">ProperDocs</a>' %}Documentation built with {{ properdocs_link }}.{% endtrans %}</p>
226
+ {%- endblock %}
227
+ </footer>
228
+
229
+ {%- block scripts %}
230
+ <script src="{{ 'js/bootstrap.bundle.min.js'|url }}"></script>
231
+ <script>
232
+ var base_url = {{ base_url|tojson }},
233
+ shortcuts = {{ config.theme.shortcuts|tojson }};
234
+ </script>
235
+ <script src="{{ 'js/base.js'|url }}"></script>
236
+ {%- for script in config.extra_javascript %}
237
+ {{ script|script_tag }}
238
+ {%- endfor %}
239
+ {%- endblock %}
240
+
241
+ {% if 'search' in config.plugins %}{%- include "search-modal.html" %}{% endif %}
242
+ {%- include "keyboard-modal.html" %}
243
+
244
+ </body>
245
+ </html>
246
+ {% if page and page.is_homepage %}
247
+ <!--
248
+ ProperDocs version : {{ mkdocs_version }}
249
+ Build Date UTC : {{ build_date_utc }}
250
+ -->
251
+ {% endif %}
@@ -0,0 +1,9 @@
1
+ {% if page.meta.source %}
2
+ <div class="source-links">
3
+ {% for filename in page.meta.source %}
4
+ <span class="label label-primary">{{ filename }}</span>
5
+ {% endfor %}
6
+ </div>
7
+ {% endif %}
8
+
9
+ {{ page.content }}
@@ -0,0 +1,366 @@
1
+ html {
2
+ /* The nav header is 3.5rem high, plus 20px for the margin-top of the
3
+ main container. */
4
+ scroll-padding-top: calc(3.5rem + 20px);
5
+ }
6
+
7
+ /* Replacement for `body { background-attachment: fixed; }`, which has
8
+ performance issues when scrolling on large displays. See #1394. */
9
+ body::before {
10
+ content: ' ';
11
+ position: fixed;
12
+ width: 100%;
13
+ height: 100%;
14
+ top: 0;
15
+ left: 0;
16
+ background-color: var(--bs-body-bg);
17
+ background: url(../img/grid.png) repeat-x;
18
+ will-change: transform;
19
+ z-index: -1;
20
+ }
21
+
22
+ body > .container {
23
+ margin-top: 20px;
24
+ min-height: 400px;
25
+ }
26
+
27
+ .navbar.fixed-top {
28
+ position: -webkit-sticky;
29
+ position: sticky;
30
+ }
31
+
32
+ .source-links {
33
+ float: right;
34
+ }
35
+
36
+ .col-md-9 img {
37
+ max-width: 100%;
38
+ display: inline-block;
39
+ padding: 4px;
40
+ line-height: 1.428571429;
41
+ background-color: var(--bs-secondary-bg-subtle);
42
+ border: 1px solid var(--bs-secondary-border-subtle);
43
+ border-radius: 4px;
44
+ margin: 20px auto 30px auto;
45
+ }
46
+
47
+ h1 {
48
+ color: inherit;
49
+ font-weight: 400;
50
+ font-size: 42px;
51
+ }
52
+
53
+ h2, h3, h4, h5, h6 {
54
+ color: inherit;
55
+ font-weight: 300;
56
+ }
57
+
58
+ hr {
59
+ border-top: 1px solid var(--bs-border-color);
60
+ opacity: 1;
61
+ }
62
+
63
+ pre, .rst-content tt {
64
+ max-width: 100%;
65
+ background-color: var(--bs-body-bg);
66
+ border: solid 1px var(--bs-border-color);
67
+ color: var(--bs-body-color);
68
+ overflow-x: auto;
69
+ }
70
+
71
+ code.code-large, .rst-content tt.code-large {
72
+ font-size: 90%;
73
+ }
74
+
75
+ code {
76
+ padding: 2px 5px;
77
+ background-color: rgba(var(--bs-body-bg-rgb), 0.75);
78
+ border: solid 1px var(--bs-border-color);
79
+ color: var(--bs-body-color);
80
+ white-space: pre-wrap;
81
+ word-wrap: break-word;
82
+ }
83
+
84
+ pre code {
85
+ display: block;
86
+ border: none;
87
+ white-space: pre;
88
+ word-wrap: normal;
89
+ font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
90
+ font-size: 12px;
91
+ }
92
+
93
+ kbd {
94
+ padding: 2px 4px;
95
+ font-size: 90%;
96
+ color: var(--bs-secondary-text-emphasis);
97
+ background-color: var(--bs-secondary-bg-subtle);
98
+ border-radius: 3px;
99
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);
100
+ box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);
101
+ }
102
+
103
+ a code {
104
+ color: inherit;
105
+ }
106
+
107
+ a:hover code, a:focus code {
108
+ color: inherit;
109
+ }
110
+
111
+ footer {
112
+ margin-top: 30px;
113
+ margin-bottom: 10px;
114
+ text-align: center;
115
+ font-weight: 200;
116
+ }
117
+
118
+ .modal-dialog {
119
+ margin-top: 60px;
120
+ }
121
+
122
+ /*
123
+ * Side navigation
124
+ *
125
+ * Scrollspy and affixed enhanced navigation to highlight sections and secondary
126
+ * sections of docs content.
127
+ */
128
+
129
+ .bs-sidebar.affix {
130
+ position: -webkit-sticky;
131
+ position: sticky;
132
+ /* The nav header is 3.5rem high, plus 20px for the margin-top of the
133
+ main container. */
134
+ top: calc(3.5rem + 20px);
135
+ }
136
+
137
+ .bs-sidebar.card {
138
+ padding: 0;
139
+ max-height: 90%;
140
+ overflow-y: auto;
141
+ }
142
+
143
+ /* Toggle (vertically flip) sidebar collapse icon */
144
+ .bs-sidebar .navbar-toggler span {
145
+ -moz-transform: scale(1, -1);
146
+ -webkit-transform: scale(1, -1);
147
+ -o-transform: scale(1, -1);
148
+ -ms-transform: scale(1, -1);
149
+ transform: scale(1, -1);
150
+ }
151
+
152
+ .bs-sidebar .navbar-toggler.collapsed span {
153
+ -moz-transform: scale(1, 1);
154
+ -webkit-transform: scale(1, 1);
155
+ -o-transform: scale(1, 1);
156
+ -ms-transform: scale(1, 1);
157
+ transform: scale(1, 1);
158
+ }
159
+
160
+ /* First level of nav */
161
+ .bs-sidebar > .navbar-collapse > .nav {
162
+ padding-top: 10px;
163
+ padding-bottom: 10px;
164
+ border-radius: 5px;
165
+ width: 100%;
166
+ }
167
+
168
+ /* All levels of nav */
169
+ .bs-sidebar .nav > li > a {
170
+ display: block;
171
+ padding: 5px 20px;
172
+ z-index: 1;
173
+ }
174
+ .bs-sidebar .nav > li > a:hover,
175
+ .bs-sidebar .nav > li > a:focus {
176
+ text-decoration: none;
177
+ border-right: 1px solid;
178
+ }
179
+ .bs-sidebar .nav > li > a.active,
180
+ .bs-sidebar .nav > li > a.active:hover,
181
+ .bs-sidebar .nav > li > a.active:focus {
182
+ font-weight: bold;
183
+ background-color: transparent;
184
+ border-right: 1px solid;
185
+ }
186
+
187
+ .bs-sidebar .nav .nav .nav {
188
+ margin-left: 1em;
189
+ }
190
+
191
+ .bs-sidebar .nav > li > a {
192
+ font-weight: bold;
193
+ }
194
+
195
+ .bs-sidebar .nav .nav > li > a {
196
+ font-weight: normal;
197
+ }
198
+
199
+ .headerlink {
200
+ font-family: FontAwesome;
201
+ font-size: 14px;
202
+ display: none;
203
+ padding-left: .5em;
204
+ text-decoration: none;
205
+ vertical-align: middle;
206
+ }
207
+
208
+ h1:hover .headerlink, h2:hover .headerlink, h3:hover .headerlink, h4:hover .headerlink, h5:hover .headerlink, h6:hover .headerlink {
209
+ display:inline-block;
210
+ }
211
+
212
+ blockquote {
213
+ padding-left: 10px;
214
+ border-left: 4px solid #e6e6e6;
215
+ }
216
+
217
+ .admonition, details {
218
+ padding: 15px;
219
+ margin-bottom: 20px;
220
+ border: 1px solid transparent;
221
+ border-radius: 4px;
222
+ text-align: left;
223
+ }
224
+
225
+ .admonition.note, details.note {
226
+ color: var(--bs-primary-text-emphasis);
227
+ background-color: var(--bs-primary-bg-subtle);
228
+ border-color: var(--bs-primary-border-subtle);
229
+ }
230
+
231
+ .admonition.note h1, .admonition.note h2, .admonition.note h3,
232
+ .admonition.note h4, .admonition.note h5, .admonition.note h6,
233
+ details.note h1, details.note h2, details.note h3,
234
+ details.note h4, details.note h5, details.note h6 {
235
+ color: var(--bs-primary-text-emphasis);
236
+ }
237
+
238
+ .admonition.info, details.info {
239
+ color: var(--bs-info-text-emphasis);
240
+ background-color: var(--bs-info-bg-subtle);
241
+ border-color: var(--bs-info-border-subtle);
242
+ }
243
+
244
+ .admonition.info h1, .admonition.info h2, .admonition.info h3,
245
+ .admonition.info h4, .admonition.info h5, .admonition.info h6,
246
+ details.info h1, details.info h2, details.info h3,
247
+ details.info h4, details.info h5, details.info h6 {
248
+ color: var(--bs-info-text-emphasis);
249
+ }
250
+
251
+ .admonition.warning, details.warning {
252
+ color: var(--bs-warning-text-emphasis);
253
+ background-color: var(--bs-warning-bg-subtle);
254
+ border-color: var(--bs-warning-border-subtle);
255
+ }
256
+
257
+ .admonition.warning h1, .admonition.warning h2, .admonition.warning h3,
258
+ .admonition.warning h4, .admonition.warning h5, .admonition.warning h6,
259
+ details.warning h1, details.warning h2, details.warning h3,
260
+ details.warning h4, details.warning h5, details.warning h6 {
261
+ color: var(--bs-warning-text-emphasis);
262
+ }
263
+
264
+ .admonition.danger, details.danger {
265
+ color: var(--bs-danger-text-emphasis);
266
+ background-color: var(--bs-danger-bg-subtle);
267
+ border-color: var(--bs-danger-border-subtle);
268
+ }
269
+
270
+ .admonition.danger h1, .admonition.danger h2, .admonition.danger h3,
271
+ .admonition.danger h4, .admonition.danger h5, .admonition.danger h6,
272
+ details.danger h1, details.danger h2, details.danger h3,
273
+ details.danger h4, details.danger h5, details.danger h6 {
274
+ color: var(--bs-danger-text-emphasis);
275
+ }
276
+
277
+ .admonition, details {
278
+ color: var(--bs-light-text-emphasis);
279
+ background-color: var(--bs-light-bg-subtle);
280
+ border-color: var(--bs-light-border-subtle);
281
+ }
282
+
283
+ .admonition h1, .admonition h2, .admonition h3,
284
+ .admonition h4, .admonition h5, .admonition h6,
285
+ details h1, details h2, details h3,
286
+ details h4, details h5, details h6 {
287
+ color: var(--bs-light-text-emphasis);
288
+ }
289
+
290
+ .admonition-title, summary {
291
+ font-weight: bold;
292
+ text-align: left;
293
+ }
294
+
295
+ .admonition>p:last-child, details>p:last-child {
296
+ margin-bottom: 0;
297
+ }
298
+
299
+ @media (max-width: 991.98px) {
300
+ .navbar-collapse.show {
301
+ overflow-y: auto;
302
+ max-height: calc(100vh - 3.5rem);
303
+ }
304
+ }
305
+
306
+ .dropdown-item.open {
307
+ color: var(--bs-dropdown-link-active-color);
308
+ background-color: var(--bs-dropdown-link-active-bg);
309
+ }
310
+
311
+ .dropdown-submenu > .dropdown-menu {
312
+ margin: 0 0 0 1.5rem;
313
+ padding: 0;
314
+ border-width: 0;
315
+ }
316
+
317
+ .dropdown-submenu > a::after {
318
+ display: block;
319
+ content: " ";
320
+ float: right;
321
+ width: 0;
322
+ height: 0;
323
+ border-color: transparent;
324
+ border-style: solid;
325
+ border-width: 5px 0 5px 5px;
326
+ border-left-color: var(--bs-dropdown-link-active-color);
327
+ margin-top: 5px;
328
+ margin-right: -10px;
329
+ }
330
+
331
+ .dropdown-submenu:hover > a::after {
332
+ border-left-color: var(--bs-dropdown-link-active-color);
333
+ }
334
+
335
+ @media (min-width: 992px) {
336
+ .dropdown-menu {
337
+ overflow-y: auto;
338
+ max-height: calc(100vh - 3.5rem);
339
+ }
340
+
341
+ .dropdown-submenu {
342
+ position: relative;
343
+ }
344
+
345
+ .dropdown-submenu > .dropdown-menu {
346
+ position: fixed !important;
347
+ margin-top: -9px;
348
+ margin-left: -2px;
349
+ border-width: 1px;
350
+ padding: 0.5rem 0;
351
+ }
352
+
353
+ .dropdown-submenu.pull-left {
354
+ float: none;
355
+ }
356
+
357
+ .dropdown-submenu.pull-left > .dropdown-menu {
358
+ left: -100%;
359
+ margin-left: 10px;
360
+ }
361
+ }
362
+
363
+ @media print {
364
+ /* Remove sidebar when print */
365
+ .col-md-3 { display: none; }
366
+ }