You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

calendar-default.css 4.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. /* The main calendar widget. DIV containing a table. */
  2. div.calendar { position: relative; }
  3. .calendar, .calendar table {
  4. border: 1px solid #aaaaaa;
  5. font-size: 11px;
  6. color: #000000;
  7. cursor: default;
  8. background: #ffffff;
  9. font-family: tahoma,verdana,sans-serif;
  10. border-collapse: collapse;
  11. }
  12. /* Header part -- contains navigation buttons and day names. */
  13. .calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  14. text-align: center; /* They are the navigation buttons */
  15. padding: 2px; /* Make the buttons seem like they're pressing */
  16. border: 1px solid #aaaaaa;
  17. }
  18. .calendar .nav {
  19. background: #ffffff url(menuarrow.gif) no-repeat 100% 100%;
  20. }
  21. .calendar thead .title { /* This holds the current "month, year" */
  22. font-weight: bold; /* Pressing it will take you to the current date */
  23. text-align: center;
  24. background: #fff;
  25. background-repeat: repeat-x; color: #000;
  26. padding: 2px;
  27. }
  28. .calendar thead .headrow { /* Row <TR> containing navigation buttons */
  29. background: #f5f5fa;
  30. color: #000000;
  31. }
  32. .calendar thead .daynames { /* Row <TR> containing the day names */
  33. background: #ffffff;
  34. backgound-image:
  35. }
  36. .calendar thead .name { /* Cells <TD> containing the day names */
  37. border-bottom: 1px solid #556;
  38. padding: 2px;
  39. text-align: center;
  40. color: #000;
  41. }
  42. .calendar thead .weekend { /* How a weekend day name shows in header */
  43. color: #a66;
  44. }
  45. .calendar thead .hilite { /* How do the buttons in header appear when hover */
  46. background-color: #bbb;
  47. background-repeat: repeat-x;
  48. color: #000;
  49. padding: 1px;
  50. }
  51. .calendar thead .active { /* Active (pressed) buttons in header */
  52. padding: 2px 0px 0px 2px;
  53. }
  54. /* The body part -- contains all the days in month. */
  55. .calendar tbody .day { /* Cells <TD> containing month days dates */
  56. width: 2em;
  57. color: #456;
  58. text-align: right;
  59. padding: 2px 4px 2px 2px;
  60. }
  61. .calendar tbody .day.othermonth {
  62. font-size: 80%;
  63. color: #bbb;
  64. }
  65. .calendar tbody .day.othermonth.oweekend {
  66. color: #fbb;
  67. }
  68. .calendar table .wn {
  69. padding: 2px 3px 2px 2px;
  70. border-right: 1px solid #000;
  71. background: #ffffff;
  72. }
  73. .calendar tbody .rowhilite td {
  74. }
  75. .calendar tbody .rowhilite td.wn {
  76. }
  77. .calendar tbody td.hilite { /* Hovered cells <TD> */
  78. Xpadding: 1px 3px 1px 1px;
  79. xborder: 1px solid #bbb;
  80. background-color: #bbb;
  81. }
  82. .calendar tbody td.active { /* Active (pressed) cells <TD> */
  83. background: #cde;
  84. padding: 2px 2px 0px 2px;
  85. }
  86. .calendar tbody td.selected { /* Cell showing today date */
  87. font-weight: bold;
  88. border: 1px solid #aaaaaa;
  89. padding: 1px 3px 1px 1px;
  90. background: #fff;
  91. color: #000;
  92. }
  93. .calendar tbody td.weekend { /* Cells showing weekend days */
  94. color: #a66;
  95. }
  96. .calendar tbody td.today { /* Cell showing selected date */
  97. font-weight: bold;
  98. color: #00f;
  99. }
  100. .calendar tbody .disabled { color: #999; }
  101. .calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
  102. visibility: hidden;
  103. }
  104. .calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
  105. display: none;
  106. }
  107. /* The footer part -- status bar and "Close" button */
  108. .calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
  109. text-align: center;
  110. background: #556;
  111. color: #fff;
  112. }
  113. .calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  114. background: #fff;
  115. color: #445;
  116. border-top: 1px solid #556;
  117. padding: 1px;
  118. }
  119. .calendar tfoot .hilite { /* Hover style for buttons in footer */
  120. background: #aaf;
  121. border: 1px solid #04f;
  122. color: #000;
  123. padding: 1px;
  124. }
  125. .calendar tfoot .active { /* Active (pressed) style for buttons in footer */
  126. background: #77c;
  127. padding: 2px 0px 0px 2px;
  128. }
  129. /* Combo boxes (menus that display months/years for direct selection) */
  130. .calendar .combo {
  131. position: absolute;
  132. display: none;
  133. top: 0px;
  134. left: 0px;
  135. width: 4em;
  136. cursor: default;
  137. border: 1px solid #aaaaaa;
  138. background: #ffffff;
  139. color: #000;
  140. font-size: 90%;
  141. z-index: 100;
  142. }
  143. .calendar .combo .label,
  144. .calendar .combo .label-IEfix {
  145. text-align: center;
  146. padding: 1px;
  147. }
  148. .calendar .combo .label-IEfix {
  149. width: 4em;
  150. }
  151. .calendar .combo .hilite {
  152. background: #acf;
  153. }
  154. .calendar .combo .active {
  155. border-top: 1px solid #46a;
  156. border-bottom: 1px solid #46a;
  157. background: #eef;
  158. font-weight: bold;
  159. }
  160. .calendar td.time {
  161. border-top: 1px solid #000;
  162. padding: 1px 0px;
  163. text-align: center;
  164. background-color: #f4f0e8;
  165. }
  166. .calendar td.time .hour,
  167. .calendar td.time .minute,
  168. .calendar td.time .ampm {
  169. padding: 0px 3px 0px 4px;
  170. border: 1px solid #889;
  171. font-weight: bold;
  172. background-color: #fff;
  173. }
  174. .calendar td.time .ampm {
  175. text-align: center;
  176. }
  177. .calendar td.time .colon {
  178. padding: 0px 2px 0px 3px;
  179. font-weight: bold;
  180. }
  181. .calendar td.time span.hilite {
  182. border-color: #000;
  183. background-color: #667;
  184. color: #fff;
  185. }
  186. .calendar td.time span.active {
  187. border-color: #f00;
  188. background-color: #000;
  189. color: #0f0;
  190. }