El comando hace una búsqueda recursiva de archivos el comando tiene la siguiente synopsis:
Todos los argumentos son obcionales, simplificando:
find [path] [atributos] [nombre]
<% | |
filter_name = (defined?(name)) ? name : '' | |
filter_number = (defined?(number)) ? number : 5 | |
filter_title = (defined?(title)) ? title : 'Minimum rating' | |
filter_css = (defined?(css)) ? css : filter_name | |
filter_checked = (defined?(checked)) ? checked-1 : 0 | |
%> | |
<div class="filter-rating <%= filter_css %>"> | |
<h4><%= filter_title %></h4> | |
<% for i in 0...filter_number %> |
$checkbox-color-active: $brand-primary !default | |
$checkbox-color-scale-active: 1.1 !default | |
$checkbox-box-size: 1.2em !default | |
$checkbox-box-top: 0.05em !default | |
$checkbox-box-padding: $checkbox-box-size + .75em !default | |
.checkbox | |
input[type="checkbox"] | |
@extend .sr-only |
$radio-color-active: $brand-primary !default | |
$radio-color-scale-active: 1.1 !default | |
$radio-box-size: 1.2em !default | |
$radio-box-size-padding: 2px !default | |
$radio-box-top: 0.05em !default | |
$radio-box-padding: $radio-box-size + .75em !default | |
.radio | |
input[type="radio"] | |
@extend .sr-only |
Modernizr.addTest('csstransformspreserve3d', function () { | |
var prop, | |
val, | |
cssText, | |
ret; | |
prop = 'transform-style'; | |
if ('webkitTransformStyle' in document.documentElement.style) { | |
prop = '-webkit-' + prop; |