How do I create a new bootstrap color option ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-20-2017 08:33 AM
I am sure this is simple (or not) but I want to create a new bootstrap color option for service portal
So if I go to branding there are 6 options OOB
How can I add another option ?
I see it as a choice but I dont see were the actual color is being called.
Thank you
Tricia
- Labels:
-
Service Portal Development
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-11-2017 07:37 AM
Tricia,
You go to Service Portal Configuration, then Branding Editor, then Theme Colors, then scroll down to find the colors you are referring to--from there you can change the colors.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-14-2017 06:35 AM
I actually want to create a new color option.
I know how to change the existing but if I want to add a new custom color thats what my question was.
Thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-14-2017 11:39 AM
You would have to create your own CSS.
Bootstrap 4 Cheat Sheet - The ultimate list of Bootstrap classes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-14-2017 11:43 AM
"The problem with adding another brand color is that in most of the widgets that allow you to choose a bootstrap color in the instance options, the widget definitions have to explicitly take that option and map it to a color in the CSS. For example, a panel title could have a class of `text-{{::options.color}}`, and then in the CSS it will say `.text-primary {color: $brand-primary;} .text-danger { color: $brand-danger;}` etc, so even if you added another color option--you'd have to account for it in all the widgets"---Thanks lexifouts