Anyone have any idea what could be causing the blue box to the right of the input field?
It's been the bane of my existence the past few days. Only appears intermittently. The markup for each input is like so:
<div class="input text">
<label for="pass">Password</label>
<input type="password" name="pass" id="pass" class="required" tabindex="30"/>
</div>
Things to note are that the label is positioned on top of the field and then dimmed/faded out when clicked/typed on.
This only happens on webkit on Mac and apparently Vista.
http://i.stack.imgur.com/5BQcv.jpg
EDIT: Sorry, the CSS:
input[type="text"], input[type="password"] {
height: 30px;
outline: none;
-webkit-transition: -webkit-box-shadow 0.3s linear;
-moz-transition: -moz-box-shadow 0.3s linear;
transition: box-shadow 0.3s linear;
}
.input.text input[type="text"]:focus, input[type="text"]:active, .input.text input[type="password"]:focus, input[type="password"]:active {
-moz-box-shadow: 0 0 12px #82cce8;
-webkit-box-shadow: 0 0 12px #82cce8; /* chrome seems to show a smaller box shadow */
box-shadow: 0 0 12px #82cce8;
}
.input.text input, .input.text span.field {
padding: 10px 15px;
width: 92%;
font-size: 2em;
font-family: 'HelveticaNeueW01-45Ligh', Arial, Helvetica, sans-serif;
border: 1px solid #cecece;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: -2px -2px 3px rgba(205,205,205, 0.3);
-moz-box-shadow: -2px -2px 3px rgba(205,205,205, 0.3);
box-shadow: -2px -2px 3px rgba(205,205,205, 0.3);
}
input::-webkit-input-placeholder { color: #e2e2e2;}
input:-moz-placeholder { color: #e2e2e2;}
The containing div just has a padding of 20px.
Also, sorry sdleihssirc, had to re-link image due to edit.
UPDATE: Test link over at gcpereira.com[no space]/stuff/test/landing/