ab2665d8 by mpenner

Apply a nice set of CSS colour and box-shadow transitions to all anchors and form fields. refs #1555

1 parent 6bdc5b28
......@@ -818,3 +818,10 @@ label[for="replace_type_1"],
label[for="replace_type_2"], label[for="replace_type_2"] ~ p.howto {
display: none;
}
a, input, textarea, select {
-webkit-transition: color 0.1s linear, background-color 0.1s linear, border-color 0.1s linear, box-shadow 0.1s linear;
-moz-transition: color 0.1s linear, background-color 0.1s linear, border-color 0.1s linear, box-shadow 0.1s linear;
-o-transition: color 0.1s linear, background-color 0.1s linear, border-color 0.1s linear, box-shadow 0.1s linear;
transition: color 0.1s linear, background-color 0.1s linear, border-color 0.1s linear, box-shadow 0.1s linear;
}
\ No newline at end of file
......