You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Isso é necessário pra gerar algo do tipo, no CSS final:
min-width: -webkit-calc(100% - 48px);
min-width: -moz-calc(100% - 48px);
min-width: -ms-calc(100% - 48px);
min-width: -o-calc(100% - 48px);
min-width: calc(100% - 48px);
Ou seja, vários valores pra mesma propriedade, no jeito de funcionamento atual do Decorator se eu declaro vários valores pra mesma propriedade ela só pega o último valor declaro. Imaginei que, declarando um vetor como valor, o sistema poderia entender e gerar este formato acima.
something in this format:
$this->Decorator->rule('.some-rule', array(
'padding-top' => $vg->size('2m'),
'min-width' => array(
'-webkit-calc(100% - 48px)',
'-moz-calc(100% - 48px)'
)
The text was updated successfully, but these errors were encountered: