Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. /**** CALENDAR ****/
  2. .caldiv {
  3. position:absolute;
  4. visibility:hidden;
  5. background-color:white;
  6. width: 144px;
  7. z-index: 301; /* always on top(?) */
  8. }
  9. div.cal_wrapper { }
  10. div.cal_body {
  11. margin: 16px;
  12. background-color: #DDD;
  13. position: relative;
  14. border-radius: 5px;
  15. -moz-border-radius: 5px;
  16. -webkit-border-radius: 5px;
  17. }
  18. div.cal_head {
  19. margin: 16px;
  20. margin-bottom: 0px;
  21. }
  22. div.cal_head div {
  23. font-size: 18px;
  24. color: #666;
  25. padding-top: 8px;
  26. }
  27. div.cal_view_body {
  28. margin: 16px;
  29. }
  30. div.cal_view_body_plain {
  31. margin: 16px;
  32. }
  33. div.cal_month_head {
  34. }
  35. div.cal_month_body {
  36. border-top: 1px solid #888;
  37. }
  38. .cal_month_headtable {
  39. /*table-layout:fixed;*/
  40. width: 100%;
  41. }
  42. .cal_month_name {
  43. width: 100%;
  44. color: #888;
  45. font-size: 14px;
  46. font-weight: bold;
  47. text-align: center;
  48. padding: 4px;
  49. }
  50. .cal_month_headtable tr td{
  51. font-size: 12px;
  52. font-weight: bold;
  53. text-align: center;
  54. padding: 4px;
  55. }
  56. table.cal_month_table {
  57. border-collapse: collapse;
  58. /*table-layout:fixed;*/
  59. height: 100%;
  60. width: 100%;
  61. }
  62. table.cal_month_table td {
  63. width: 14.29%;
  64. height: 20%;
  65. /*overflow:hidden;*/
  66. padding:0px;
  67. }
  68. div.cal_month_date {
  69. width:100%;
  70. height:25%;
  71. font-size: 10px;
  72. overflow:hidden;
  73. /*background-color: #EEF;*/
  74. }
  75. div.cal_month_date_holiday {
  76. /*background-color: #FFF;*/
  77. }
  78. div.cal_month_unit {
  79. width:100%;
  80. height:75%;
  81. overflow:hidden;
  82. cursor:pointer;
  83. /*background-color:#FFF;*/
  84. }
  85. div.cal_vu_disabled {
  86. background-color:#FFF;
  87. cursor:default;
  88. }
  89. table.cal_day_table {
  90. border-collapse: collapse;
  91. width: 100%;
  92. }
  93. table.cal_day_table td {
  94. }
  95. div.cal_day_body {
  96. width: 100%;
  97. height: 80%;
  98. overflow-y: auto;
  99. overflow-x: hidden;
  100. border-top: 1px solid #AAA;
  101. }
  102. div.cal_day_unit{
  103. width:100%;
  104. cursor:pointer;
  105. }
  106. table.cal_week_table {
  107. border-collapse: collapse;
  108. width: 100%;
  109. }
  110. table.cal_week_table td {
  111. width: 12.5%;
  112. }
  113. div.cal_week_body {
  114. width: 100%;
  115. height: 80%;
  116. overflow-y: auto;
  117. overflow-x: hidden;
  118. border-top: 1px solid #888;
  119. }
  120. div.cal_week_unit{
  121. width: 100%;
  122. cursor:pointer;
  123. }
  124. div.cal_event {
  125. width: 100%;
  126. height: 12px;
  127. overflow: hidden;
  128. font-size: 11px;
  129. color: #00B;
  130. margin-bottom: 2px;
  131. text-decoration: underline;
  132. }
  133. div.cal_event_Public {
  134. color: GREEN;
  135. }
  136. div.cal_event_Private {
  137. color: BLUE;
  138. }
  139. div.cal_event_hover {
  140. text-decoration: underline;
  141. }