- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-06-2018 12:42 AM
Hi,
It is OOB that when we hover on the search box on portal,it is high-lighted in sky blue color.
Is it possible to change the color of border from sky blue to dark purple on service portal?
Thanks in advance.
Regards,
Pooja
Solved! Go to Solution.
- Labels:
-
Service Portal Development
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-06-2018 12:54 AM
If you are already cloned and customized search widget then simply add below css to the widget.
.form-control:focus {
border-color: black; //update border color here
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-06-2018 12:54 AM
If you are already cloned and customized search widget then simply add below css to the widget.
.form-control:focus {
border-color: black; //update border color here
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-09-2018 05:48 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-09-2018 10:35 PM
Below css responsible for border color of various types of form fields.
.select2-container-active .select2-choice, .select2-container-active .select2-choices {
border: 1px solid red; //color here
}
.field-has-reference .reference .select2-container-active {
outline: 1px dotted #212121;
outline: 5px auto -webkit-focus-ring-color;
border-color: red; //color here
box-shadow: 0 0 10px red; //color here
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-13-2018 02:54 AM
Hi Gurpreet,
I am facing the similar issue on portal.
Answer provided by you is working for other pages. But it is not working when I am checking on profile page. It is still in blue color when I am hovering on drop down list.
Can you please help me to change blue color to yellow.
Thanks,
Kshitij