pourquoi transition css ne fonctionne pas

J'essaie d'ajouter de transition, mais il ne marche pas
J'ai ajouté de la transition à mes liens et s'attendre à des changements sur l'état de pointage
J'ai utilisé de la transition beaucoup, mais quelques fois cela m'arrive et je ne sais pas pourquoi cette propriété ne fonctionne pas

Je préfère savoir pourquoi il ne marche pas

c'est mon code

<div class="subNavigation">
                        <ul>
                            <li>درباره بانک مهر</li>
                            <li><a href="javascript:void(0)">درباره بانک مهر 1</a></li>
                            <li><a href="javascript:void(0)">درباره بانک مهر 2</a></li>
                            <li><a href="javascript:void(0)">درباره بانک مهر 3</a></li>
                            <li><a href="javascript:void(0)">درباره بانک مهر 4</a></li>
                        </ul>
                    </div>

et css

.subNavigation {
width: 900px;
height: 274px;
position: absolute;
top: 40px;
right: 0;
padding: 30px 60px 0 0;
}
/* line 126, ../sass/style.scss */
.subNavigation ul {
float: right;
}
/* line 130, ../sass/style.scss */
.subNavigation li {
width: 153px;
*zoom: 1;
margin-top: 4px;
padding-right: 2px;
padding-bottom: 4px;
border-bottom: 1px dotted #b4b4b4;
}
/* line 38, D:/Ruby193/lib/ruby/gems/1.9.1/gems/compass-      0.12.2/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
.subNavigation li:after {
content: "";
display: table;
clear: both;
}
/* line 138, ../sass/style.scss */
.subNavigation li:first-child {
width: 155px;
height: 24px;
margin-top: 0;
margin-bottom: 14px;
color: #f7931e;
border-bottom: 1px solid #dddddd;
padding-right: 0;
font-size: 16px;
line-height: 24px;
}
/* line 151, ../sass/style.scss */
.subNavigation a {
float: right;
font-size: 13px;
height: 24px;
line-height: 24px;
padding-right: 2px;
color: #222;
-webkit-transition: all, 0.2s, ease-in;
-moz-transition: all, 0.2s, ease-in;
-o-transition: all, 0.2s, ease-in;
transition: all, 0.2s, ease-in;
}
/* line 160, ../sass/style.scss */
.subNavigation a.eng {
font-family: tahoma;
}
/* line 164, ../sass/style.scss */
.subNavigation a:hover {
padding-right: 10px;
border-right: 4px solid #f7941d;
color: #19ae61;
}

Le Violon

OriginalL'auteur Cameron A | 2013-06-13