diff --git a/docs/quick_reference.html b/docs/quick_reference.html index 0edd22a..06efa8f 100644 --- a/docs/quick_reference.html +++ b/docs/quick_reference.html @@ -456,7 +456,7 @@
-

Forms & input  View on Codepen

+

Forms & input  View on Codepen

<form>
   <fieldset>
     <legend>Simple form</legend>
@@ -480,7 +480,7 @@
             
-

Checkboxes & radio buttons  View on Codepen

+

Checkboxes & radio buttons  View on Codepen

<div class="input-group">
   <input type="checkbox" id="check1" tabindex="0"> 
   <label for="check1">Checkbox</label>
@@ -500,7 +500,7 @@
             
-

Buttons & button groups  View on Codepen

+

Buttons & button groups  View on Codepen

<button>Default button</button>
 <input type="button" class="primary" value="Primary button">
 <input type="reset" class="secondary" value="Secondary button">
@@ -527,7 +527,7 @@
             
-

File upload buttons  View on Codepen

+

File upload buttons  View on Codepen

<input type="file" id="file-input">
 <label for="file-input" class="button">Upload file...</label>
@@ -549,7 +549,7 @@
-

Basic syntax & responsiveness  View on Codepen

+

Basic syntax & responsiveness  View on Codepen

<table>
   <caption>People</caption>
   <thead>
@@ -587,7 +587,7 @@
             
-

Horizontal tables  View on Codepen

+

Horizontal tables  View on Codepen

<table class="horizontal">
   <caption>People</caption>
   <thead>
@@ -625,7 +625,7 @@
             
-

Table variants & matrices  View on Codepen

+

Table variants & matrices  View on Codepen

<table class="preset">
   <caption>Star Wars Character Alignment Table</caption>
   <tbody>
@@ -664,9 +664,6 @@
   <tbody>
     <!-- ... -->
   </tbody>
-  <tfoot>
-    <!-- ... -->
-  </tfoot>
 </table>
@@ -687,7 +684,7 @@
-

Basic syntax  View on Codepen

+

Basic syntax  View on Codepen

<div class="row">
   <div class="card">
     <div class="section">
@@ -712,7 +709,7 @@
             
-

Sections & media  View on Codepen

+

Sections & media  View on Codepen

<div class="card">
   <img src="..." class="section media">
   <div class="section double-padded"><p>Content</p></div>
@@ -733,7 +730,7 @@
             
-

Card sizing & fluidity  View on Codepen

+

Card sizing & fluidity  View on Codepen

<div class="card small">
   <div class="section">
     <p>Content</p>
@@ -772,7 +769,7 @@
             
-

Basic syntax  View on Codepen

+

Basic syntax  View on Codepen

<div class="tabs">
   <input type="radio" name="tab-group" id="tab1" checked aria-hidden="true">
   <label for="tab1" aria-hidden="true">Tab 1</label>
@@ -803,7 +800,7 @@
             
-

Stacked tabs  View on Codepen

+

Stacked tabs  View on Codepen

<div class="tabs stacked">
   <input type="radio" name="accordion" id="a1" checked aria-hidden="true">
   <label for="a1" aria-hidden="true">Accordion section 1</label>
@@ -850,7 +847,7 @@
             
-

Text highlighting  View on Codepen

+

Text highlighting  View on Codepen

<mark>primary</mark>
 <mark class="secondary">secondary</mark>
 <mark class="tertiary">tertiary</mark>
@@ -866,7 +863,7 @@
             
-

Alerts  View on Codepen

+

Alerts  View on Codepen

<div class="alert">
   <h3>This is an alert</h3>
   <p>Make sure you read this!</p>
@@ -889,7 +886,7 @@
             
-

Animated alerts  View on Codepen

+

Animated alerts  View on Codepen

<div class="alert animated">
   <h3>Animated alert</h3>
 </div>
diff --git a/docs/table.html b/docs/table.html
index 3e10494..cc05a72 100644
--- a/docs/table.html
+++ b/docs/table.html
@@ -267,8 +267,8 @@
                 
<tr>
   <td>Chad</td>
-  <>Wilberts</td>
-  <>MrOne</td>
+  <td>Wilberts</td>
+  <td>MrOne</td>
 </tr>

Don't: Remember to always add a data-label attribute to your <td> elements, as the table's card view is very dependent on them to display properly. <th> elements, however, do not require or utilize this attribute.

@@ -494,9 +494,6 @@ <tbody> <!-- ... --> </tbody> - <tfoot> - <!-- ... --> - </tfoot> </table>

diff --git a/docs/v2/DEVLOG.md b/docs/v2/DEVLOG.md index 97caae3..8b1a49d 100644 --- a/docs/v2/DEVLOG.md +++ b/docs/v2/DEVLOG.md @@ -673,3 +673,7 @@ ## 20161219 - Added code to `quick reference` from all modules. Codepens not done yet. +- Typo fixes and changes in `table`. +- Created codepens until the end of `contextual`, `progress` and `utility` will be done later today. +- *TODO* Notes for `quick reference`. +- *TODO* Readme, demo image etc.