Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
Loading items

Target

Select target project
  • to/weby/ui-styleguide
  • va-fighters/ui-styleguide
2 results
Select Git revision
Loading items
Show changes
Showing
with 27 additions and 0 deletions
<input type="text" class="text-input form-field__control {{ classes }}" value="" placeholder="{{ placeholder }}{{^ placeholder }}{{ form.placeholder }}{{/ placeholder }}" {{# disabled }}disabled{{/ disabled }} {{# readonly }}readonly{{/ readonly }} />
{{> atoms-text-input(disabled: true) }}
{{> atoms-text-input(readonly: true) }}
<div class="text-input-addon {{ classes }}"><i class="ico--pirati"></i></div>
<div class="select">
<select class="select__control form-field__control {{ classes }}" value="" {{# disabled }}disabled{{/ disabled }} {{# readonly }}readonly{{/ readonly }}>
<option>Option 1</option>
<option>Option 2</option>
<option>Option 3</option>
<option>Option 4</option>
</select>
</div>
{{> atoms-select(disabled: true) }}
{{> atoms-select(readonly: true) }}
<div class="checkbox form-field__control">
<input type="checkbox" id="checkbox_1" {{# disabled }}disabled{{/ disabled }} {{# readonly }}readonly{{/ readonly }}>
<label for="checkbox_1">{{ excerpt.short }}</label>
</div>
{{> atoms-checkbox(disabled: true) }}
<div class="radio form-field__control">
<label>
<input type="radio" name="radio" {{# disabled }}disabled{{/ disabled }}>
<span>Option</span>
</label>
</div>
{{> atoms-radio(disabled: true) }}
<input type="password" class="text-input text-input--password form-field__control" value="" placeholder="{{ placeholder }}{{^ placeholder }}* * * * * * *{{/ placeholder }}" />