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/

link|improve this question
We'll probably need to see the CSS. – sdleihssirhc Oct 4 '11 at 19:48
please provide the css! – wes Oct 4 '11 at 19:48
..and sandwiches! ( I see nothing weird in here jsfiddle.net/lollero/9Swks ) – Lollero Oct 4 '11 at 20:11
haha, a solid answer would get my best efforts for sandwich procurement – Jerry Oct 4 '11 at 20:13
1  
@Jerry I'm still not seeing it in my mac. :/ ( and I checked your updated url.. just to be clear. ) – Lollero Oct 5 '11 at 13:39
show 9 more comments
feedback

1 Answer

I can't duplicate this on Safari 5.1 (10.7), and I know you've found an alternate tactic, but try -webkit-background-clip out and let me know if it is related.

-webkit-background-clip: padding-box;

Hope it works!

link|improve this answer
Thanks! Will try it out and comment back if it works. – Jerry Oct 23 '11 at 19:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.