Currently, I am utilizing PrimeNG with Angular and seeking to modify the shadow of the input box upon focusing it. Presently, it appears as follows:
https://i.sstatic.net/o4eLw.png
My preference is to change that blue portion to green. Upon reviewing the documentation, it instructs me to adjust the p-inputtext
class. However, despite my efforts, the desired outcome has not been achieved. This is my current approach:
body .p-inputtext{
border-color: green !important;
}
Outcome:
https://i.sstatic.net/tijiJ.png
Although it successfully renders the green border, the blue part remains unaffected. How can this be resolved?