| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- /*!
- * <%= meta.title %> v<%= meta.version %> Stylesheet
- * Docs & License: <%= meta.homepage %>
- * (c) <%= meta.copyright %>
- */
- .fc {
- direction: ltr;
- text-align: left;
- }
-
- .fc table {
- border-collapse: collapse;
- border-spacing: 0;
- }
-
- html .fc,
- .fc table {
- font-size: 1em;
- }
-
- .fc td,
- .fc th {
- padding: 0;
- vertical-align: top;
- }
- /* Header
- ------------------------------------------------------------------------*/
- .fc-header td {
- white-space: nowrap;
- }
- .fc-header-left {
- width: 25%;
- text-align: left;
- }
-
- .fc-header-center {
- text-align: center;
- }
-
- .fc-header-right {
- width: 25%;
- text-align: right;
- }
-
- .fc-header-title {
- display: inline-block;
- vertical-align: top;
- }
-
- .fc-header-title h2 {
- margin-top: 0;
- white-space: nowrap;
- }
-
- .fc .fc-header-space {
- padding-left: 10px;
- }
-
- .fc-header .fc-button {
- margin-bottom: 1em;
- vertical-align: top;
- }
-
- /* buttons edges butting together */
- .fc-header .fc-button {
- margin-right: -1px;
- }
-
- .fc-header .fc-corner-right, /* non-theme */
- .fc-header .ui-corner-right { /* theme */
- margin-right: 0; /* back to normal */
- }
-
- /* button layering (for border precedence) */
-
- .fc-header .fc-state-hover,
- .fc-header .ui-state-hover {
- z-index: 2;
- }
-
- .fc-header .fc-state-down {
- z-index: 3;
- }
- .fc-header .fc-state-active,
- .fc-header .ui-state-active {
- z-index: 4;
- }
-
-
-
- /* Content
- ------------------------------------------------------------------------*/
-
- .fc-content {
- position: relative;
- z-index: 1; /* scopes all other z-index's to be inside this container */
- clear: both;
- zoom: 1; /* for IE7, gives accurate coordinates for [un]freezeContentHeight */
- }
-
- .fc-view {
- position: relative;
- width: 100%;
- overflow: hidden;
- }
-
-
|