fix an intriguing issue raised by lint.
[sgn.git] / mason / help / file_upload_type.mas
blobf605464c7bfd75c74f90f5a8bce764d56c3260ba
1 <%args>
2   $type => 'Data'
3   $optional_column => undef
4 </%args>
6 <div class="file_upload_type">
7   <span class="file_icon glyphicon glyphicon-file"></span>
8   <div>
9     <p>
10       <% $type %> may be uploaded using any of the supported file types: MS Excel (<strong>.xls or .xlsx</strong>),
11       comma-separated file (<strong>.csv</strong>), tab-delimited file (<strong>.txt or .tsv</strong>),
12       or semicolon-separated file (<strong>.ssv</strong>).
13     </p>
14 % if ($optional_column) {
15     <p>
16       Optional columns may be left out, if not used in your data.
17     </p>
18 % }
19   </div>
20 </div>
22 <style>
23   .file_upload_type {
24     display: flex;
25     align-items: center;
26     gap: 15px;
27     margin: 15px;
28     padding: 5px;
29     border-radius: 5px;
30     background: rgba(252, 211, 77, 0.5);
31     border: 1px solid #d97706;
32   }
33   .file_icon {
34     color: #B96F1A;
35     font-size: 200%;
36   }
37 </style>