From 5ca23d44a6e7f7c4b7d02cf9f1a57fa8c4fc5098 Mon Sep 17 00:00:00 2001 From: Kevin Granger Date: Tue, 12 Nov 2013 10:43:52 +0100 Subject: [PATCH] // label with tooltip --- admin-dev/themes/default/css/admin-theme.css | 2 +- admin-dev/themes/default/scss/admin-theme/_admin-forms.sass | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/admin-dev/themes/default/css/admin-theme.css b/admin-dev/themes/default/css/admin-theme.css index e9cfd7f9a..9546ddab8 100644 --- a/admin-dev/themes/default/css/admin-theme.css +++ b/admin-dev/themes/default/css/admin-theme.css @@ -3694,7 +3694,7 @@ td.actions { min-width: 200px; } label.control-label { font-size: 13px; font-weight: normal; color: #666666; } -label.control-label span.label-tooltip { text-decoration: none; font-size: 13px; background-color: #ebebeb; border: none; border-bottom: solid 1px #dfdfdf; padding: 0 5px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; } +label.control-label span.label-tooltip { text-decoration: none; font-size: 13px; color: #3586ae; background-color: #edf7fb; border: none; border-bottom: solid 1px #d8edf7; padding: 0 5px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; } label.required:before { content: "*"; color: red; font-size: 14px; position: relative; line-height: 12px; } diff --git a/admin-dev/themes/default/scss/admin-theme/_admin-forms.sass b/admin-dev/themes/default/scss/admin-theme/_admin-forms.sass index 1844c5bba..e3c395a03 100644 --- a/admin-dev/themes/default/scss/admin-theme/_admin-forms.sass +++ b/admin-dev/themes/default/scss/admin-theme/_admin-forms.sass @@ -7,9 +7,10 @@ label.control-label label.control-label span.label-tooltip text-decoration: none font-size: 13px - background-color: darken($bg-content-color,5%) + color: #3586AE + background-color: lighten(#D8EDF7,5%) border: none - border-bottom: solid 1px darken($bg-content-color,10%) + border-bottom: solid 1px #D8EDF7 padding: 0 5px @include border-radius(3px)