Change input background on IE as carret is black

This commit is contained in:
Nicolas Le Goff
2013-02-27 19:54:23 +01:00
committed by Romain Neutron
parent 19b29573b2
commit b03ae56e0d
3 changed files with 10 additions and 1 deletions

View File

@@ -20,7 +20,7 @@
<table class="input-table" ng-class="getInputClass('{{ input_name }}')">
<tr>
<td class="icon"><i class="icon-envelope-alt icon-white"></i></td>
<td>
<td class="input">
{{ form_widget(field, { 'attr': attributes })}}
</td>
</tr>

View File

@@ -243,6 +243,10 @@ ul {
.gradient(@colorGooglePlus, 0.8);
}
.lt-ie8 .input-table {
border: 1px solid @inputOutsideBorder;
}
.input-table input {
border: @inputBorder !important;
background-color: @inputBackground !important;
@@ -250,6 +254,10 @@ ul {
margin: 0 !important;
}
.lt-ie8 .input-table input, .lt-ie8 .input-table .input {
background-color: @inputIEBackground !important;
}
.match-hint {
font-size: 13px;
}

View File

@@ -65,6 +65,7 @@
@identityPhraseanetColor: #323232;
@identityPhraseanetIconColor: #b3b3b3;
@languageCaretColor: @white;
@inputIEBackground: #6D6D6D;
// Scaffolding
// -------------------------