Minor form effects changes
authorLuzifr <szekely@woltlab.com>
Thu, 15 Sep 2011 12:06:30 +0000 (14:06 +0200)
committerLuzifr <szekely@woltlab.com>
Thu, 15 Sep 2011 12:06:36 +0000 (14:06 +0200)
wcfsetup/install/files/acp/style/testing.css

index cf61c97640f845525b9067f3e2ebed8d1cab981e..02bfb2c997bb21e70e31d24e8cc1efcc5c4c0f6c 100644 (file)
@@ -762,6 +762,12 @@ textarea {
        -ms-box-shadow: inset 0 1px 5px rgba(0, 0, 0, .1);
        -o-box-shadow: inset 0 1px 5px rgba(0, 0, 0, .1);
        box-shadow: inset 0 1px 5px rgba(0, 0, 0, .1);
+       
+       -webkit-transition: all .2s linear;
+       -moz-transition: all .2s linear;
+       -ms-transition: all .2s linear;
+       -o-transition: all .2s linear;
+       transition: all .2s linear;
 }
 
 /* inputs hover */
@@ -772,7 +778,6 @@ input[type='password']:hover,
 textarea:hover {
        border: 1px solid #fa2;
        background-color: #fff9f4;
-       
 }
 
 /* inputs active */
@@ -795,12 +800,6 @@ textarea:focus {
        -ms-box-shadow: 0 0 5px rgba(255, 170, 34, .5), inset 0 1px 5px rgba(0, 0, 0, .2);
        -o-box-shadow: 0 0 5px rgba(255, 170, 34, .5), inset 0 1px 5px rgba(0, 0, 0, .2);
        box-shadow: 0 0 5px rgba(255, 170, 34, .5), inset 0 1px 5px rgba(0, 0, 0, .2);
-       
-       -webkit-transition: all .2s linear;
-       -moz-transition: all .2s linear;
-       -ms-transition: all .2s linear;
-       -o-transition: all .2s linear;
-       transition: all .2s linear;
 }
 
 /* inputs read only */
@@ -809,16 +808,15 @@ input[type='search'][readonly='readonly'],
 input[type='email'][readonly='readonly'],
 input[type='password'][readonly='readonly'],
 textarea[readonly='readonly'] {
-       border-style: dotted;
-       border-color: rgba(0, 0, 0, .1);
+       border-style: solid;
+       border-color: #ccc #ddd #eee;
        background-color: transparent;
-       background-image: none;
        
-       -webkit-box-shadow: none;
-       -moz-box-shadow: none;
-       -ms-box-shadow: none;
-       -o-box-shadow: none;
-       box-shadow: none;
+       -webkit-box-shadow: inset 0 1px 5px rgba(0, 0, 0, .05);
+       -moz-box-shadow: inset 0 1px 5px rgba(0, 0, 0, .05);
+       -ms-box-shadow: inset 0 1px 5px rgba(0, 0, 0, .05);
+       -o-box-shadow: inset 0 1px 5px rgba(0, 0, 0, .05);
+       box-shadow: inset 0 1px 5px rgba(0, 0, 0, .05);
 }
 
 /* inputs read only */