iugu-docs-theme 0.2.0 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 076473a2c1c8115f9270f5f3c44cf8dc59685240d63635e1126b5bde837850e7
4
- data.tar.gz: 91d1bd0f38610cfc95a0dcd686bee4e14dbb63b53788beb68859ba4d9570609e
3
+ metadata.gz: 51b524ab042d68f7823e7fc3a7d778391acfdb2cdc70ff66ab39595d01133145
4
+ data.tar.gz: 4873328a2259802b4446a9cb03e72ef1e4e037f0c20605cba36e21936f6e1c06
5
5
  SHA512:
6
- metadata.gz: 171d56988bdf4ea22020fc92a84a7f792ea074ae0a2115bd94516c7e27440afc47f58402116e0a01035f2d19c0a3f278b197d80e772b1fd85e6b24e55671e788
7
- data.tar.gz: b356e5a4e5c98162b9b0bf7d5f7d917db7f8e8c6622124dea9a2a8eeb9cbdd57cda426414f09d4a4c04115074189ab04160980119751dcec31616cecc013aa18
6
+ metadata.gz: 89e90a68d0f09baf0e4924034b215b0e7356bfb834681a22d9e3aa1ab50518b97a3d8c3d5374b42e971813651322ee59e6a5b3e18be81ce8b8c0cbec2f91e8f3
7
+ data.tar.gz: 1f38f532ef882c2126d4eb16af5887ab7203b44745b348c0d16eff7091009291e186457ad0bc71bf4394abd689c2f71d00ab8de74d124e8c7732a3c5f88bdf3c
data/_config.yml CHANGED
@@ -1,12 +1,6 @@
1
1
  plugins:
2
2
  - jekyll-toc
3
3
  - jekyll-polyglot
4
- - navigation_widget
5
- - button_processor
6
- - check_required_filter
7
- - collapse_link_tag
8
- - doc_toc_filter
9
- - type_style_filter
10
4
 
11
5
  permalink: /:slug/
12
6
 
@@ -7,7 +7,12 @@
7
7
  {% for branch in tree %}
8
8
  {% if branch.title %}
9
9
  <li class="py-1 flex border-l-4 hover:border-neutral-800 justify-between border-neutral-100 dark:border-neutral-900 hover:dark:border-neutral-200 hover:text-black hover:dark:text-white text-neutral-600 dark:text-neutral-400">
10
- <a class="pl-2 toc-h1 font-medium" href="{{ site.baseurl }}{{ branch.url }}"> {{ branch.title }}</a>
10
+ {% if branch.url contains '://' %}
11
+ <a class="pl-2 toc-h1 font-medium" href="{{ branch.url }}"> {{ branch.title }}</a>
12
+ {% else %}
13
+ <a class="pl-2 toc-h1 font-medium" href="{{ site.baseurl }}{{ branch.url }}"> {{ branch.title }}</a>
14
+ {% endif %}
15
+
11
16
  {% if branch.method %}
12
17
  <span class="font-semibold {{ site.data.method-colors[branch.method] }} uppercase text-center text-white h-5 w-12 py-0.5 px-1 rounded-md text-[10px]">{{ branch.method }}</span>
13
18
  {% endif %}
@@ -73,7 +73,7 @@
73
73
  {% assign right_margin = 'md:mr-[22ch]' %}
74
74
  {% endif %}
75
75
  <div x-data :class="{'lg:ml-[2ch]': !$store.sidebarOpen, 'lg:ml-[25ch]': $store.sidebarOpen }" class="{{ left_margin }} {{right_margin}} ">
76
- <article class="antialiased prose max-w-[120ch] ml-auto mr-auto px-10 mb-10 dark:prose-invert prose-headings:font-semibold prose-code:text-gray-500 prose-pre:bg-neutral-800">
76
+ <article class="antialiased prose max-w-[120ch] ml-auto mr-auto p-10 dark:prose-invert prose-headings:font-light prose-code:text-gray-500 prose-pre:bg-neutral-800">
77
77
  {{ content }}
78
78
  {% if reversed_posts %}
79
79
  <a href="{{site.baseurl}}{{reversed_posts.first.url}}" class="navigation navigation-next navigation-unique" aria-label="Next page: {{reversed_posts.first.title}}">
@@ -3322,10 +3322,6 @@ div.mermaid{
3322
3322
  margin-bottom: 0.25rem;
3323
3323
  }
3324
3324
 
3325
- .mb-10{
3326
- margin-bottom: 2.5rem;
3327
- }
3328
-
3329
3325
  .mb-2{
3330
3326
  margin-bottom: 0.5rem;
3331
3327
  }
@@ -4295,11 +4291,6 @@ div.mermaid{
4295
4291
  padding-right: 0.25rem;
4296
4292
  }
4297
4293
 
4298
- .px-10{
4299
- padding-left: 2.5rem;
4300
- padding-right: 2.5rem;
4301
- }
4302
-
4303
4294
  .px-2{
4304
4295
  padding-left: 0.5rem;
4305
4296
  padding-right: 0.5rem;
@@ -5078,8 +5069,8 @@ div.mermaid{
5078
5069
  background-color: rgb(38 38 38 / var(--tw-bg-opacity));
5079
5070
  }
5080
5071
 
5081
- .prose-headings\:font-semibold :is(:where(h1, h2, h3, h4, h5, h6, th):not(:where([class~="not-prose"],[class~="not-prose"] *))){
5082
- font-weight: 600;
5072
+ .prose-headings\:font-light :is(:where(h1, h2, h3, h4, h5, h6, th):not(:where([class~="not-prose"],[class~="not-prose"] *))){
5073
+ font-weight: 300;
5083
5074
  }
5084
5075
 
5085
5076
  .prose-code\:text-gray-500 :is(:where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))){
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: iugu-docs-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patrick Negri
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-07 00:00:00.000000000 Z
11
+ date: 2024-02-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll