diff options
author | friendica <info@friendica.com> | 2012-06-07 18:08:15 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-06-07 18:08:15 -0700 |
commit | 52d90674ea5c35b95cff9b9fba1ac2b275ff3819 (patch) | |
tree | 47a8aa5d61bc2dcf075570245ba295a280d319ef | |
parent | ba2452a076c0635e94c6a0967b778df0df14eca7 (diff) | |
download | volse-hubzilla-52d90674ea5c35b95cff9b9fba1ac2b275ff3819.tar.gz volse-hubzilla-52d90674ea5c35b95cff9b9fba1ac2b275ff3819.tar.bz2 volse-hubzilla-52d90674ea5c35b95cff9b9fba1ac2b275ff3819.zip |
better events-reminder theming
-rw-r--r-- | view/theme/slackr/events_reminder.tpl | 2 | ||||
-rw-r--r-- | view/theme/slackr/style.css | 15 |
2 files changed, 13 insertions, 4 deletions
diff --git a/view/theme/slackr/events_reminder.tpl b/view/theme/slackr/events_reminder.tpl index 99407fc3e..bd1a57d18 100644 --- a/view/theme/slackr/events_reminder.tpl +++ b/view/theme/slackr/events_reminder.tpl @@ -35,5 +35,5 @@ }); }); </script> -<div id="events-reminder"></div> +<div id="events-reminder" class="$classtoday"></div> <br> diff --git a/view/theme/slackr/style.css b/view/theme/slackr/style.css index 479a8ec06..aa4d4b800 100644 --- a/view/theme/slackr/style.css +++ b/view/theme/slackr/style.css @@ -54,14 +54,23 @@ nav #site-location { color: #000000; } -.fc { +#events-reminder { + border-radius: 3px; + -moz-border-radius: 3px; opacity: 0.3; filter:alpha(opacity=30); } -.fc:hover { +#events-reminder.birthday-today, #events-reminder.event-today { + opacity: 1.0; + filter:alpha(opacity=100); + box-shadow: 4px 4px 3px 0 #444444; +} + +#events-reminder:hover { opacity: 1.0; filter:alpha(opacity=100); + box-shadow: 4px 4px 3px 0 #444444; } .fc-event-skin { @@ -79,7 +88,7 @@ nav #site-location { box-shadow: 4px 4px 3px 0 #444444; } -.contact-entry-photo img, .profile-match-photo img, #photo-photo img, .directory-photo-img, .photo-album-photo, .photo-top-photo, .fc, .profile-jot-text, .group-selected, .nets-selected, .fileas-selected, #profile-jot-submit, .categories-selected { +.contact-entry-photo img, .profile-match-photo img, #photo-photo img, .directory-photo-img, .photo-album-photo, .photo-top-photo, .profile-jot-text, .group-selected, .nets-selected, .fileas-selected, #profile-jot-submit, .categories-selected { border-radius: 3px; -moz-border-radius: 3px; box-shadow: 4px 4px 3px 0 #444444; |