No Description

main.css 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /* List View
  2. --------------------------------------------------------------------------------------------------*/
  3. /* possibly reusable */
  4. .fc-event-dot {
  5. display: inline-block;
  6. width: 10px;
  7. height: 10px;
  8. border-radius: 5px;
  9. }
  10. /* view wrapper */
  11. .fc-rtl .fc-list-view {
  12. direction: rtl;
  13. /* unlike core views, leverage browser RTL */
  14. }
  15. .fc-list-view {
  16. border-width: 1px;
  17. border-style: solid;
  18. }
  19. /* table resets */
  20. .fc .fc-list-table {
  21. table-layout: auto;
  22. /* for shrinkwrapping cell content */
  23. }
  24. .fc-list-table td {
  25. border-width: 1px 0 0;
  26. padding: 8px 14px;
  27. }
  28. .fc-list-table tr:first-child td {
  29. border-top-width: 0;
  30. }
  31. /* day headings with the list */
  32. .fc-list-heading {
  33. border-bottom-width: 1px;
  34. }
  35. .fc-list-heading td {
  36. font-weight: bold;
  37. }
  38. .fc-ltr .fc-list-heading-main {
  39. float: left;
  40. }
  41. .fc-ltr .fc-list-heading-alt {
  42. float: right;
  43. }
  44. .fc-rtl .fc-list-heading-main {
  45. float: right;
  46. }
  47. .fc-rtl .fc-list-heading-alt {
  48. float: left;
  49. }
  50. /* event list items */
  51. .fc-list-item.fc-has-url {
  52. cursor: pointer;
  53. /* whole row will be clickable */
  54. }
  55. .fc-list-item-marker,
  56. .fc-list-item-time {
  57. white-space: nowrap;
  58. width: 1px;
  59. }
  60. /* make the dot closer to the event title */
  61. .fc-ltr .fc-list-item-marker {
  62. padding-right: 0;
  63. }
  64. .fc-rtl .fc-list-item-marker {
  65. padding-left: 0;
  66. }
  67. .fc-list-item-title a {
  68. /* every event title cell has an <a> tag */
  69. text-decoration: none;
  70. color: inherit;
  71. }
  72. .fc-list-item-title a[href]:hover {
  73. /* hover effect only on titles with hrefs */
  74. text-decoration: underline;
  75. }
  76. /* message when no events */
  77. .fc-list-empty-wrap2 {
  78. position: absolute;
  79. top: 0;
  80. left: 0;
  81. right: 0;
  82. bottom: 0;
  83. }
  84. .fc-list-empty-wrap1 {
  85. width: 100%;
  86. height: 100%;
  87. display: table;
  88. }
  89. .fc-list-empty {
  90. display: table-cell;
  91. vertical-align: middle;
  92. text-align: center;
  93. }
  94. .fc-unthemed .fc-list-empty {
  95. /* theme will provide own background */
  96. background-color: #eee;
  97. }