1
I have a navbar
as footer
.
The first element of navbar
has the class ui-disabled
not be possible to interact with it.
Here is the FIDDLE
HTML/Jquery
<div data-role="footer" data-position="fixed" data-theme="c" data-tap-toogle="false">
<div data-role="navbar" data-grid="b">
<ul>
<li class="ui-disabled"><a id="listSO_options">Opções</a></li>
<li><a class = "ui-btn-active nav" href="#">menu</a></li>
<li><a class = "nav" href="#" id="listSO_btnDef" data-icon="gear">Definições</a></li>
</ul>
</div>
</div><!-- footer -->
Question
As noted in the fiddle, the first element is more faded than the next two. It is possible, using CSS and keeping the first element with the class ui-disabled
make it identical to the rest li
's ?
In case I have been less explicit: it is possible to annul the CSS class characteristic ui-disabled
?
One solution would be for you to copy the CSS from the ui-disable class, put it in your css file under another name, and associate this new class with your li. So you could change his css without losing the original property. Have you tried this? It would look something like <li class="ui-disabledNovaClasse"><a id="listSO_options">Options</a></li>
– Israel Zebulon