mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-04 16:15:25 +00:00
75 lines
1.5 KiB
CSS
75 lines
1.5 KiB
CSS
|
|
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
|
|
|
/*== calendar-month-view ==*/
|
|
calendar-month-view {
|
|
-moz-binding: url(chrome://calendar/content/calendar-month-view.xml#calendar-month-view);
|
|
}
|
|
|
|
.calendar-month-view-grid-column {
|
|
min-width: 1px;
|
|
width: 1px;
|
|
}
|
|
|
|
.calendar-month-view-grid-row {
|
|
min-height: 1px;
|
|
height: 1px;
|
|
}
|
|
|
|
/*== calendar-month-day-box ==*/
|
|
calendar-month-day-box {
|
|
-moz-binding: url(chrome://calendar/content/calendar-month-view.xml#calendar-month-day-box);
|
|
}
|
|
|
|
calendar-month-day-box {
|
|
border: 1px solid #999999;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.calendar-month-day-box-odd {
|
|
background: #dddddd !important;
|
|
}
|
|
|
|
.calendar-month-day-box-even {
|
|
background: white;
|
|
}
|
|
|
|
.calendar-month-day-box-weekend {
|
|
background: #eeeeee;
|
|
}
|
|
|
|
calendar-month-day-box[selected="true"] {
|
|
background: #ffe79c !important;
|
|
}
|
|
|
|
.calendar-month-day-box-date-label {
|
|
color: #556;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.calendar-month-day-box-date-event {
|
|
}
|
|
|
|
/*== calendar-month-day-box-item ==*/
|
|
calendar-month-day-box-item {
|
|
-moz-binding: url(chrome://calendar/content/calendar-month-view.xml#calendar-month-day-box-item);
|
|
}
|
|
|
|
calendar-month-day-box-item[selected="true"] {
|
|
background: #ffdb67 !important;
|
|
}
|
|
|
|
.calendar-month-day-box-item-label {
|
|
font-size: small;
|
|
}
|
|
|
|
/*== calendar-month-view-column-header ==*/
|
|
calendar-month-view-column-header {
|
|
-moz-binding: url(chrome://calendar/content/calendar-month-view.xml#calendar-month-view-column-header);
|
|
}
|
|
|
|
.calendar-month-view-column-header-label {
|
|
font-weight: bold;
|
|
padding: 3px 3px 3px 3px;
|
|
}
|