-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #220 from ryuran/rework/separe-elements-components
V1 - Rework/separe elements components
- Loading branch information
Showing
176 changed files
with
3,633 additions
and
12,194 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,11 @@ | ||
// SVG symbols | ||
// | ||
// Colette use a collection of svg symbols built with [svgstore](https://www.npmjs.com/package/svgstore). | ||
// | ||
// By default svg `fill` are colored by current text color. | ||
// | ||
// Markup: svg.twig | ||
// | ||
// Styleguide: Design.Svg | ||
svg | ||
fill currentColor |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
<form action="#"> | ||
<p> | ||
<div> | ||
<input id="checkbox1" name="checkbox1" type="checkbox"> | ||
<label for="checkbox1">Label</label> | ||
</p> | ||
<p> | ||
</div> | ||
<div> | ||
<input id="checkbox2" name="checkbox2" type="checkbox"> | ||
<label for="checkbox2">Label</label> | ||
</p> | ||
<p> | ||
</div> | ||
<div> | ||
<input id="checkbox3" name="checkbox3" type="checkbox"> | ||
<label for="checkbox3">Label</label> | ||
</p> | ||
</div> | ||
</form> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,12 @@ | ||
<form action="#"> | ||
{% for textfield in textfields %} | ||
<div class="form-field pb2"> | ||
<p> | ||
<label for="{{ textfield.id }}">{{ textfield.label }}</label> | ||
<input id="{{ textfield.id }}" type="{{ textfield.type }}" | ||
{% if textfield.value is not empty %}value="{{ textfield.value }}"{% endif %} | ||
{% if textfield.placeholder is not empty %}placeholder="{{ textfield.placeholder }}"{% endif %} | ||
{% if textfield.attrs is not empty %}{{ textfield.attrs }}{% endif %} | ||
/> | ||
</p> | ||
<label for="{{ textfield.id }}">{{ textfield.label }}</label> | ||
<input id="{{ textfield.id }}" type="{{ textfield.type }}" | ||
{% if textfield.value is not empty %}value="{{ textfield.value }}"{% endif %} | ||
{% if textfield.placeholder is not empty %}placeholder="{{ textfield.placeholder }}"{% endif %} | ||
{% if textfield.attrs is not empty %}{{ textfield.attrs }}{% endif %} | ||
/> | ||
</div> | ||
{% endfor %} | ||
</form> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
<form action="#"> | ||
<p> | ||
<div> | ||
<input id="radioButton1" name="radioButtonGroup" type="radio"> | ||
<label for="radioButton1">Label</label> | ||
</p> | ||
<p> | ||
</div> | ||
<div> | ||
<input id="radioButton2" name="radioButtonGroup" type="radio"> | ||
<label for="radioButton2">Label</label> | ||
</p> | ||
<p> | ||
</div> | ||
<div> | ||
<input id="radioButton3" name="radioButtonGroup" type="radio"> | ||
<label for="radioButton3">Label</label> | ||
</p> | ||
</div> | ||
</form> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,10 @@ | ||
<form action="#"> | ||
<div class="form-field"> | ||
<p> | ||
<label for="select">Select</label> | ||
<select id="select"> | ||
<option>option 1</option> | ||
<option>option 2</option> | ||
<option>option 3</option> | ||
</select> | ||
</p> | ||
<label for="select">Select</label> | ||
<select id="select"> | ||
<option>option 1</option> | ||
<option>option 2</option> | ||
<option>option 3</option> | ||
</select> | ||
</div> | ||
</form> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
<form action="#"> | ||
<div class="form-field"> | ||
<p> | ||
<label for="textarea">Textarea</label> | ||
<textarea id="textarea" row="4" cols="50" />default value</textarea> | ||
</p> | ||
<label for="textarea">Textarea</label> | ||
<textarea id="textarea" row="4" cols="50" />default value</textarea> | ||
</div> | ||
</form> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,12 @@ | ||
<form action="#"> | ||
{% for textfield in textfields %} | ||
<div class="form-field pb2"> | ||
<p> | ||
<label for="{{ textfield.id }}">{{ textfield.label }}</label> | ||
<input id="{{ textfield.id }}" type="{{ textfield.type }}" | ||
{% if textfield.value is not empty %}value="{{ textfield.value }}"{% endif %} | ||
{% if textfield.placeholder is not empty %}placeholder="{{ textfield.placeholder }}"{% endif %} | ||
{% if textfield.attrs is not empty %}{{ textfield.attrs }}{% endif %} | ||
/> | ||
</p> | ||
<label for="{{ textfield.id }}">{{ textfield.label }}</label> | ||
<input id="{{ textfield.id }}" type="{{ textfield.type }}" | ||
{% if textfield.value is not empty %}value="{{ textfield.value }}"{% endif %} | ||
{% if textfield.placeholder is not empty %}placeholder="{{ textfield.placeholder }}"{% endif %} | ||
{% if textfield.attrs is not empty %}{{ textfield.attrs }}{% endif %} | ||
/> | ||
</div> | ||
{% endfor %} | ||
</form> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
"clock2", | ||
"comments", | ||
"cooking", | ||
"diapo", | ||
"download", | ||
"folder", | ||
"games", | ||
|
File renamed without changes.
Oops, something went wrong.