Skip to content

Instantly share code, notes, and snippets.

@jleehr
jleehr / ContainsNumeric.php
Created January 27, 2016 12:34
Symfony 2 - Custom validator
<?php
namespace AppBundle\Validator\Constraints;
use Symfony\Component\Validator\Constraint;
/**
* @Annotation
*/
class ContainsNumeric extends Constraint
@jleehr
jleehr / form_style.scss
Last active January 20, 2016 10:03
HTML form radio and checkbox style
input {
&+ label {
line-height: 1.2em;
}
/* Checkboxes */
&[type="checkbox"] {
display: none;
&:checked + label:before {