Fix delete element

This commit is contained in:
Jeremy Thomas
2016-10-30 16:11:04 +00:00
parent 84a40052fc
commit 36822ed3fb
9 changed files with 667 additions and 35 deletions

View File

@@ -419,7 +419,7 @@ doc-subtab: form
<span class="tag is-success">New!</span>
</p>
<p>
If the control contains an icon, Bulma will make sure the button remains <strong>centered</strong>, no matter the size of the input <em>or</em> of the icon.
If the control contains an icon, Bulma will make sure the icon remains <strong>centered</strong>, no matter the size of the input <em>or</em> of the icon.
</p>
</div>
{{icons_sizes_example}}
@@ -581,7 +581,11 @@ doc-subtab: form
<h3 class="title">Form group</h3>
<div class="content">
<p>If you want to <strong>group</strong> controls together, use the <code>is-grouped</code> modifier on the <code>control</code> container:</p>
<p>
If you want to <strong>group</strong> controls together, use the <code>is-grouped</code> modifier on the <code>control</code> container.
<br>
Add the <code>is-expanded</code> modifier on the control element you want to <strong>fill up the remaining space</strong>.
</p>
</div>
{% capture group_example %}
<div class="control is-grouped">
@@ -601,9 +605,6 @@ doc-subtab: form
{% highlight html %}
{{group_example}}
{% endhighlight %}
<div class="content">
<p>Add the <code>is-expanded</code> modifier on the control element you want to <strong>fill up the remaining space</strong>.</p>
</div>
<hr>