1
With this css I change all inputs
of my autocomplete
:
.ui-autocomplete-multiple ul{
padding:0;
background-color: red !important;
}
The problem is that I need to have only one screen and not all, as I can reference to be changed only screen whose id is x or step one styleClass
as a parameter ?
EDITED
This is the generated html:
<div id="manageEventoPermanenciaNavioForm:pidoS" class="ui-autocomplete-multiple">
<ul class="ui-autocomplete-multiple-container ui-widget ui-inputfield ui-state-default ui-corner-all" style="float:left">
<li class="ui-autocomplete-input-token"><input id="manageEventoPermanenciaNavioForm:pidoS_input" name="manageEventoPermanenciaNavioForm:pidoS_input" autocomplete="off" type="text"></li>
</ul>
<button class="ui-button ui-button-autocomplete ui-widget ui-state-default ui-corner-right ui-button-icon-only" type="button"><span class="ui-button-icon-primary ui-icon ui-icon-triangle-1-s"></span><span class="ui-button-text"> </span></button><select id="manageEventoPermanenciaNavioForm:pidoS_hinput" name="manageEventoPermanenciaNavioForm:pidoS_hinput" multiple="multiple" class="ui-helper-hidden"></select>
</div>
The
id
element is found in other screens?– BrTkCa
No, just on a screen.
– Roknauta
You can display relevant snippets of HTML?
– BrTkCa
Related
– BrTkCa
In the displayed HTML there is no class
.ui-autocomplete-multiple
. Are you sure you’re right or that CSS is right?– Woss
@Andersoncarloswoss forgot to post the full div, already corrected.
– Roknauta
And what exactly do you want to do?
– Woss
This might help: https://answall.com/questions/14639/ignorar-css-determinado-trecho-da-p%C3%A1gina
– Oralista de Sistemas