Docs/variables data (#1314)

* Replace variables.json with colors.json and update related files accordingly

* Add variables data files

* Update variables include template and all related files to use new variables data

* Fix mobile breakpoint id typo in responsivness docs page

* Fix Liquid syntax error in made-with-bulma docs page

* Update bulma sass files count in modular docs page

* Use breakpoints data in responsiveness helpers docs page

* Use breakpoints and variables data in typography helpers docs page

* Add missing page titles in docs pages front matter
This commit is contained in:
bstashio
2017-10-17 12:28:59 +03:00
committed by Jeremy Thomas
parent e4fd1b7579
commit 1523ce8527
65 changed files with 2736 additions and 1158 deletions

View File

@@ -4,16 +4,16 @@ layout: documentation
doc-tab: overview
doc-subtab: colors
colors:
- id: "white"
- id: "black"
- id: "light"
- id: "dark"
- id: "primary"
- id: "link"
- id: "info"
- id: "success"
- id: "warning"
- id: "danger"
- white
- black
- light
- dark
- primary
- link
- info
- success
- warning
- danger
---
{% include subnav-overview.html %}
@@ -47,8 +47,8 @@ colors:
</thead>
<tbody>
{% for color in page.colors %}
{% assign derivedColor = site.data.variables.derived.colors | where: "id", color.id | first %}
{% assign initialColor = site.data.variables.initial.colors | where: "id", derivedColor.valueId | first %}
{% assign derivedColor = site.data.colors.derived | where: "id", color | first %}
{% assign initialColor = site.data.colors.initial | where: "id", derivedColor.valueId | first %}
<tr>
<td>
<strong>{{ derivedColor.id | capitalize }}</strong>
@@ -70,7 +70,7 @@ colors:
{% include elements/color-square.html value=derivedColor.invertValue %}
</td>
{% elsif derivedColor.invertId %}
{% assign invertColor = site.data.variables.initial.colors | where: "id", derivedColor.invertId | first %}
{% assign invertColor = site.data.colors.initial | where: "id", derivedColor.invertId | first %}
<td>
<code>${{ derivedColor.invertId }}</code>
</td>