EventAggregator

css/event-aggregator.css

23:59ece334903a
2009-03-29 Paul Boddie Improved the form for the action to show months and to handle separate parameters for the start and end months.
     1 /*  event-aggregator.css - some additional styles for the EventAggregator macro     2                            which can be included in screen.css using...     3      4                            @import "event-aggregator.css";     5      6                            ...before any rules.     7      8 Copyright (c) 2009 by Paul Boddie     9 Licensed under the GNU GPL (v2 or later), see COPYING.txt for details.    10 */    11     12 /* Calendar view. */    13     14 .event-month {    15     width: 90%;    16     border-bottom: 1px solid #dddddd;    17 }    18     19 .event-month-heading {    20     background-color: #777777;    21     color: #ffffff;    22     text-align: center;    23     font-weight: bold;    24     border: 0;    25 }    26     27 .event-month-heading a:link,    28 .event-month-heading a:hover,    29 .event-month-heading a:visited {    30     color: inherit !important;    31 }    32     33 .event-month-heading .previous-month {    34     float: left;    35 }    36     37 .event-month-heading .next-month {    38     float: right;    39 }    40     41 .event-weekday-heading {    42     background-color: #999999;    43     color: #ffffff;    44     text-align: center;    45     border: 1px solid #dddddd;    46 }    47     48 .event-day-heading {    49     background-color: #ffffff;    50     width: 14%;    51     vertical-align: top;    52     padding-top: 0;    53     padding-left: 0;    54     border-top: 1px solid #dddddd;    55     border-bottom: 0;    56     border-left: 1px solid #dddddd;    57     border-right: 1px solid #dddddd;    58 }    59     60 .event-day-empty span.event-day-number {    61     color: #000000;    62 }    63     64 .event-day-busy span.event-day-number {    65     background-color: #555555;    66     color: #ffffff;    67 }    68     69 .event-day-number {    70     padding: 0.25em;    71 }    72     73 .event-day {    74     width: 14%;    75     vertical-align: top;    76     padding-left: 0;    77     padding-right: 0;    78     border-top: 0;    79     border-bottom: 0;    80     border-left: 1px solid #dddddd;    81     border-right: 1px solid #dddddd;    82 }    83     84 .event-day-empty {    85     background-color: #ffffff;    86 }    87     88 .event-day.event-day-empty {    89     padding-bottom: 2em;    90 }    91     92 .event-day-busy {    93     background-color: #ffffff;    94 }    95     96 .event-day-excluded {    97     background-color: #dddddd;    98 }    99    100 .event-summary {   101     padding: 0.25em 0.5em 0.25em 0.5em;   102     margin-bottom: 0.25em;   103     min-height: 2em;   104     margin-left: 0;   105     margin-right: 0;   106 }   107    108 .event-summary.event-starts {   109     padding: 0.25em;   110     margin-left: 0.5em;   111 }   112    113 .event-summary.event-ends {   114     padding: 0.25em;   115     margin-right: 0.5em;   116 }   117    118 .event-summary a:link,   119 .event-summary a:hover,   120 .event-summary a:visited {   121     color: inherit !important;   122 }   123    124 /* List/summary view. */   125    126 .event-listings {   127     list-style: none;   128 }   129    130 .event-listings-month-heading {   131     border-bottom: 1px solid #999999;   132 }   133    134 .event-month-listings {   135     list-style: disc;   136 }   137    138 /* vim: tabstop=4 expandtab shiftwidth=4   139  */