digitalhealthhumanities-toolkit-theme 0.2.0 → 0.2.1
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.
- checksums.yaml +4 -4
- data/_includes/head.html +2 -0
- data/_includes/heading.html +4 -4
- data/_sass/digitalhealthhumanities-toolkit-theme.scss +6 -8
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f1378c75a4e01547d8879f560a807dbd8b4ee18b3d2765e754e454c5308a9e9c
|
|
4
|
+
data.tar.gz: d2a7f5e33377f82ce0e604f33cd133888ea32026f6d5c4a6ffa8e4149615d81c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 930dc547db2d04cfbab104f5c19d522b93fddf9e5183cf5553ffae90ea5f7c55adfb216b5a114fceccd2460db7ba3f821016b2e92b38e7d59d8549a749047289
|
|
7
|
+
data.tar.gz: b3da5148de632eb56dc772ace556456810e54f65e09ba5d9bb8d91ae2058ec1293a85bb8a1fc9f5083632c552c67393405f2b4ccc3bb3634c11ba79ff42b5744
|
data/_includes/head.html
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
<!-- Importing Bootstrap CSS -->
|
|
3
3
|
<meta charset="utf-8">
|
|
4
4
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
5
|
+
<meta name="docsearch:language" content="en">
|
|
6
|
+
<title>{{ include.title }}</title>
|
|
5
7
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet"
|
|
6
8
|
integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
|
|
7
9
|
|
data/_includes/heading.html
CHANGED
|
@@ -16,11 +16,11 @@
|
|
|
16
16
|
{% for item in site.menu %}
|
|
17
17
|
{% if item.sub %}
|
|
18
18
|
<li class='nav-item dropdown'>
|
|
19
|
-
<
|
|
20
|
-
data-bs-toggle='dropdown' aria-haspopup='true' aria-expanded='false'>
|
|
19
|
+
<button class='nav-link dropdown-toggle' type="button" id='dhht-{{ item.label | slugify }}-dropdown'
|
|
20
|
+
data-bs-toggle='dropdown' aria-haspopup='true' aria-expanded='false' aria-controls="#dhht-{{ item.label | slugify }}-dropdown-item">
|
|
21
21
|
{{ item.label }}
|
|
22
|
-
</
|
|
23
|
-
<ul class='dropdown-menu'
|
|
22
|
+
</button>
|
|
23
|
+
<ul class='dropdown-menu' id="dhht-{{ item.label | slugify }}-dropdown-item">
|
|
24
24
|
{% for sub in item.sub %}
|
|
25
25
|
<li>
|
|
26
26
|
<a class='dropdown-item' href='{{ sub.link | absolute_url }}'>{{ sub.label }}</a>
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
// General CSS
|
|
112
112
|
|
|
113
113
|
a {
|
|
114
|
-
color: #
|
|
114
|
+
color: #0F388A;
|
|
115
115
|
font-weight: 500;
|
|
116
116
|
|
|
117
117
|
}
|
|
@@ -178,13 +178,11 @@ pre code {
|
|
|
178
178
|
}
|
|
179
179
|
|
|
180
180
|
.dhht-card {
|
|
181
|
+
a {
|
|
182
|
+
color: #000000
|
|
183
|
+
}
|
|
181
184
|
.card-header {
|
|
182
|
-
|
|
183
|
-
color: #ffffff;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
color: #ffffff;
|
|
187
|
-
background-color: #16A0AC;
|
|
185
|
+
background-color: #60D0DA;
|
|
188
186
|
}
|
|
189
187
|
}
|
|
190
188
|
|
|
@@ -241,5 +239,5 @@ pre code {
|
|
|
241
239
|
}
|
|
242
240
|
|
|
243
241
|
p>.term {
|
|
244
|
-
color: #
|
|
242
|
+
color: #0F388A
|
|
245
243
|
}
|