CSS-Farbverlauf für dreieckigen Pfeil

Bitte werfen Sie einen Blick aufhttp://jsfiddle.net/ghAgQ/ Ich brauche den gleichen Farbverlauf für den Pfeil wie für das Rechteck. Irgendwelche Ideen, wie das geht? Vielen Dank

.rectangle {
background-color: #EEE;
height: 80px;
width: 240px;
border: 1px solid #CCC;
background: white;
cursor: pointer;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,white),             color-stop(37%,#F1F1F1), color-stop(57%,#E1E1E1), color-stop(100%,#F6F6F6));
float: left;
}

.arrow {

border-top: 41px solid transparent;
border-bottom: 41px solid transparent;
border-left: 15px solid #C4C4C4;
float: left;
cursor: pointer;

}

Antworten auf die Frage(2)

Ihre Antwort auf die Frage