How to change the border of the select box
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā03-10-2020 06:54 PM
How should I change color of the border of the current field from blue to yellow .Please let me know the navigation of how to change as well
Thanks
Meru
- Labels:
-
Service Portal Development

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā03-10-2020 10:39 PM
Navigate to Service Portal > pages > sc_cat_item > add the below given code in page specific css section
.select2-drop.select2-drop-above.select2-drop-active {
border-top: 1px solid #ffff80;
}
.type-choice .select2-container-active {
outline: 5px auto #ffff80;
border-color: #ffff80;
box-shadow: 0 0 5px #ffff80;
}
if you want change it to a different color modify the #f0f354 with your value https://www.w3schools.com/colors/colors_picker.asp
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā03-11-2020 07:33 PM
This is global correct ? It will change it for everyone how do I change just for Human Resources
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā03-11-2020 07:39 PM
any screenshots will help

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā03-12-2020 05:27 AM