Index: trunk/extensions/SemanticResultFormats/Calendar/skins/SRFC_main.css |
— | — | @@ -89,9 +89,12 @@ |
90 | 90 | color: #555555; |
91 | 91 | padding: 8px 2px 2px 2px; |
92 | 92 | } |
93 | | -table.month_calendar td p.colored-entry { |
94 | | - border-top: 1px #f4f4d2 solid; |
95 | | - border-bottom: 1px #f4f4d2 solid; |
96 | | - padding: 2px 0 2px 6px; |
| 93 | +table.month_calendar td div.colored-entry { |
| 94 | + border: 1px #f4f4d2 solid; |
97 | 95 | background: #ffffdd; |
| 96 | + margin: 4px 0 4px 0; |
98 | 97 | } |
| 98 | +table.month_calendar td div.colored-entry p { |
| 99 | + margin: 0; |
| 100 | + padding: 2px 0 2px 6px; |
| 101 | +} |
Index: trunk/extensions/SemanticResultFormats/Calendar/SRF_Calendar.php |
— | — | @@ -469,7 +469,7 @@ |
470 | 470 | } else { |
471 | 471 | $event_str = $skin->makeLinkObj( $event_title ); |
472 | 472 | if ( $color != '' ) { |
473 | | - $text .= "<p class=\"colored-entry\" style=\"border-left: 7px $color solid;\">$event_str $other_text</p>\n"; |
| 473 | + $text .= "<div class=\"colored-entry\"><p style=\"border-left: 7px $color solid;\">$event_str $other_text</p></div>\n"; |
474 | 474 | } else { |
475 | 475 | $text .= "$event_str $other_text\n\n"; |
476 | 476 | } |