Skip to content

Instantly share code, notes, and snippets.

View sandesh-mq's full-sized avatar

Sandesh Damkondwar sandesh-mq

View GitHub Profile
@sandesh-mq
sandesh-mq / adons.html
Last active December 23, 2015 23:39
Input Addons
<!-- appending -->
<div class="InputAddOn">
<input class="InputAddOn-field">
<button class="InputAddOn-item">...</button>
</div>
<!-- prepending -->
<div class="InputAddOn">
<span class="InputAddOn-item">...</span>
<input class="InputAddOn-field">
@sandesh-mq
sandesh-mq / remove input box color.css
Created September 8, 2013 07:29
Remove browser autofill and focus color
input:-webkit-autofill {
-webkit-box-shadow:0 0 0 50px white inset; /* Change the color to your own background color */
-webkit-text-fill-color: #333;
}
input:-webkit-autofill:focus {
-webkit-box-shadow: /*your box-shadow*/,0 0 0 50px white inset;
-webkit-text-fill-color: #333;
}