Beiträge von TSC_DE

    Hallo,
    nachdem ich heute das gleiche Problem hatte, hab ich folgendes gefunden:

    Alle Werte können in der "all-in-one-event-calendar/css/general.css" eingestellt werden:

    Event-Label in Widget =>
    .ai1ec-agenda-widget-view .ai1ec-event.ai1ec-allday a {
    background: #830000; [COLOR=Red]=> Hintergrundfarbe[/COLOR]
    border: 2px solid #767676; [COLOR=Red]=> wenn gewünscht Rahmen[/COLOR]
    color: #fff; [COLOR=Red]=> Schriftfarbe[/COLOR]

    ===================================================

    Event-Label in Widget - Mouseover:

    .ai1ec-agenda-widget-view .ai1ec-event.ai1ec-allday a:hover {
    border: 2px solid #767676; [COLOR=Red]=> wenn gewünscht Rahmen[/COLOR]
    background: #fe3e3e; [COLOR=Red]=> Hintergrundfarbe [/COLOR]
    color: #000000; [COLOR=Red]=> Schriftfarbe[/COLOR]

    ===================================================

    Tages-Label in Widget:

    .ai1ec-agenda-widget-view h3.ai1ec-date-title {
    width: 3.5em;
    float: left;
    margin: 0 0.5em 0.5em !important;
    font: 1em/1.1em Tahoma, Geneva, sans-serif !important;
    color: #444;
    text-shadow: 0 1px 0 #fff;
    -o-text-shadow: 0 1px 0 #fff;
    -ms-text-shadow: 0 1px 0 #fff;
    -moz-text-shadow: 0 1px 0 #fff;
    -webkit-text-shadow: 0 1px 0 #fff;
    line-height: 1.1em;
    text-align: center;
    border: 2px solid #767676; [COLOR=Red]=> Rahmenfarbe[/COLOR]
    border-radius: 0 0 5px 5px;
    -o-border-radius: 0 0 0.5em 0.5em;
    -moz-border-radius: 0 0 0.5em 0.5em;
    -webkit-border-radius: 0 0 0.5em 0.5em;
    box-shadow: 0 2px 2px rgba(0,0,0,0.0);
    -o-box-shadow: 0 2px 2px rgba(0,0,0,0.0);
    -ms-box-shadow: 0 2px 2px rgba(0,0,0,0.0);
    -moz-box-shadow: 0 2px 2px rgba(0,0,0,0.0);
    -webkit-box-shadow: 0 2px 2px rgba(0,0,0,0.0);
    background: #fff;
    background: -o-linear-gradient( #fff 1em, #eee );
    background: -ms-linear-gradient( #fff 1em, #eee );
    background: -moz-linear-gradient( #fff 1em, #eee );
    background: -webkit-gradient( linear, 0% 1em, 0% 100%, from(#fff), to(#eee) );
    background: -webkit-linear-gradient( #fff 1em, #eee );


    .ai1ec-agenda-widget-view .ai1ec-month {
    text-shadow: 0 -1px 0 rgba(0,0,0,0.5);
    -o-text-shadow: 0 -1px 0 rgba(0,0,0,0.5);
    -ms-text-shadow: 0 -1px 0 rgba(0,0,0,0.5);
    -moz-text-shadow: 0 -1px 0 rgba(0,0,0,0.5);
    -webkit-text-shadow: 0 -1px 0 rgba(0,0,0,0.5);
    background: #9e0404; [COLOR=Red]=> Innenfarbe[/COLOR]
    font-size: 0.9em !important;
    padding: 0.1em 0 0.2em;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #fff;


    Grüße, TSC_DE