|
9 | 9 | * Imports to aggregate everything together.
|
10 | 10 | */
|
11 | 11 |
|
12 |
| -@import url("basic.css"); |
| 12 | +@import url("./basic.css"); |
13 | 13 |
|
14 | 14 | {% if theme_bootstrap_version == "3" %}
|
15 |
| - {% set bootstrap_version, bootstrap_additional_css = "3.3.6", "theme" %} |
16 |
| - {% set bs_span_prefix = "col-md-" %} |
| 15 | + {% set bootstrap_version, bootstrap_additional_css = "3.3.7", "theme" %} |
17 | 16 | {% else %}
|
18 | 17 | {% set bootstrap_version, bootstrap_additional_css = "2.3.2", "responsive" %}
|
19 |
| - {% set bs_span_prefix = "span" %} |
20 | 18 | {% endif %}
|
21 | 19 |
|
22 | 20 | {% if theme_bootswatch_theme and theme_bootswatch_theme != "\"\"" %}
|
23 | 21 | {# BS2 needs "bootstrap-responsive.css". BS3 doesn't. #}
|
24 | 22 | {% if theme_bootstrap_version == "3" %}
|
25 |
| - @import url("{{ 'bootswatch-' + bootstrap_version + '/' + theme_bootswatch_theme + '/bootstrap.min.css' }}"); |
| 23 | + @import url("{{ './bootswatch-' + bootstrap_version + '/' + theme_bootswatch_theme + '/bootstrap.min.css' }}"); |
26 | 24 | {% else %}
|
27 |
| - @import url("{{ 'bootswatch-' + bootstrap_version + '/' + theme_bootswatch_theme + '/bootstrap.min.css' }}"); |
28 |
| - @import url("{{ 'bootstrap-' + bootstrap_version + '/css/bootstrap-' + bootstrap_additional_css + '.min.css' }}"); |
| 25 | + @import url("{{ './bootswatch-' + bootstrap_version + '/' + theme_bootswatch_theme + '/bootstrap.min.css' }}"); |
| 26 | + @import url("{{ './bootstrap-' + bootstrap_version + '/css/bootstrap-' + bootstrap_additional_css + '.min.css' }}"); |
29 | 27 | {% endif %}
|
30 | 28 | {% else %}
|
31 |
| - @import url("{{ 'bootstrap-' + bootstrap_version + '/css/bootstrap.min.css' }}"); |
32 |
| - @import url("{{ 'bootstrap-' + bootstrap_version + '/css/bootstrap-' + bootstrap_additional_css + '.min.css' }}"); |
33 |
| -{% endif %} |
34 |
| - |
35 |
| -{% if bootswatch_css_custom %} |
36 |
| - {%- for css_custom in bootswatch_css_custom %} |
37 |
| - @import url("{{ css_custom }}"); |
38 |
| - {%- endfor %} |
| 29 | + @import url("{{ './bootstrap-' + bootstrap_version + '/css/bootstrap.min.css' }}"); |
| 30 | + @import url("{{ './bootstrap-' + bootstrap_version + '/css/bootstrap-' + bootstrap_additional_css + '.min.css' }}"); |
39 | 31 | {% endif %}
|
40 | 32 |
|
41 | 33 | /*
|
@@ -125,6 +117,10 @@ div.highlight {
|
125 | 117 | background: none;
|
126 | 118 | }
|
127 | 119 |
|
| 120 | +a.headerlink { |
| 121 | + margin-left: 0.25em; |
| 122 | +} |
| 123 | + |
128 | 124 | a.footnote-reference {
|
129 | 125 | vertical-align: super;
|
130 | 126 | font-size: 75%;
|
|
0 commit comments