Hi Leute,
ich wollte mir einen Stylish Code machen, der Input Felder wie in Safari umrahmt.
Das Resultat schaut bei mir so aus:
[Blockierte Grafik: http://img3.imagebanana.com/img/yb6ji5ji/thumb/scree.png]
original isses aber so:
http://www.perun.net/wp-content/upl…ari3-google.png
meine umrandung hat scharfe kannten, die vom safari verschwimmt nach außen so.
wie bekomme ich im css diesen blurr out hin?
CSS
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix(http), url-prefix(file) {
input:focus, textarea:focus {
-moz-outline: 0.2em solid -moz-rgba(85,165,243,0.75) !important;
-moz-outline-offset: -0.1em !important;
-moz-outline-radius: 4px !important;
}
input[type="submit"]:focus, input[type="image"]:focus, input[type="radio"]:focus, input[type="checkbox"] {
-moz-outline: transparent !important;
}
button:focus::-moz-focus-inner {
border-color: transparent !important;
}
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
border: 1px dotted transparent !important;
}
input[type="radio"]:focus {
-moz-outline-radius: 12px;
-moz-outline-offset: 0px !important;
}
}
Alles anzeigen