forked from samuel-p/sp-codes.de
41 lines
756 B
SCSS
41 lines
756 B
SCSS
|
// Foundation for Sites by ZURB
|
||
|
// foundation.zurb.com
|
||
|
// Licensed under MIT Open Source
|
||
|
|
||
|
////
|
||
|
/// @group functions
|
||
|
////
|
||
|
|
||
|
/// Generates a selector with every text input type. You can also filter the list to only output a subset of those selectors.
|
||
|
///
|
||
|
/// @param {List|Keyword} $types [()] - A list of text input types to use. Leave blank to use all of them.
|
||
|
@function text-inputs($types: ()) {
|
||
|
$return: ();
|
||
|
|
||
|
$all-types:
|
||
|
text
|
||
|
password
|
||
|
date
|
||
|
datetime
|
||
|
datetime-local
|
||
|
month
|
||
|
week
|
||
|
email
|
||
|
number
|
||
|
search
|
||
|
tel
|
||
|
time
|
||
|
url
|
||
|
color;
|
||
|
|
||
|
@if not has-value($types) {
|
||
|
$types: $all-types;
|
||
|
}
|
||
|
|
||
|
@each $type in $types {
|
||
|
$return: append($return, unquote('[type=\'#{$type}\']'), comma);
|
||
|
}
|
||
|
|
||
|
@return $return;
|
||
|
}
|