-
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.
- Loading branch information
Yvain Liechti
committed
Mar 21, 2018
1 parent
02f6b1c
commit ee3d9b0
Showing
154 changed files
with
3,185 additions
and
11,652 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
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.
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Box | ||
// | ||
// A `box` is a skin for block present on the body background. | ||
// It can be used on a simple `div` on a component block or preview (on homepage or listing pages) or on the content container (content view). | ||
// | ||
// Markup: box.twig | ||
// | ||
// Styleguide Theme.Box | ||
.box | ||
overflow hidden | ||
border-radius $boxBorderRadius | ||
border .1rem solid $color-white | ||
background-color $color-white | ||
box-shadow 0 0 0 .1rem rgba($color-black, .02), 0 .1rem .4rem .1rem rgba($color-black, .06) |
Oops, something went wrong.