From 928f3ace9a7a22ec836264bdd6a463d051f5db0e Mon Sep 17 00:00:00 2001 From: Alexander Menk Date: Fri, 24 May 2013 11:14:02 +0200 Subject: [PATCH] Fix: #18 - More explicit tool tip styles The tool tip is using classes content and body which are often have site-specific styles. Some common values (background, font, color) are now reset. --- .../base/default/aoe_templatehints/css/aoe_templatehints.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/skin/frontend/base/default/aoe_templatehints/css/aoe_templatehints.css b/skin/frontend/base/default/aoe_templatehints/css/aoe_templatehints.css index 3318792..b9b51f6 100644 --- a/skin/frontend/base/default/aoe_templatehints/css/aoe_templatehints.css +++ b/skin/frontend/base/default/aoe_templatehints/css/aoe_templatehints.css @@ -12,7 +12,8 @@ .implicitlycached:hover { box-shadow: 0 0 3px 3px orange; } .ot-container { width: 500px; } -.opentip .header { margin: 0; padding: 0; position: inherit; text-align: left; width: auto; z-index: auto; } +.opentip { color:black; font-family: sans-serif } +.opentip .header { margin: 0; padding: 0; position: inherit; text-align: left; width: auto; z-index: auto; background: none; height: auto; } .opentip .content { text-align: left; } .opentip dt { font-weight: bold; } .opentip dd { margin-left: 20px; margin-bottom: 10px; word-wrap: break-word; }