Skip to content

Instantly share code, notes, and snippets.

View eikaramba's full-sized avatar

Eike Thies eikaramba

View GitHub Profile

Keybase proof

I hereby claim:

  • I am eikaramba on github.
  • I am eikaramba (https://keybase.io/eikaramba) on keybase.
  • I have a public key ASCA181IQs92iwC6YeQAWPqD9fWbK5hhm--nZpVnHAXx6go

To claim this, I am signing this object:

@eikaramba
eikaramba / app.html
Last active January 9, 2017 19:42 — forked from Thanood/app.html
Aurelia-Materialize bridge select valueConverter
<template>
<require from="./filterPizzaValueConverter"></require>
<div>
<md-checkbox md-checked.bind="shouldFilter"></md-checkbox>
<select md-select multiple md-select.ref="select" value.two-way="selectedMeal">
<option value="" disabled>Select your meal</option>
<option repeat.for="meal of food | filterPizza:shouldFilter" model.bind="meal" value.bind="meal.id">${meal.name}</option>
</select>
</div>
</template>
@eikaramba
eikaramba / custom checkbox style
Last active December 22, 2015 22:18
Clear nice Custom checkbox
$ccb_height: 30px;
$ccb_width: 70px;
$ccb_slider_width: 22px;
$ccb_color_false:#F7836D;
$ccb_color_true:#80b50d;
input[type="checkbox"].custom-checkbox {
display: none;
}
.custom-checkbox {