CalendarControl.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. #CalendarControlIFrame {
  2. display: none;
  3. left: 0px;
  4. position: absolute;
  5. top: 0px;
  6. height: 250px;
  7. width: 250px;
  8. z-index: 99;
  9. }
  10. #CalendarControl {
  11. position:absolute;
  12. background-color:#FFF;
  13. margin:0;
  14. padding:0;
  15. display:none;
  16. z-index: 100;
  17. }
  18. #CalendarControl table {
  19. font-family: arial, verdana, helvetica, sans-serif;
  20. font-size: 8pt;
  21. border-left: 1px solid #336;
  22. border-right: 1px solid #336;
  23. }
  24. #CalendarControl th {
  25. font-weight: normal;
  26. }
  27. #CalendarControl th a {
  28. font-weight: normal;
  29. text-decoration: none;
  30. color: #FFF;
  31. padding: 1px;
  32. }
  33. #CalendarControl td {
  34. text-align: center;
  35. }
  36. #CalendarControl .header {
  37. background-color: Gray;
  38. }
  39. #CalendarControl .weekday {
  40. background-color: #DDD;
  41. color: #000;
  42. }
  43. #CalendarControl .weekend {
  44. background-color: #FFC;
  45. color: #000;
  46. }
  47. #CalendarControl .current {
  48. border: 1px solid #339;
  49. background-color: #F64400;
  50. color: #FFF;
  51. }
  52. #CalendarControl .weekday,
  53. #CalendarControl .weekend,
  54. #CalendarControl .current {
  55. display: block;
  56. text-decoration: none;
  57. border: 1px solid #FFF;
  58. width: 2em;
  59. }
  60. #CalendarControl .weekday:hover,
  61. #CalendarControl .weekend:hover,
  62. #CalendarControl .current:hover {
  63. color: #FFF;
  64. background-color: #F64400;
  65. border: 1px solid #999;
  66. }
  67. #CalendarControl .previous {
  68. text-align: left;
  69. }
  70. #CalendarControl .next {
  71. text-align: right;
  72. }
  73. #CalendarControl .previous,
  74. #CalendarControl .next {
  75. padding: 1px 3px 1px 3px;
  76. font-size: 1.4em;
  77. }
  78. #CalendarControl .previous a,
  79. #CalendarControl .next a {
  80. color: #FFF;
  81. text-decoration: none;
  82. font-weight: bold;
  83. }
  84. #CalendarControl .title {
  85. text-align: center;
  86. font-weight: bold;
  87. color: #FFF;
  88. }
  89. #CalendarControl .empty {
  90. background-color: #CCC;
  91. border: 1px solid #FFF;
  92. }