Bonsoir

Je suis en train de convertir un vieux css en compass afin de pouvoir gagner du temps pour le faire évoluer.
J'ai donc récupéré mon css et j'ai une instruction que je n'arrive pas à convertir. En fait, plusieurs mais c'est la même propriété css, donc si vous m'aidez, vous m'aiderez à finir ma convertir mon css.
Voici le bout de code que je voudrais convertir en compass.

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 
#formulaireinscription input[type="submit"]
{
	text-align: center;
	font-family: 'La Belle Aurore', cursive;
	font-size: 17px;
	color: #fff;
	text-shadow: 0 1px rgba(0,0,0,.3);
	width: 152px;
	height: 40px;
	@include border-radius(7px,4px);
	background-color: #4a5360;
	@include box-shadow(0 1px 2px rgba(0,0,0,.2), inset 0 1px 2px rgba(255,255,255,.38));
	border: solid 1px #fff;
	background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,.26), rgba(255,255,255,.26));
	background-image: -moz-linear-gradient(bottom, rgba(0,0,0,.26), rgba(255,255,255,.26));
	background-image: -o-linear-gradient(bottom, rgba(0,0,0,.26), rgba(255,255,255,.26));
	background-image: -ms-linear-gradient(bottom, rgba(0,0,0,.26), rgba(255,255,255,.26));
	background-image: linear-gradient(to top, rgba(0,0,0,.26), rgba(255,255,255,.26));
}
J'ai les instructions background-image qui me pose soucis. Si vous pouviez me donner un coup de main, je vous en serais reconnaissant.

Merci d'avance.
lemirandais