--- title: File upload layout: docs theme: library doc-tab: form doc-subtab: file breadcrumb: - home - documentation - form - form-file file_name: "Screen Shot 2017-07-29 at 15.54.25.png" variables_keys: - $file-border-color - $file-radius - $file-cta-background-color - $file-cta-color - $file-cta-hover-color - $file-cta-active-color - $file-name-border-color - $file-name-border-style - $file-name-border-width - $file-name-max-width meta: experimental: true colors: true sizes: true variables: true --- {% capture file %}
{% endcapture %} {% capture file_name %}
{% endcapture %} {% capture file_name_right %}
{% endcapture %} {% capture file_name_fullwidth %}
{% endcapture %} {% capture file_boxed %}
{% endcapture %} {% capture file_boxed_name %}
{% endcapture %} {% capture file_colors_a %}
{% endcapture %} {% capture file_colors_b %}
{% endcapture %} {% capture file_colors_c %}
{% endcapture %} {% capture file_colors_d %}
{% endcapture %} {% capture file_centered %}
{% endcapture %} {% capture file_right %}
{% endcapture %} {% capture file_javascript %}
{% endcapture %}

The file element is a simple interactive label that wraps an <input type="file">. It comprises several sub-elements:

{% include docs/elements/snippet.html content=file %} {% include docs/elements/anchor.html name="Modifiers" %}

With the has-name modifier combined with the file-name element, you can add a placeholder for the selected file name.

{{ file_name }}
{% highlight html -%} {{- file_name -}} {%- endhighlight %}

You can move the CTA to the right side with the is-right modifier.

{{ file_name_right }}
{% highlight html -%} {{- file_name_right -}} {%- endhighlight %}

You can also expand the name to fill up the space with the is-fullwidth modifier.

{{ file_name_fullwidth }}
{% highlight html -%} {{- file_name_fullwidth -}} {%- endhighlight %}

You can have a boxed block with the is-boxed modifier.

{{ file_boxed }}
{% highlight html -%} {{- file_boxed -}} {%- endhighlight %}

You can combine has-name and is-boxed.

{{ file_boxed_name }}
{% highlight html -%} {{- file_boxed_name -}} {%- endhighlight %}
{% include docs/elements/anchor.html name="Colors" %}

You can style the file element by appending one of the {{ site.data.colors.derived | size }} color modifiers:

{% include docs/elements/snippet.html content=file_colors_a %} {% include docs/elements/snippet.html content=file_colors_b %} {% include docs/elements/snippet.html content=file_colors_c %} {% include docs/elements/snippet.html content=file_colors_d %} {% include docs/elements/anchor.html name="Sizes" %}

You can append one of the 4 available sizes:

{% for size in site.data.sizes %} {% capture foobar %}
{% endcapture %} {% include docs/elements/snippet.html content=foobar %} {% endfor %} {% for size in site.data.sizes %} {% capture foobar %}
{% endcapture %} {% include docs/elements/snippet.html content=foobar %} {% endfor %} {% for size in site.data.sizes %} {% capture foobar %}
{% endcapture %} {% include docs/elements/snippet.html content=foobar %} {% endfor %} {% for size in site.data.sizes %} {% capture foobar %}
{% endcapture %} {% include docs/elements/snippet.html content=foobar %} {% endfor %} {% include docs/elements/anchor.html name="Alignment" %}

You can align the file input:

{% include docs/elements/snippet.html content=file_centered %} {% include docs/elements/snippet.html content=file_right %} {% include docs/elements/anchor.html name="JavaScript" %}

A file upload input requires JavaScript to retrieve the selected file name. Here is an example of how this could be done:

{% include docs/elements/snippet.html horizontal=true content=file_javascript %}