/src/css/agenda.css
http://fullcalendar.googlecode.com/ · CSS · 155 lines · 108 code · 37 blank · 10 comment · 0 complexity · 731fd436ad4176d1634e93fc53fe2595 MD5 · raw file
- /* Agenda Week View, Agenda Day View
- ------------------------------------------------------------------------*/
- .fc .fc-agenda th,
- .fc .fc-agenda td {
- border-width: 1px 0 0 1px;
- }
-
- .fc .fc-agenda .fc-leftmost {
- border-left: 0;
- }
-
- .fc-agenda tr.fc-first th,
- .fc-agenda tr.fc-first td {
- border-top: 0;
- }
-
- .fc-agenda-head tr.fc-last th {
- border-bottom-width: 1px;
- }
-
- .fc .fc-agenda-head td,
- .fc .fc-agenda-body td {
- background: none;
- }
-
- .fc-agenda-head th {
- text-align: center;
- }
-
- /* the time axis running down the left side */
-
- .fc-agenda .fc-axis {
- width: 50px;
- padding: 0 4px;
- vertical-align: middle;
- white-space: nowrap;
- text-align: right;
- font-weight: normal;
- }
-
- /* all-day event cells at top */
-
- .fc-agenda-head tr.fc-all-day th {
- height: 35px;
- }
-
- .fc-agenda-head td {
- padding-bottom: 10px;
- }
-
- .fc .fc-divider div {
- font-size: 1px; /* for IE6/7 */
- height: 2px;
- }
-
- .fc .fc-divider .fc-state-default {
- background: #eee; /* color for divider between all-day and time-slot events */
- }
- /* body styles */
-
- .fc .fc-agenda-body td div {
- height: 20px; /* slot height */
- }
-
- .fc .fc-agenda-body tr.fc-minor th,
- .fc .fc-agenda-body tr.fc-minor td {
- border-top-style: dotted;
- }
-
- .fc-agenda .fc-day-content {
- padding: 2px 2px 0; /* distance between events and day edges */
- }
-
- /* Vertical Events
- ------------------------------------------------------------------------*/
- .fc-event-vert {
- border-width: 0 1px;
- }
-
- .fc-event-vert a {
- border-width: 0;
- }
-
- /* for fake rounded corners */
-
- .fc-content .fc-corner-top {
- margin-top: 1px;
- }
-
- .fc-content .fc-corner-top a {
- margin-top: -1px;
- border-top-width: 1px;
- }
-
- .fc-content .fc-corner-bottom {
- margin-bottom: 1px;
- }
-
- .fc-content .fc-corner-bottom a {
- margin-bottom: -1px;
- border-bottom-width: 1px;
- }
-
- /* event content */
-
- .fc-event-vert span {
- display: block;
- position: relative;
- z-index: 2;
- }
-
- .fc-event-vert span.fc-event-time {
- white-space: nowrap;
- _white-space: normal;
- overflow: hidden;
- border: 0;
- font-size: 10px;
- }
-
- .fc-event-vert span.fc-event-title {
- line-height: 13px;
- }
-
- .fc-event-vert span.fc-event-bg { /* makes the event lighter w/ a semi-transparent overlay */
- position: absolute;
- z-index: 1;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: #fff;
- opacity: .3;
- filter: alpha(opacity=30); /* for IE */
- }
-
- /* resizable */
-
- .fc-event-vert .ui-resizable-s {
- bottom: 0 !important; /* importants override pre jquery ui 1.7 styles */
- width: 100% !important;
- height: 8px !important;
- line-height: 8px !important;
- font-size: 11px !important;
- font-family: monospace;
- text-align: center;
- cursor: s-resize;
- }