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"], ...@@ -818,3 +818,10 @@ label[for="replace_type_1"],
818 label[for="replace_type_2"], label[for="replace_type_2"] ~ p.howto { 818 label[for="replace_type_2"], label[for="replace_type_2"] ~ p.howto {
819 display: none; 819 display: none;
820 } 820 }
821
822 a, input, textarea, select {
823 -webkit-transition: color 0.1s linear, background-color 0.1s linear, border-color 0.1s linear, box-shadow 0.1s linear;
824 -moz-transition: color 0.1s linear, background-color 0.1s linear, border-color 0.1s linear, box-shadow 0.1s linear;
825 -o-transition: color 0.1s linear, background-color 0.1s linear, border-color 0.1s linear, box-shadow 0.1s linear;
826 transition: color 0.1s linear, background-color 0.1s linear, border-color 0.1s linear, box-shadow 0.1s linear;
827 }
...\ No newline at end of file ...\ No newline at end of file
......