intia-theme 0.1.56 → 0.1.59

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c3d3b98390c39c7b9199ccb9ab7a697e00b9dfcbef1577c558243fb729f9ce8c
4
- data.tar.gz: cf2f452d0da883c2f4b4bc3c9ab4857653f695af018c4986c6a31316f4a7a7be
3
+ metadata.gz: 8120afc823ed19954213a27ed562bb9220f65995ed47ec712445b021cd282cbc
4
+ data.tar.gz: '001232408b601af05198b5e125cafe2a825eeaa61b869ace16de8207c106373a'
5
5
  SHA512:
6
- metadata.gz: 1c4344e05d1df9f424d720635a31f4f09300f4d1a45a02d4b038515973863331e902492706bcb4d68c63b4c86eab638934667e76f7619f232ef9ee779a6e2f89
7
- data.tar.gz: c47d43986c8970ec0ebec47ddc651c1ae43812968dfc5948957b2ed46fac03df90a897dcd7359f96dae5505b8e1cb3f2296e2810e3b90426d59e6b6d51e68aa8
6
+ metadata.gz: 56b9b88b8e21f59be983529e0601c9217a49daf5371ee0077a696fb0d04d51008774bbfc398b6007b7278b892f22596c547af9cac707e974e56aa97241ae9d92
7
+ data.tar.gz: '0607880a655490ef29ce7e039fd2c342e2766186cc07f0f4d1d3f8dd1340d382a32cc10db968ac240f5713525f84359c842aa792d5662d77d809623ee79c1abc'
data/_includes/head.html CHANGED
@@ -11,8 +11,9 @@
11
11
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma-carousel@4.0.3/dist/css/bulma-carousel.min.css">
12
12
  {% unless site.hide_radar %}
13
13
  <script src="https://d3js.org/d3.v5.min.js"></script>
14
- <script src="https://methods.intia.de/src/radar/radar.js"></script>
15
- <link rel="stylesheet" href="https://methods.intia.de/src/radar/radar.css" />
14
+ <!--<script src="https://methods.intia.de/src/radar/radar.js"></script>-->
15
+ <script src="{{ site.baseurl }}/assets/js/radar.js"></script>
16
+ <!--<link rel="stylesheet" href="https://methods.intia.de/src/radar/radar.css" />-->
16
17
  {% endunless %}
17
18
  {% unless site.hide_share_buttons %}
18
19
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma-social@1/bin/bulma-social.min.css">
@@ -2,7 +2,7 @@
2
2
  <div class="container">
3
3
  <div class="navbar-brand">
4
4
  <a href="{{ site.baseurl }}/" class="">
5
- <img src="{{ site.baseurl }}/assets/img/logo-black.png">
5
+ <img id="navbar-logo" src="/assets/img/logo-horizontal-short.png">
6
6
  </a>
7
7
  <a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false" data-target="navMenu"
8
8
  :class="{ 'is-active': openNav }" x-on:click="openNav = !openNav">
@@ -11,8 +11,8 @@ The Default layout that everything is using
11
11
  <body>
12
12
  {% include header.html %}
13
13
  <div class="arrow-image is-pulled-left is-hidden-mobile">
14
- <img id="scroll-up" src="{{ site.baseurl }}/assets/img/arrow-down.png" alt="placeholder">
15
- <img id="scroll-down" src="{{ site.baseurl }}/assets/img/arrow-down.png" alt="placeholder" class="is-pointed-down">
14
+ <img id="scroll-up" src="{{ site.baseurl }}/assets/img/arrow-up.svg" alt="placeholder">
15
+ <img id="scroll-down" src="{{ site.baseurl }}/assets/img/arrow-up.svg" alt="placeholder" class="is-pointed-down">
16
16
  </div>
17
17
  <div class="accessibility-image is-pulled-left is-hidden-mobile">
18
18
  <a id="changeFontsize"class="button is-rounded is-dark">
data/_sass/_icons.scss CHANGED
@@ -14,6 +14,14 @@
14
14
  background: url(/assets/img/icons/external.svg) no-repeat;
15
15
  transform: rotate(-90deg);
16
16
  }
17
+ .icon-open-dropdown:before {
18
+ @extend .custom-button-icons;
19
+ background: url(/assets/img/icons/open-dropdown.svg) no-repeat;
20
+ }
21
+ .icon-close-dropdown:before {
22
+ @extend .custom-button-icons;
23
+ background: url(/assets/img/icons/close-dropdown.svg) no-repeat;
24
+ }
17
25
  .icon-search:before {
18
26
  @extend .custom-button-icons;
19
27
  background: url(/assets/img/icons/search.svg) no-repeat;