SearchPanes styling problem
SearchPanes styling problem
jpr105
Posts: 12Questions: 1Answers: 0
I have problems with panes' headers. I would like to control the colour of the text, the background, the size and the weight of the titles.
div.dtsp-topRow {
background-color: #edf6FF !important;
/* background-color: #009DE0 !important; */
color:white !important;
font-size: 1.1em !important;
font-weight: bolder !important;
}
- color is not working
- font-weight neither
And ... why not, the title in a separate line ...
Any help ?
Thanks
https://e1.pcloud.link/publink/show?code=XZpbozZzoqDS9amlgmj83yHcdmfuXqVRDNy
This question has an accepted answers - jump to answer
Answers
You need to use:
as the selector: http://live.datatables.net/gozeqelu/2/edit .
Allan
Thank you @allan,
Yes I finally found the keyword "input" which trigger the title but, again, the statement color is not working, even in your example
It is - you just need to type into the input box. The grey text colour you are seeing is the placeholder colour:
http://live.datatables.net/gozeqelu/5/edit
Allan
Thank you @allan, it's better but I my white ... is grey
as you can see here : https://e1.pcloud.link/publink/show?code=XZ9L7RZxqqITuuyzJ8fAfQ0mYw0VBNHnVo7
In your exemple it's perfect but not on my test ... strange
Regards - Jean-Paul
Hi @allan,
I get rid of the borders but my white is still grey
Looks like there is some transparency to remove ???
Thanks
I'd need a link to a test case showing the issue. Unfortunately, I can't debug CSS issues from an image.
Allan
MP
Hello @allan,
As there are private informations, I sent you everything by message.
Thanks
Add
opacity: 1
to your::placeholder
style. Since the input is marked as disabled, the browser will put an opacity on it by default.Allan
Great @allan,
Thank you su much