Skip to Content (Press Enter)
OutSystems.com
Personal Edition
Community
Support
Training
Training
Online Training
Developer Schools
Boot Camps
Certifications
Tech Talks
Documentation
Documentation
Overview
ODC
O11
Forums
Forge
Get Involved
Get Involved
Jobs
Ideas
Members
Mentorship
User Groups
Platform
Platform
ODC
O11
Search in OutSystems
Log in
Get Started
Back to Forums
Filipe Lourenço
2
Views
4
Comments
Help Screen Color
Question
How to change Help screen tooltip color?
Miguel Antunes
Hello Luis,
you change that color in the richwidgets eSpace, Private>Widget_Tooltip, style sheet:
div
.
Widget_Tooltip
{
position
:
absolute
;
z-index
:
3000
;
border
:
1px
solid
#
888888
;
background-color
: #FFFCA9; <---
color
: #
555555
;
padding
:
8px
;
max-width
:
400px
;
_width: expression(this.clientWidth>
400
?
"400px"
:
"auto"
);
}
or you can simple overwrite it, in one screen by adding the following on screen style sheet
div
.
Widget_Tooltip
{
background-color
: #YOU_COLOR;
}
regards,
Miguel
Filipe Lourenço
i prefer the second choice but the problem is that some things are not displaying well like feedback messages and the position of the help screen link
2 replies
Last reply 01 Feb 2012
Show thread
Hide thread
Miguel Antunes
Hmmm,
thats strange, since we are just changing the color, and not anything related with position. If you simple use the widget without overwriting it works well?
regards,
Miguel
Filipe Lourenço
Yes it works
Community Guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
See the full guidelines
Loading...