6
Safari is fading colors inside that are not @Html.Comboboxfor, as I do not fade into the textbox?
I’m using CSS and Jquery, Follow the photo
Select does not fade in Safari:
@Html.DropDownListFor(m => m.CEP.IdCidade, (SelectList)ViewBag.Cidades, "Selecione", new { @class = "form-control", @id = "IdCidade", @style = "line-height: 2" })
Text esmanesce in Safari:
@Html.TextBoxFor(m => m.Bairro.DescBairro, new { @class = "form-control tam-50", @id = "DescBairro" })
If you don’t have any css class that’s doing this, open a call in Bootstrap, because it’s internal. Github Bootstrap
– Thiago Lunardi
I’ll do it like this: input[type="text"]:disabled { color: #000000 } ...
– AleBabaloff
I think the fading is on account of
disabled
, tries to add acolor:#000 !important;
– Thiago Lunardi