I have code from my former colleague for a login form. There are list points and I either want them
- to be white and not red or
- gone for just this login form
The css file is huge and with dev tools of my browser I figured out the relevant css part. But first the html:
<div id="content" class="">
<form id="fuLoginForm" class="InputfieldForm ng-pristine ng-valid" name="fuLoginForm" method="post" action="./" data-colspacing="1">
<ul class="Inputfields">
<li class="Inputfield InputfieldText Inputfield_username ui-widget InputfieldStateRequired" id="wrap_username">
<div class="InputfieldContent ui-widget-content">
<input id="username" class="required InputfieldMaxWidth" name="username" type="text" maxlength="2048" placeholder="Username">
</div>
</li>
</ul>
</form>
This is the relevant css:
#right-sidebar ul > li::before, #content ul > li::before{
content: "▪ ";
padding-right: 10px;
color: #B41F2A;
}
This is what I tryed so far to test it. But I cannot select just the list point. Is there a way to overlay the complete line with white?
li[id="wrap_username"] {
background-color: blue;
}
Thank you in advance
EDIT
The points are used in other pages, too. And if I consider content
other pages will be affected, too. The points must be red in other pages but as I mentioned not in this login form. And I don't know why me former colleague did it this way.