Jeremy Thomas преди 7 години
родител
ревизия
67117ffed9

+ 2 - 3
docs/_config.yml

@@ -21,8 +21,7 @@ mdi:           https://cdn.materialdesignicons.com/2.0.46/css/materialdesignicon
 # Variables
 
 documentation: "/documentation/overview/start/"
-download:      https://github.com/jgthms/bulma/releases/download/0.6.0/bulma-0.6.0.zip
+download:      https://github.com/jgthms/bulma/releases/download/0.6.1/bulma-0.6.1.zip
 github:        https://github.com/jgthms/bulma
 twitter:       https://twitter.com/jgthms
-version:       0.6.0
-vernum:        60
+version:       0.6.1

+ 3 - 9
docs/_includes/navbar.html

@@ -52,15 +52,9 @@
           <a class="navbar-item {% if page.doc-tab == 'elements' %}is-active{% endif %}" href="{{ site.url }}/documentation/elements/box/">
             Elements
           </a>
-          {% if site.vernum >= 43 %}
-            <a class="navbar-item {% if page.doc-tab == 'components' %}is-active{% endif %}" href="{{ site.url }}/documentation/components/breadcrumb/">
-              Components
-            </a>
-          {% else %}
-            <a class="navbar-item {% if page.doc-tab == 'components' %}is-active{% endif %}" href="{{ site.url }}/documentation/components/card/">
-              Components
-            </a>
-          {% endif %}
+          <a class="navbar-item {% if page.doc-tab == 'components' %}is-active{% endif %}" href="{{ site.url }}/documentation/components/breadcrumb/">
+            Components
+          </a>
           <hr class="navbar-divider">
           <div class="navbar-item">
             <div>

+ 1 - 5
docs/_layouts/documentation.html

@@ -47,11 +47,7 @@ route: documentation
             <a href="{{ site.url }}/documentation/elements/box/">Elements</a>
           </li>
           <li {% if page.doc-tab == 'components' %}class="is-active"{% endif %}>
-            {% if site.vernum >= 43 %}
-              <a href="{{ site.url }}/documentation/components/breadcrumb/">Components</a>
-            {% else %}
-              <a href="{{ site.url }}/documentation/components/card/">Components</a>
-            {% endif %}
+            <a href="{{ site.url }}/documentation/components/breadcrumb/">Components</a>
           </li>
         </ul>
       </div>

+ 8 - 10
docs/documentation/components/nav.html

@@ -9,19 +9,17 @@ doc-subtab: nav
 <section class="section">
   <div class="container">
 
-    {% if site.vernum >= 43 %}
-      <div class="message is-danger">
-        <div class="message-body">
-          <p>This component has been <strong>deprecated</strong> and will be deleted soon.</p>
-        </div>
+    <div class="message is-danger">
+      <div class="message-body">
+        <p>This component has been <strong>deprecated</strong>.</p>
       </div>
+    </div>
 
-      <div class="message is-info">
-        <div class="message-body">
-          <p>While both <code>.nav</code> and <code>.navbar</code> currently co-exist to ensure backwards compatibility, the <code>.nav</code> will probably be deleted in an upcoming update, so you should start using <a href="{{ site.url }}/documentation/components/navbar/">the new navbar</a> instead.</p>
-        </div>
+    <div class="message is-info">
+      <div class="message-body">
+        <p>While both <code>.nav</code> and <code>.navbar</code> currently co-exist to ensure backwards compatibility, the <code>.nav</code> will probably be deleted in an upcoming update, so you should start using <a href="{{ site.url }}/documentation/components/navbar/">the new navbar</a> instead.</p>
       </div>
-    {% endif %}
+    </div>
 
     <h1 class="title">Nav</h1>
     <h2 class="subtitle">

+ 11 - 13
docs/documentation/form/input.html

@@ -341,21 +341,19 @@ variables_keys:
       </div>
     </div>
 
-    {% if site.vernum >= 43 %}
-      <div class="columns">
-        <div class="column is-half">
-          <div class="content">
-            <p>
-              You can resize the loading spinner by appending <code>is-small</code>, <code>is-medium</code> or <code>is-large</code> to the <code>control</code> container.
-            </p>
-          </div>
-          {{loading_sizes_example}}
-        </div>
-        <div class="column is-half">
-          {% highlight html %}{{loading_sizes_example}}{% endhighlight %}
+    <div class="columns">
+      <div class="column is-half">
+        <div class="content">
+          <p>
+            You can resize the loading spinner by appending <code>is-small</code>, <code>is-medium</code> or <code>is-large</code> to the <code>control</code> container.
+          </p>
         </div>
+        {{loading_sizes_example}}
+      </div>
+      <div class="column is-half">
+        {% highlight html %}{{loading_sizes_example}}{% endhighlight %}
       </div>
-    {% endif %}
+    </div>
 
     <h4 class="subtitle">Disabled</h4>
     <div class="columns">

+ 15 - 17
docs/documentation/form/select.html

@@ -296,25 +296,23 @@ doc-subtab: select
       </div>
     </div>
 
-    {% if site.vernum >= 44 %}
-      <hr>
-
-      <h3 class="title">Multiple select</h3>
-
-      <div class="columns">
-        <div class="column is-half">
-          <div class="content">
-            <p>
-              You can style a <strong>multiple select</strong> dropdown, by using the <code>is-multiple</code> modifier, and by using the <code>multiple</code> HTML attribute.
-            </p>
-          </div>
-          {{select_multiple_example}}
-        </div>
-        <div class="column is-half highlight-full">
-          {% highlight html %}{{select_multiple_example}}{% endhighlight %}
+    <hr>
+
+    <h3 class="title">Multiple select</h3>
+
+    <div class="columns">
+      <div class="column is-half">
+        <div class="content">
+          <p>
+            You can style a <strong>multiple select</strong> dropdown, by using the <code>is-multiple</code> modifier, and by using the <code>multiple</code> HTML attribute.
+          </p>
         </div>
+        {{select_multiple_example}}
       </div>
-    {% endif %}
+      <div class="column is-half highlight-full">
+        {% highlight html %}{{select_multiple_example}}{% endhighlight %}
+      </div>
+    </div>
 
     {% include anchor.html name="Colors" %}
 

+ 11 - 13
docs/documentation/form/textarea.html

@@ -176,21 +176,19 @@ doc-subtab: textarea
 
     {% include snippet.html content=loading_example %}
 
-    {% if site.vernum >= 43 %}
-      <div class="columns">
-        <div class="column is-half">
-          <div class="content">
-            <p>
-              You can resize the loading spinner by appending <code>is-small</code>, <code>is-medium</code> or <code>is-large</code> to the <code>control</code> container.
-            </p>
-          </div>
-          {{loading_sizes_example}}
-        </div>
-        <div class="column is-half highlight-full">
-          {% highlight html %}{{loading_sizes_example}}{% endhighlight %}
+    <div class="columns">
+      <div class="column is-half">
+        <div class="content">
+          <p>
+            You can resize the loading spinner by appending <code>is-small</code>, <code>is-medium</code> or <code>is-large</code> to the <code>control</code> container.
+          </p>
         </div>
+        {{loading_sizes_example}}
+      </div>
+      <div class="column is-half highlight-full">
+        {% highlight html %}{{loading_sizes_example}}{% endhighlight %}
       </div>
-    {% endif %}
+    </div>
 
     <h4 class="subtitle">Disabled</h4>