fullcalendar.css 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464
  1. /*
  2. * FullCalendar v1.5.4 Stylesheet
  3. *
  4. * Copyright (c) 2011 Adam Shaw
  5. * Dual licensed under the MIT and GPL licenses, located in
  6. * MIT-LICENSE.txt and GPL-LICENSE.txt respectively.
  7. *
  8. * Date: Tue Sep 4 23:38:33 2012 -0700
  9. *
  10. */
  11. .fc {
  12. direction: ltr;
  13. text-align: left;
  14. }
  15. .fc table {
  16. border-collapse: collapse;
  17. border-spacing: 0;
  18. }
  19. html .fc,
  20. .fc table {
  21. font-size: 0.95em;
  22. }
  23. .fc td,
  24. .fc th {
  25. padding: 0;
  26. vertical-align: top;
  27. }
  28. /* Header
  29. ------------------------------------------------------------------------*/
  30. .fc-header td {
  31. white-space: nowrap;
  32. }
  33. .fc-header-left {
  34. text-align: left;
  35. }
  36. .fc-header-center {
  37. width: 100%;
  38. text-align: center;
  39. }
  40. .fc-header-right {
  41. text-align: right;
  42. }
  43. .fc-header-title {
  44. display: inline-block;
  45. vertical-align: top;
  46. margin-top: -2px;
  47. }
  48. .fc-header-title h2 {
  49. margin-top: 0;
  50. white-space: nowrap;
  51. }
  52. .fc .fc-header-space {
  53. padding-left: 10px;
  54. }
  55. .fc-header .fc-button {
  56. margin-bottom: 1em;
  57. vertical-align: top;
  58. }
  59. /* buttons edges butting together */
  60. .fc-header .fc-button {
  61. margin-right: -1px;
  62. }
  63. .fc-header .fc-corner-right {
  64. margin-right: 1px; /* back to normal */
  65. }
  66. .fc-header .ui-corner-right {
  67. margin-right: 0; /* back to normal */
  68. }
  69. /* button layering (for border precedence) */
  70. .fc-header .fc-state-hover,
  71. .fc-header .ui-state-hover {
  72. z-index: 2;
  73. }
  74. .fc-header .fc-state-down {
  75. z-index: 3;
  76. }
  77. .fc-header .fc-state-active,
  78. .fc-header .ui-state-active {
  79. z-index: 4;
  80. }
  81. /* Content
  82. ------------------------------------------------------------------------*/
  83. .fc-content {
  84. clear: both;
  85. }
  86. .fc-view {
  87. width: 100%; /* needed for view switching (when view is absolute) */
  88. overflow: hidden;
  89. }
  90. .fc-week-table {
  91. font-weight: 500;
  92. text-align: center;
  93. vertical-align: middle;
  94. }
  95. /* Cell Styles
  96. ------------------------------------------------------------------------*/
  97. .fc-widget-header { /* <td>, usually */
  98. border-bottom: 1px solid #c0c0c0;
  99. /* border-right: 1px solid transparent;*/
  100. }
  101. .fc-widget-content { /* <td>, usually */
  102. border-top: 1px solid #c0c0c0;
  103. border-right: 1px solid transparent;
  104. }
  105. .fc-state-highlight { /* <td> today cell */ /* TODO: add .fc-today to <th> */
  106. background: #fafadd;
  107. }
  108. .fc-source-bg {
  109. background-color: #fff4f4;
  110. }
  111. .fc-widget-content.fc-weekend-day, .fc-widget-content tr.fc-weekend-day {
  112. background: #f7f7f7;
  113. }
  114. .fc-source-bg.fc-state-highlight {
  115. background: #fdf7e9;
  116. }
  117. .fc-widget-content.fc-state-highlight.fc-weekend-day, .fc-widget-content tr.fc-state-highlight.fc-weekend-day {
  118. background: #f9f9ea;
  119. }
  120. .fc-widget-content.fc-source-bg.fc-weekend-day, .fc-widget-content tr.fc-source-bg.fc-weekend-day {
  121. background: #fbf6f6;
  122. }
  123. .fc-widget-content.fc-state-highlight.fc-source-bg.fc-weekend-day, .fc-widget-content tr.fc-state-highlight.fc-source-bg.fc-weekend-day {
  124. background: #faf7f0;
  125. }
  126. .fc-cell-overlay { /* semi-transparent rectangle while dragging */
  127. background: #b2d9ff;
  128. opacity: .2;
  129. filter: alpha(opacity=20); /* for IE */
  130. }
  131. /* Buttons
  132. ------------------------------------------------------------------------*/
  133. .fc-button {
  134. position: relative;
  135. display: inline-block;
  136. cursor: pointer;
  137. }
  138. .fc-state-default { /* non-theme */
  139. border-style: solid;
  140. border-width: 1px 0;
  141. }
  142. .fc-button-inner {
  143. position: relative;
  144. float: left;
  145. overflow: hidden;
  146. }
  147. .fc-state-default .fc-button-inner { /* non-theme */
  148. border-style: solid;
  149. border-width: 0 1px;
  150. }
  151. .fc-button-content {
  152. position: relative;
  153. float: left;
  154. height: 1.9em;
  155. line-height: 1.9em;
  156. padding: 0 12px;
  157. min-width: 12px;
  158. white-space: nowrap;
  159. }
  160. .fc-button-content .fc-icon-wrap {
  161. position: relative;
  162. float: left;
  163. top: 50%;
  164. }
  165. .fc-button-content img {
  166. padding-top: 1px;
  167. }
  168. /* gloss effect */
  169. .fc-state-default .fc-button-effect {
  170. position: absolute;
  171. top: 50%;
  172. left: 0;
  173. }
  174. .fc-state-default .fc-button-effect span {
  175. position: absolute;
  176. top: -100px;
  177. left: 0;
  178. width: 500px;
  179. height: 100px;
  180. border-width: 100px 0 0 1px;
  181. border-style: solid;
  182. border-color: #fff;
  183. background: #444;
  184. opacity: .09;
  185. filter: alpha(opacity=9);
  186. }
  187. /* button states (determines colors) */
  188. .fc-state-default,
  189. .fc-state-default .fc-button-inner {
  190. border-style: solid;
  191. border-color: #ccc #bbb #aaa;
  192. background: #F3F3F3;
  193. color: #404040;
  194. }
  195. .fc-state-hover,
  196. .fc-state-hover .fc-button-inner {
  197. border-color: #999;
  198. }
  199. .fc-state-down,
  200. .fc-state-down .fc-button-inner {
  201. border-color: #555;
  202. background: #777;
  203. }
  204. .fc-state-active,
  205. .fc-state-active .fc-button-inner {
  206. border-color: #555;
  207. background: #777;
  208. color: #fff;
  209. }
  210. .fc-state-disabled,
  211. .fc-state-disabled .fc-button-inner {
  212. color: #999;
  213. border-color: #ddd;
  214. }
  215. .fc-state-disabled {
  216. cursor: default;
  217. }
  218. .fc-state-disabled .fc-button-effect {
  219. display: none;
  220. }
  221. /* Global Event Styles
  222. ------------------------------------------------------------------------*/
  223. .fc-event {
  224. border-style: solid;
  225. border-width: 0;
  226. font-size: .95em;
  227. cursor: default;
  228. }
  229. a.fc-event,
  230. .fc-event-draggable {
  231. cursor: pointer;
  232. }
  233. a.fc-event {
  234. text-decoration: none;
  235. }
  236. .fc-rtl .fc-event {
  237. text-align: right;
  238. }
  239. .fc-event-skin {
  240. border-color: #F0F0F0; /* default BORDER color */
  241. background-color: #F0F0F0; /* default BACKGROUND color */
  242. color: #404040; /* default TEXT color */
  243. }
  244. .fc-event-inner {
  245. position: relative;
  246. float: left;
  247. width: 100%;
  248. height: 100%;
  249. border-style: solid;
  250. border-width: 0;
  251. overflow: hidden;
  252. background-color: transparent !important; /* overit! ... priesvistnost all day veci */
  253. }
  254. .fc-event-time,
  255. .fc-event-title {
  256. padding: 0 1px;
  257. }
  258. .fc-event-title-strict {
  259. overflow:hidden;
  260. white-space:nowrap;
  261. text-overflow:ellipsis;
  262. }
  263. .fc-event-tentative {
  264. border-style: dashed;
  265. border-color: #fff !important;
  266. opacity: 0.9;
  267. background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, rgba(255, 255, 255, .2)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .2)), color-stop(.75, rgba(255, 255, 255, .2)), color-stop(.75, transparent), to(transparent));
  268. background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
  269. background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
  270. background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
  271. background-image: linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
  272. -webkit-background-size: 20px 20px;
  273. -moz-background-size: 20px 20px;
  274. background-size: 20px 20px;
  275. }
  276. .fc-event-tentative .fc-event-inner {
  277. border-style: dashed;
  278. }
  279. .fc-event-skin.fc-event-cancelled
  280. {
  281. border-style: dashed;
  282. border-color: #fff !important;
  283. opacity: 0.9;
  284. }
  285. .fc-event-skin.fc-event-cancelled .fc-event-inner {
  286. border-style: dashed;
  287. text-decoration: line-through;
  288. }
  289. .fc-event-row.fc-event-cancelled {
  290. text-decoration: line-through;
  291. }
  292. .fc .ui-resizable-handle { /*** TODO: don't use ui-resizable anymore, change class ***/
  293. display: block;
  294. position: absolute;
  295. z-index: 99999;
  296. overflow: hidden; /* hacky spaces (IE6/7) */
  297. font-size: 300%; /* */
  298. line-height: 50%; /* */
  299. }
  300. /* Horizontal Events
  301. ------------------------------------------------------------------------*/
  302. .fc-event-hori {
  303. border-width: 1px 1px; /* overit! ... priesvistnost all day veci (bolo 1px 0) */
  304. margin-bottom: 1px;
  305. }
  306. /* resizable */
  307. .fc-event-hori .ui-resizable-e {
  308. top: 0 !important; /* importants override pre jquery ui 1.7 styles */
  309. right: -3px !important;
  310. width: 7px !important;
  311. height: 100% !important;
  312. cursor: e-resize;
  313. }
  314. .fc-event-hori .ui-resizable-w {
  315. top: 0 !important;
  316. left: -3px !important;
  317. width: 7px !important;
  318. height: 100% !important;
  319. cursor: w-resize;
  320. }
  321. .fc-event-hori .ui-resizable-handle {
  322. _padding-bottom: 14px; /* IE6 had 0 height */
  323. }
  324. /* Fake Rounded Corners (for buttons and events)
  325. ------------------------------------------------------------*/
  326. .fc-corner-left {
  327. /*margin-left: 1px;*/
  328. -webkit-border-top-left-radius: 3px;
  329. -moz-border-radius-topleft: 3px;
  330. border-top-left-radius: 3px;
  331. -webkit-border-bottom-left-radius: 3px;
  332. -moz-border-radius-bottomleft: 3px;
  333. border-bottom-left-radius: 3px;
  334. }
  335. .fc-corner-left .fc-event-inner {
  336. margin-left: 2px;
  337. }
  338. .fc-corner-left.fc-button {
  339. border-left-width: 1px;
  340. }
  341. .fc-corner-left .fc-button-inner {
  342. margin-left: 1px;
  343. border-left-width: 0px;
  344. }
  345. .fc-corner-right {
  346. /*margin-right: 1px;*/
  347. -webkit-border-top-right-radius: 3px;
  348. -moz-border-radius-topright: 3px;
  349. border-top-right-radius: 3px;
  350. -webkit-border-bottom-right-radius: 3px;
  351. -moz-border-radius-bottomright: 3px;
  352. border-bottom-right-radius: 3px;
  353. }
  354. .fc-corner-right .fc-event-inner {
  355. }
  356. .fc-corner-right.fc-button {
  357. border-right-width: 1px;
  358. }
  359. .fc-corner-right .fc-button-inner {
  360. margin-right: 1px;
  361. border-right-width: 0px;
  362. }
  363. .fc-corner-top {
  364. margin-top: 1px;
  365. }
  366. .fc-corner-top .fc-event-inner {
  367. margin-top: -1px;
  368. }
  369. .fc-corner-bottom {
  370. margin-bottom: 1px;
  371. }
  372. .fc-corner-bottom .fc-event-inner {
  373. margin-bottom: -1px;
  374. }
  375. /* Fake Rounded Corners SPECIFICALLY FOR EVENTS
  376. -----------------------------------------------------------------*/
  377. .fc-corner-left .fc-event-inner {
  378. border-left-width: 0px; /* overit! ... priesvistnost all day veci (bolo 1) */
  379. }
  380. .fc-corner-right .fc-event-inner {
  381. border-right-width: 0px; /* overit! ... priesvistnost all day veci (bolo 1) */
  382. }
  383. .fc-corner-top .fc-event-inner {
  384. border-top-width: 1px;
  385. }
  386. .fc-corner-bottom .fc-event-inner {
  387. border-bottom-width: 1px;
  388. }
  389. /* Reusable Separate-border Table
  390. ------------------------------------------------------------*/
  391. table.fc-border-separate {
  392. border-collapse: separate;
  393. }
  394. #todoList table.fc-border-separate {
  395. margin-top: -1px;
  396. }
  397. .fc-border-separate th,
  398. .fc-border-separate td {
  399. border-width: 1px 0 0 1px;
  400. }
  401. .fc-border-separate th.fc-last,
  402. .fc-border-separate td.fc-last {
  403. border-right-width: 1px;
  404. }
  405. .fc-border-separate tr.fc-last th,
  406. .fc-border-separate tr.fc-last td {
  407. border-bottom-width: 1px;
  408. }
  409. .fc-border-separate tbody tr.fc-first td,
  410. .fc-border-separate tbody tr.fc-first th {
  411. border-top-width: 0;
  412. }
  413. /* Month View, Basic Week View, Basic Day View
  414. ------------------------------------------------------------------------*/
  415. .fc-grid th {
  416. text-align: center;
  417. }
  418. .fc-grid .fc-day-number {
  419. float: right;
  420. padding: 0 2px;
  421. line-height: 17px;
  422. }
  423. .fc-grid .fc-other-month .fc-day-number, .fc-grid .fc-other-month .fc-day-text {
  424. opacity: 0.33;
  425. filter: alpha(opacity=33); /* for IE */
  426. /* opacity with small font can sometimes look too faded
  427. might want to set the 'color' property instead
  428. making day-numbers bold also fixes the problem */
  429. }
  430. .fc-grid .fc-day-content {
  431. clear: both;
  432. padding: 2px 2px 1px; /* distance between events and day edges */
  433. }
  434. /* event styles */
  435. .fc-grid .fc-event-time {
  436. font-weight: 500;
  437. font-size: 0.94em;
  438. line-height: 13px; /* event height problem if time is shown */
  439. }
  440. /* right-to-left */
  441. .fc-rtl .fc-grid .fc-day-number {
  442. float: left;
  443. }
  444. .fc-rtl .fc-grid .fc-event-time {
  445. float: right;
  446. }
  447. /* Agenda Week View, Agenda Day View
  448. ------------------------------------------------------------------------*/
  449. .fc-agenda table {
  450. border-collapse: separate;
  451. }
  452. .fc-agenda-days th {
  453. text-align: center;
  454. line-height: 17px;
  455. }
  456. .fc-agenda .fc-agenda-axis {
  457. width: 60px;
  458. padding: 0 4px;
  459. vertical-align: middle;
  460. text-align: right;
  461. white-space: nowrap;
  462. font-weight: 400;
  463. font-size: 1em;
  464. }
  465. .fc-agenda-allday .fc-widget-header.fc-agenda-axis {
  466. text-align: center;
  467. }
  468. .fc-agenda .fc-day-content {
  469. padding: 2px 2px 1px;
  470. }
  471. /* make axis border take precedence */
  472. .fc-agenda-days tbody .fc-agenda-axis.fc-widget-header.fc-first {
  473. border-bottom-color: transparent;
  474. }
  475. .fc-agenda-days .fc-agenda-axis {
  476. border-right-width: 1px;
  477. }
  478. .fc-agenda-days .fc-col0 {
  479. border-left-width: 0;
  480. }
  481. /* all-day area */
  482. .fc-agenda-allday {
  483. top: 0px;
  484. position: absolute;
  485. }
  486. .fc-agenda-allday th {
  487. border-width: 0 1px;
  488. }
  489. .fc-agenda-allday .fc-day-content {
  490. min-height: 34px; /* TODO: doesnt work well in quirksmode */
  491. _height: 34px;
  492. }
  493. /* divider (between all-day and slots) */
  494. .fc-agenda-divider-inner {
  495. height: 2px;
  496. overflow: hidden;
  497. }
  498. .fc-widget-header .fc-agenda-divider-inner {
  499. background: #eee;
  500. }
  501. /* slot rows */
  502. .fc-agenda-slots th {
  503. border-width: 1px 1px 0;
  504. }
  505. .fc-agenda-slots td {
  506. height: 20px !important;
  507. border-width: 1px 0 0;
  508. background: none;
  509. }
  510. .fc-agenda-slots td div {
  511. height: 20px !important;
  512. }
  513. .fc-agenda-slots tr.fc-slot0 th,
  514. .fc-agenda-slots tr.fc-slot0 td {
  515. border-top-width: 0;
  516. }
  517. .fc-agenda-slots .fc-widget-header
  518. {
  519. border-top: 1px solid #c0c0c0;
  520. padding-top: 1px;
  521. }
  522. .fc-agenda-slots tr.fc-minor th,
  523. .fc-agenda-slots tr.fc-minor td {
  524. border-top-style: dotted;
  525. }
  526. .fc-agenda-slots tr.fc-minor th.ui-widget-header {
  527. *border-top-style: solid; /* doesn't work with background in IE6/7 */
  528. }
  529. .fc-non-business-hours {
  530. /*background-color: #cccccc;
  531. opacity:0.3;*/
  532. background-color: rgba(204,204,204,0.3);
  533. }
  534. .fc-slot-jumper-top
  535. {
  536. position: absolute;
  537. height: 16px;
  538. width: 16px;
  539. background: url(../images/jumper_top_w.svg) no-repeat center;
  540. z-index: 10;
  541. cursor: pointer;
  542. -webkit-border--radius: 3px;
  543. -moz-border-radius: 3px;
  544. border-radius: 3px;
  545. }
  546. .fc-slot-jumper-top:hover
  547. {
  548. background: url(../images/jumper_top_b.svg) no-repeat center;
  549. }
  550. .fc-slot-jumper-bottom
  551. {
  552. position: absolute;
  553. height: 16px;
  554. width: 16px;
  555. background: url(../images/jumper_bottom_w.svg) no-repeat center;
  556. z-index: 10;
  557. cursor: pointer;
  558. -webkit-border--radius: 3px;
  559. -moz-border-radius: 3px;
  560. border-radius: 3px;
  561. }
  562. .fc-slot-jumper-bottom:hover
  563. {
  564. background: url(../images/jumper_bottom_b.svg) no-repeat center;
  565. }
  566. /* Vertical Events
  567. ------------------------------------------------------------------------*/
  568. .fc-event-vert {
  569. border-width: 0 1px;
  570. }
  571. .fc-event-vert .fc-event-head,
  572. .fc-event-vert .fc-event-content {
  573. position: relative;
  574. z-index: 2;
  575. width: 100%;
  576. overflow: hidden;
  577. }
  578. .fc-event-vert .fc-event-time {
  579. white-space: nowrap;
  580. font-size: 10px;
  581. }
  582. .fc-event-bg { /* makes the event lighter w/ a semi-transparent overlay */
  583. position: absolute;
  584. z-index: 1;
  585. top: 0;
  586. left: 0;
  587. width: 100%;
  588. height: 100%;
  589. background: #fff;
  590. opacity: .4;
  591. filter: alpha(opacity=40);
  592. }
  593. .fc-event-hori .fc-event-bg {
  594. opacity: .2;
  595. filter: alpha(opacity=20);
  596. }
  597. .fc .ui-draggable-dragging .fc-event-bg, /* TODO: something nicer like .fc-opacity */
  598. .fc-select-helper .fc-event-bg {
  599. display: none\9; /* for IE6/7/8. nested opacity filters while dragging don't work */
  600. }
  601. /* resizable */
  602. .fc-event-vert .ui-resizable-s {
  603. bottom: 0 !important; /* importants override pre jquery ui 1.7 styles */
  604. width: 100% !important;
  605. height: 8px !important;
  606. overflow: hidden !important;
  607. line-height: 8px !important;
  608. font-size: 11px !important;
  609. font-family: monospace;
  610. text-align: center;
  611. cursor: s-resize;
  612. }
  613. .fc-agenda .ui-resizable-resizing { /* TODO: better selector */
  614. _overflow: hidden;
  615. }
  616. .fc-timeline {
  617. position: absolute;
  618. width: 100%;
  619. left: 0;
  620. margin: 0;
  621. padding: 0;
  622. border: none;
  623. border-top: 2px solid #585858;
  624. z-index: 2;
  625. }
  626. .fc-timeline-arrow {
  627. position: absolute;
  628. left: 0;
  629. width: 6px;
  630. height: 12px;
  631. background-image: url('../images/resource_arrow_right.svg');
  632. z-index: 2;
  633. }
  634. /* List view (by bruederli@kolabsys.com)
  635. ------------------------------------------------------------------------*/
  636. .fc-view-list,
  637. .fc-view-table,
  638. .fc-view-todo {
  639. top: 0px;
  640. width: auto;
  641. }
  642. .fc-view-trans .fc-table-dateinfo,
  643. .fc-view-trans .fc-table-datepicker {
  644. opacity: 0.5;
  645. }
  646. .fc-view-table {
  647. padding-left: 8px;
  648. }
  649. .fc-list-content {
  650. float: left;
  651. position: relative;
  652. border: 1px solid #ccc;
  653. }
  654. .fc-view-list .fc-list-header,
  655. .fc-view-table td.fc-list-header,
  656. .fc-view-todo td.fc-list-header {
  657. background-color:#F0F0F0;
  658. color: #404040;
  659. font-size: 1em;
  660. padding: 0px 10px;
  661. height: 18px;
  662. line-height: 18px;
  663. }
  664. .fc-view-table .fc-first td.fc-list-header,
  665. .fc-view-todo .fc-first td.fc-list-header {
  666. border-top-width: 0;
  667. }
  668. .fc-list-header td
  669. {
  670. height: 16px;
  671. }
  672. .fc-list-section td
  673. {
  674. height: 14px;
  675. }
  676. .fc-list-section {
  677. padding: 4px 2px;
  678. border-width: 0;
  679. border-bottom-width: 1px;
  680. }
  681. .fc-view-list .fc-last,
  682. .fc-view-table .fc-last,
  683. .fc-view-todo .fc-last {
  684. border-bottom-width: 0;
  685. }
  686. .fc-list-section .fc-event {
  687. position: relative;
  688. margin: 1px 2px 3px 2px;
  689. }
  690. .fc-view-table tr.fc-event td,
  691. .fc-view-todo tr.fc-event td {
  692. font-size: 1.2em;
  693. height: 15px !important;
  694. line-height: 15px !important;
  695. padding: 2px;
  696. background-clip: padding-box;
  697. }
  698. .fc-view-table tr.fc-event td {
  699. border-top: 1px solid transparent !important;
  700. }
  701. .fc-view-todo tr.fc-event td {
  702. border-top: 1px solid #ffffff !important;
  703. }
  704. .fc-view-table tr.fc-event.fc-last td/*,
  705. .fc-view-todo tr.fc-event.fc-last td*/ {
  706. border-bottom: 1px solid transparent !important;
  707. background-clip: padding-box;
  708. }
  709. .fc-view-table td.fc-list-header.fc-widget-header,
  710. .fc-view-todo td.fc-list-header.fc-widget-header {
  711. border: none;
  712. /* border-top: 1px solid #fff; XXX*/
  713. }
  714. .fc-view-table .fc-list-section.fc-widget-content:last-child .fc-event-row.fc-last:last-child td,
  715. .fc-view-todo .fc-list-section.fc-widget-content:last-child .fc-event-row.fc-last:last-child td {
  716. border-bottom-width: 0;
  717. }
  718. .fc-view-table tr.fc-event td.fc-event-handle,
  719. .fc-view-todo tr.fc-event td.fc-event-handle {
  720. height: 100%;
  721. width: 6px;
  722. padding: 0px;
  723. border-color: #F0F0F0; /* default BORDER color */
  724. background-color: #F0F0F0; /* default BACKGROUND color */
  725. }
  726. .fc-view-table table,
  727. .fc-view-todo table {
  728. table-layout: fixed;
  729. width: 100%;
  730. }
  731. .fc-view-table col.fc-event-handle,
  732. .fc-view-todo col.fc-event-handle {
  733. width: 6px;
  734. }
  735. .fc-event-handle .fc-event-inner {
  736. border-color: inherit;
  737. background-color: inherit;
  738. }
  739. .fc-view-table col.fc-event-date,
  740. .fc-view-todo col.fc-event-date {
  741. width: 7em;
  742. }
  743. .fc-view-table .fc-list-day col.fc-event-date,
  744. .fc-view-todo .fc-list-day col.fc-event-date {
  745. width: 1px;
  746. }
  747. .fc-view-table col.fc-event-time {
  748. width: 23em;
  749. }
  750. .fc-view-table td.fc-event-date,
  751. .fc-view-table td.fc-event-time,
  752. .fc-view-todo td.fc-event-date,
  753. .fc-view-todo td.fc-event-time {
  754. white-space: nowrap;
  755. padding-right: 1em;
  756. }
  757. .fc-view-table td.fc-event-title,
  758. .fc-view-todo td.fc-event-title,
  759. .fc-view-todo td.fc-event-time,
  760. .fc-view-todo td.fc-event-location {
  761. overflow: hidden;
  762. text-overflow: ellipsis;
  763. white-space: nowrap;
  764. }
  765. .fc-view-todo col.fc-event-check {
  766. width: 22px;
  767. }
  768. .fc-event-check {
  769. text-align: left;
  770. }
  771. .fc-event-check input[type="checkbox"]
  772. {
  773. margin-top: -4px;
  774. margin-right: 0;
  775. margin-bottom: -2px !important;
  776. margin-left: 4px;
  777. }
  778. .fc-view-todo col.fc-event-priority {
  779. width: 18px;
  780. }
  781. .fc-view-todo col.fc-event-time {
  782. width: 142px;
  783. }
  784. .fc-view-todo col.fc-event-location {
  785. width: 150px;
  786. }
  787. .fc-event-title {
  788. padding: 2px 4px !important;
  789. }
  790. .fc-view-todo col.fc-event-status {
  791. width: 24px;
  792. }
  793. .fc-view-todo col.fc-event-percent {
  794. width: 40px;
  795. }
  796. .fc-view-todo td.fc-event-percent {
  797. text-align: right;
  798. padding-right: 4px !important;
  799. }
  800. .fc-view-todo col.fc-hidden-empty,
  801. .fc-view-todo col.fc-hidden-width {
  802. width: 0;
  803. }
  804. .fc-view-table .fc-table-dateinfo,
  805. .fc-view-todo .fc-table-dateinfo {
  806. float: left;
  807. text-align: left;
  808. padding-left: 10px;
  809. padding-bottom: 1px; /* check on FF */
  810. margin-top: -8px; /* check on FF */
  811. }
  812. .fc-view-table .fc-table-datepicker,
  813. .fc-view-todo .fc-table-datepicker {
  814. float: right;
  815. text-align: right;
  816. padding-right: 10px;
  817. padding-bottom: 1px; /* check on FF */
  818. margin-top: -8px; /* check on FF */
  819. }
  820. .fc-table-datepicker .ui-widget-content {
  821. display: inline-block !important;
  822. border-width: 0px;
  823. }
  824. .fc-view-table .fc-table-datepicker-no-default .ui-state-active,
  825. .fc-view-todo .fc-table-datepicker-no-default .ui-state-active {
  826. border: 1px solid #c0c0c0;
  827. background: #ffffff;
  828. font-weight: 400;
  829. color: #404040;
  830. }
  831. .fc-view-table .fc-table-dateinfo-number,
  832. .fc-view-todo .fc-table-dateinfo-number {
  833. position: relative;
  834. display: inline-block;
  835. color: #c0c0c0;
  836. font-weight: 300;
  837. margin-top: -5px;
  838. }
  839. .fc-view-table .fc-table-dateinfo-number div,
  840. .fc-view-todo .fc-table-dateinfo-number div {
  841. position: absolute;
  842. padding-bottom: 15px;
  843. bottom: 0px;
  844. }
  845. .fc-view-table .fc-table-dateinfo-text,
  846. .fc-view-todo .fc-table-dateinfo-text {
  847. color: #c0c0c0;
  848. line-height: 0.9em;
  849. font-size: 1.5em;
  850. font-weight: 300;
  851. }
  852. .fc-filter {
  853. float: left;
  854. }
  855. .fc-filter-table-header {
  856. font-weight: 500 !important;
  857. height: 20px !important;
  858. border: 1px dashed #c0c0c0 !important;
  859. vertical-align: middle !important;
  860. text-align: center;
  861. cursor: default;
  862. user-select: none;
  863. -webkit-user-select: none;
  864. -moz-user-select: none;
  865. }
  866. .fc-filter-table-footer {
  867. font-size: 0.9em;
  868. height: 20px !important;
  869. border-top: 1px solid #c0c0c0 !important;
  870. vertical-align: middle !important;
  871. text-align: center;
  872. cursor: default;
  873. user-select: none;
  874. -webkit-user-select: none;
  875. -moz-user-select: none;
  876. }
  877. .fc-filter-option {
  878. height: 20px !important;
  879. background-color: #ffffff;
  880. border: 1px solid #c0c0c0 !important;
  881. vertical-align: middle !important;
  882. text-align: center;
  883. cursor: pointer;
  884. }
  885. .fc-filter-option:hover {
  886. background-color: #e7e7e7;
  887. }
  888. /*
  889. .fc-filter-option.fc-filter-option-last {
  890. border-right: 0px !important;
  891. }
  892. */
  893. .fc-filter-option.fc-filter-option-selected {
  894. color: #ffffff;
  895. background-color: #585858;
  896. }
  897. .fc-filter-hide {
  898. display: none;
  899. }
  900. .fc-view-table .fc-month-nav,
  901. .fc-view-todo .fc-month-nav {
  902. color: #ffffff !important;
  903. background: #585858 !important;
  904. text-align: center;
  905. cursor: pointer;
  906. }
  907. /*
  908. .fc-view-table .fc-month-nav.fc-month-prev,
  909. .fc-view-todo .fc-month-nav.fc-month-prev {
  910. border-bottom: 1px solid #c0c0c0 !important;
  911. }
  912. .fc-view-table .fc-month-nav.fc-month-next,
  913. .fc-view-todo .fc-month-nav.fc-month-next {
  914. border-top: 1px solid #c0c0c0 !important;
  915. }
  916. .fc-view-table .fc-month-nav:hover,
  917. .fc-view-todo .fc-month-nav:hover {
  918. background: #e7e7e7 !important;
  919. }
  920. */
  921. .fc-table-datepicker .ui-datepicker {
  922. width: 225px;
  923. }
  924. .fc-table-datepicker .ui-datepicker-title {
  925. height: 20px;
  926. margin: 0 0 0 24px;
  927. }
  928. .fc-table-datepicker .ui-datepicker-title span {
  929. margin-top: 0;
  930. vertical-align: middle;
  931. }
  932. .fc-view-table .fc-table-datepicker .ui-datepicker-header {
  933. display: none;
  934. }
  935. .fc-view-todo .fc-table-datepicker .ui-datepicker-header {
  936. color: #404040;
  937. background: none;
  938. font-size: 0.95em;
  939. }
  940. .fc-view-todo .fc-table-datepicker-current .ui-datepicker-title {
  941. color: #ffffff;
  942. background-color: #585858;
  943. }
  944. .fc-view-todo .fc-table-datepicker .ui-datepicker-prev,
  945. .fc-view-todo .fc-table-datepicker .ui-datepicker-next {
  946. display: none;
  947. }
  948. .fc-table-datepicker .ui-datepicker-week-col {
  949. text-align: center;
  950. vertical-align: middle;
  951. font-size: 0.8em;
  952. }
  953. .fc-table-datepicker .ui-datepicker th {
  954. display: table-cell;
  955. text-align: center;
  956. border: 0;
  957. padding: 1px;
  958. }
  959. .fc-table-datepicker .ui-datepicker td span,
  960. .fc-table-datepicker .ui-datepicker td a {
  961. width: 20px;
  962. line-height: 17px;
  963. }
  964. .fc-table-datepicker tbody tr {
  965. height: 23px;
  966. }
  967. /*
  968. .fc-table-datepicker .ui-datepicker-today a {
  969. font-weight: 400;
  970. color: #404040;
  971. background: #c0c0c0;
  972. border: 1px solid #c0c0c0;
  973. }
  974. .fc-table-datepicker .ui-datepicker-today .ui-state-active {
  975. border: 1px solid #585858;
  976. background: #585858;
  977. color: #ffffff;
  978. }
  979. */
  980. .fc-event-img {
  981. float: left;
  982. height: 15px;
  983. width: 15px;
  984. padding-right: 2px;
  985. }
  986. .fc-event-urgent {
  987. color: #9E2F36;
  988. }
  989. .fc-event-pastdue {
  990. color: #E30613;
  991. }
  992. .fc-event.fc-event-row:hover
  993. {
  994. color: #404040;
  995. background-color: #e7e7e7;
  996. cursor: pointer;
  997. }
  998. .fc-event.fc-event-row.fc-event-urgent:hover
  999. {
  1000. color: #9E2F36;
  1001. background-color: #fedee0;
  1002. cursor: pointer;
  1003. }
  1004. .fc-event.fc-event-row.fc-event-pastdue:hover
  1005. {
  1006. color: #e30613;
  1007. background-color: #fedee0;
  1008. cursor: pointer;
  1009. }
  1010. .fc-event.fc-event-row.fc-event-selected
  1011. {
  1012. color: #eeeeee;
  1013. background-color: #585858 !important;
  1014. }
  1015. .fc-event.fc-event-row.fc-event-selected.fc-event-urgent
  1016. {
  1017. color: #ffffff;
  1018. background-color: #9E2F36 !important;
  1019. }
  1020. .fc-event.fc-event-row.fc-event-selected.fc-event-pastdue
  1021. {
  1022. color: #ffffff;
  1023. background-color: #e30613 !important;
  1024. }
  1025. .fc-event-priority-3 {
  1026. background-image: url(../images/priority-1.svg);
  1027. background-repeat: no-repeat;
  1028. background-position: center;
  1029. }
  1030. .fc-event-priority-2 {
  1031. background-image: url(../images/priority-2.svg);
  1032. background-repeat: no-repeat;
  1033. background-position: center;
  1034. }
  1035. .fc-event-priority-1 {
  1036. background-image: url(../images/priority-3.svg);
  1037. background-repeat: no-repeat;
  1038. background-position: center;
  1039. }
  1040. .fc-event-urgent .fc-event-priority-3 {
  1041. background-image: url(../images/priority-1-dr.svg);
  1042. background-repeat: no-repeat;
  1043. background-position: center;
  1044. }
  1045. .fc-event-urgent .fc-event-priority-2 {
  1046. background-image: url(../images/priority-2-dr.svg);
  1047. background-repeat: no-repeat;
  1048. background-position: center;
  1049. }
  1050. .fc-event-urgent .fc-event-priority-1 {
  1051. background-image: url(../images/priority-3-dr.svg);
  1052. background-repeat: no-repeat;
  1053. background-position: center;
  1054. }
  1055. .fc-event-pastdue .fc-event-priority-3 {
  1056. background-image: url(../images/priority-1-r.svg);
  1057. background-repeat: no-repeat;
  1058. background-position: center;
  1059. }
  1060. .fc-event-pastdue .fc-event-priority-2 {
  1061. background-image: url(../images/priority-2-r.svg);
  1062. background-repeat: no-repeat;
  1063. background-position: center;
  1064. }
  1065. .fc-event-pastdue .fc-event-priority-1 {
  1066. background-image: url(../images/priority-3-r.svg);
  1067. background-repeat: no-repeat;
  1068. background-position: center;
  1069. }
  1070. .fc-event-selected .fc-event-priority-3 {
  1071. background-image: url(../images/priority-1-w.svg);
  1072. background-repeat: no-repeat;
  1073. background-position: center;
  1074. }
  1075. .fc-event-selected .fc-event-priority-2 {
  1076. background-image: url(../images/priority-2-w.svg);
  1077. background-repeat: no-repeat;
  1078. background-position: center;
  1079. }
  1080. .fc-event-selected .fc-event-priority-1 {
  1081. background-image: url(../images/priority-3-w.svg);
  1082. background-repeat: no-repeat;
  1083. background-position: center;
  1084. }
  1085. .fc-event-filterAction .fc-event-status {
  1086. background-image: url(../images/needs_action_b.svg);
  1087. background-repeat: no-repeat;
  1088. background-position: center;
  1089. }
  1090. .fc-event-filterProgress .fc-event-status {
  1091. background-image: url(../images/in_progress_b.svg);
  1092. background-repeat: no-repeat;
  1093. background-position: center;
  1094. }
  1095. .fc-event-filterCompleted .fc-event-status {
  1096. background-image: url(../images/success_b.svg);
  1097. background-repeat: no-repeat;
  1098. background-position: center;
  1099. }
  1100. .fc-event-filterCanceled .fc-event-status {
  1101. background-image: url(../images/reset_b.svg);
  1102. background-repeat: no-repeat;
  1103. background-position: center;
  1104. }
  1105. .fc-event-urgent.fc-event-filterAction .fc-event-status {
  1106. background-image: url(../images/needs_action_dr.svg);
  1107. background-repeat: no-repeat;
  1108. background-position: center;
  1109. }
  1110. .fc-event-urgent.fc-event-filterProgress .fc-event-status {
  1111. background-image: url(../images/in_progress_dr.svg);
  1112. background-repeat: no-repeat;
  1113. background-position: center;
  1114. }
  1115. .fc-event-urgent.fc-event-filterCompleted .fc-event-status {
  1116. background-image: url(../images/success_dr.svg);
  1117. background-repeat: no-repeat;
  1118. background-position: center;
  1119. }
  1120. .fc-event-urgent.fc-event-filterCanceled .fc-event-status {
  1121. background-image: url(../images/reset_dr.svg);
  1122. background-repeat: no-repeat;
  1123. background-position: center;
  1124. }
  1125. .fc-event-pastdue.fc-event-filterAction .fc-event-status {
  1126. background-image: url(../images/needs_action_r.svg);
  1127. background-repeat: no-repeat;
  1128. background-position: center;
  1129. }
  1130. .fc-event-pastdue.fc-event-filterProgress .fc-event-status {
  1131. background-image: url(../images/in_progress_r.svg);
  1132. background-repeat: no-repeat;
  1133. background-position: center;
  1134. }
  1135. .fc-event-pastdue.fc-event-filterCompleted .fc-event-status {
  1136. background-image: url(../images/success_r.svg);
  1137. background-repeat: no-repeat;
  1138. background-position: center;
  1139. }
  1140. .fc-event-pastdue.fc-event-filterCanceled .fc-event-status {
  1141. background-image: url(../images/reset_r.svg);
  1142. background-repeat: no-repeat;
  1143. background-position: center;
  1144. }
  1145. .fc-event-selected.fc-event-filterAction .fc-event-status {
  1146. background-image: url(../images/needs_action_w.svg);
  1147. background-repeat: no-repeat;
  1148. background-position: center;
  1149. }
  1150. .fc-event-selected.fc-event-filterProgress .fc-event-status {
  1151. background-image: url(../images/in_progress_w.svg);
  1152. background-repeat: no-repeat;
  1153. background-position: center;
  1154. }
  1155. .fc-event-selected.fc-event-filterCompleted .fc-event-status {
  1156. background-image: url(../images/success_w.svg);
  1157. background-repeat: no-repeat;
  1158. background-position: center;
  1159. }
  1160. .fc-event-selected.fc-event-filterCanceled .fc-event-status {
  1161. background-image: url(../images/reset_w.svg);
  1162. background-repeat: no-repeat;
  1163. background-position: center;
  1164. }
  1165. .fc-event-selected.fc-event-urgent.fc-event-filterCompleted .fc-event-status {
  1166. background-image: url(../images/success_drw.svg);
  1167. background-repeat: no-repeat;
  1168. background-position: center;
  1169. }
  1170. .fc-event-selected.fc-event-urgent.fc-event-filterCanceled .fc-event-status {
  1171. background-image: url(../images/reset_drw.svg);
  1172. background-repeat: no-repeat;
  1173. background-position: center;
  1174. }
  1175. .fc-event-selected.fc-event-pastdue.fc-event-filterCompleted .fc-event-status {
  1176. background-image: url(../images/success_rw.svg);
  1177. background-repeat: no-repeat;
  1178. background-position: center;
  1179. }
  1180. .fc-event-selected.fc-event-pastdue.fc-event-filterCanceled .fc-event-status {
  1181. background-image: url(../images/reset_rw.svg);
  1182. background-repeat: no-repeat;
  1183. background-position: center;
  1184. }