Ich habe das zum Laufen gebracht, aber es gibt ein paar Einschränkungen, die ich noch nicht gelöst habe.
Wie auch immer, so wird es gemacht:
Nehmen Sie Ihre durchschnittliche Eingabetaste:
<input type="submit" class="btn btn-success" value="Save">
Schneiden Sie das gewünschte Symbol für Ihre Senden-Schaltflächen aus der Glyphicons-Sprite-Datei aus und stellen Sie sicher, dass es sich um ein 14 x 14 Pixel großes Bild handelt. Ja, unter idealen Umständen können Sie das Sprite wiederverwenden, und wenn jemand das herausfindet, bin ich froh zu hören, wie es gemacht wird. :-)
Sobald Sie das getan haben, können Sie CSS für Ihre Eingabeschaltfläche wie folgt schreiben:
input[type='submit'] {
background-image: url('../images/submit-icon.png'), #62C462; /* fallback color if gradients are not supported */
background-image: url('../images/submit-icon.png'), -webkit-linear-gradient(top, #62C462, #51A351);
background-image: url('../images/submit-icon.png'), -moz-linear-gradient(top, #62C462, #51A351); /* For Fx 3.6 to Fx 15 */
background-image: url('../images/submit-icon.png'), -ms-linear-gradient(top, #62C462, #51A351); /* For IE 10 Platform Previews and Consumer Preview */
background-image: url('../images/submit-icon.png'), -o-linear-gradient(top, #62C462, #51A351); /* For Opera 11.1 to 12.0 */
background-image: url('../images/submit-icon.png'), linear-gradient(top, #62C462, #51A351); /* Standard syntax; must be the last statement */
background-repeat: no-repeat;
background-position: 5px 50%, 0cm 0cm;
padding-left: 25px;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
input[type='submit']:hover {
background-image: url('../images/submit-icon.png'), #51A351; /* fallback color if gradients are not supported */
background-image: url('../images/submit-icon.png'), -webkit-linear-gradient(top, #51A351, #51A351);
background-image: url('../images/submit-icon.png'), -moz-linear-gradient(top, #51A351, #51A351); /* For Fx 3.6 to Fx 15 */
background-image: url('../images/submit-icon.png'), -ms-linear-gradient(top, #51A351, #51A351); /* For IE 10 Platform Previews and Consumer Preview */
background-image: url('../images/submit-icon.png'), -o-linear-gradient(top, #51A351, #51A351); /* For Opera 11.1 to 12.0 */
background-image: url('../images/submit-icon.png'), linear-gradient(top, #51A351, #51A351); /* Standard syntax; must be the last statement */
background-position: 5px 50%, 0cm 0cm;
padding-left: 25px;
}
Funktioniert in Firefox 14, Chrome 21
Funktioniert nicht in IE 9
tl; dr: Mit ein bisschen CSS können Sie Symbole automatisch auf Ihre Senden-Schaltflächen setzen, aber Sie müssen das Symbol in einer separaten Datei ablegen, damit es in Internet Explorer nicht funktioniert.