From 7b7468214000296cc3cf59f49f8fc6b59b657310 Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Tue, 20 Dec 2016 10:51:32 +0200 Subject: [PATCH] Input control quick reference --- docs/input_control.html | 4 ++-- docs/quick_reference.html | 30 +++++++++++++++++++++++++----- docs/v2/DEVLOG.md | 6 +++++- 3 files changed, 32 insertions(+), 8 deletions(-) diff --git a/docs/input_control.html b/docs/input_control.html index e523326..2f446ed 100644 --- a/docs/input_control.html +++ b/docs/input_control.html @@ -183,7 +183,7 @@

Forms are structured the same way you would structure a normal form in HTML5. Simply create a root <form> element and add your <input> elements inside. Link them to <label> elements for ease of acces and you are pretty much set. We highly recommend using the <fieldset> and <legend> elements to annotate your forms as well, but you can skip them if you wish.

-

Forms are inline by default. Use the .button-group class on a <div> wrapping inside it an <input> and <label> pair to make sure they always display together in one line. If you want to create aligned forms with a preset layout, you can utilize the grid module's rows and columns.

+

Forms are inline by default. Use the .input-group class on a <div> wrapping inside it an <input> and <label> pair to make sure they always display together in one line. If you want to create aligned forms with a preset layout, you can utilize the grid module's rows and columns.

Sample code

<form>
   <fieldset>
@@ -288,7 +288,7 @@
     </div>
   </fieldset>
 </form>
-

Don't: Avoid using the .button-group class when creating aligned forms. This might cause unexpected behavior.

+

Don't: Avoid using the .input-group class when creating aligned forms. This might cause unexpected behavior.

diff --git a/docs/quick_reference.html b/docs/quick_reference.html index 53386a2..deb234c 100644 --- a/docs/quick_reference.html +++ b/docs/quick_reference.html @@ -473,8 +473,14 @@

Notes

-
@@ -494,7 +500,12 @@

Notes

@@ -521,7 +532,14 @@

Notes

@@ -534,7 +552,9 @@

Notes

diff --git a/docs/v2/DEVLOG.md b/docs/v2/DEVLOG.md index 9cd5ae0..5992cb0 100644 --- a/docs/v2/DEVLOG.md +++ b/docs/v2/DEVLOG.md @@ -678,4 +678,8 @@ - *TODO* Notes for `quick reference`. - *TODO* Readme, demo image etc. - Extensive proofreading and fixes. -- Finished Codepens. \ No newline at end of file +- Finished Codepens. + +## 20161220 + +- Added notes for `input_control` in `quick reference`.