mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
73c82e5a94
Summary: We will need it for two purposes: - Status tool. - Nagging tool - @aran suggested using "3 business days" and I don't want it to fall on New Year's Eve or such. I don't plan working on any interface for editing this as this kind of data should be always imported. Test Plan: `bin/storage upgrade` `scripts/calendar/import_us_holidays.php` /calendar/ Reviewers: epriestley Reviewed By: epriestley CC: aran, Koolvin Differential Revision: https://secure.phabricator.com/D2375
45 lines
790 B
CSS
45 lines
790 B
CSS
/**
|
|
* @provides aphront-calendar-view-css
|
|
*/
|
|
|
|
.aphront-calendar-view {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
background: #fdfdfd;
|
|
border: 2px solid #003366;
|
|
}
|
|
|
|
tr.aphront-calendar-month-year-header th {
|
|
text-align: center;
|
|
font-weight: bold;
|
|
font-size: 14px;
|
|
padding: .5em;
|
|
color: white;
|
|
background: #003366;
|
|
}
|
|
|
|
tr.aphront-calendar-day-of-week-header th {
|
|
text-align: center;
|
|
font-size: 11px;
|
|
padding: .25em;
|
|
color: white;
|
|
background: #3366BB;
|
|
}
|
|
|
|
table.aphront-calendar-view td {
|
|
border: 1px solid #dfdfdf;
|
|
padding: .5em;
|
|
}
|
|
|
|
table.aphront-calendar-view td div {
|
|
min-height: 70px;
|
|
}
|
|
|
|
.aphront-calendar-day-of-month {
|
|
text-align: right;
|
|
color: #666666;
|
|
}
|
|
|
|
.aphront-calendar-not-work-day {
|
|
background-color: #fdfae7;
|
|
}
|