calendar.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. .wtMonth {
  2. border-collapse: collapse;
  3. table-layout:fixed;
  4. width:100%;
  5. }
  6. .wtMonth caption {
  7. text-align: left;
  8. font-family: normal 120% 宋体, arial;
  9. font-size:12px;
  10. font-weight:normal;
  11. padding-bottom: 6px;
  12. }
  13. .wtMonth caption .wtDate{
  14. font-size:150%;
  15. font-weight:bold;
  16. }
  17. .wtMonth caption .monthFlag{
  18. font-size: 100%;
  19. color: red;
  20. }
  21. .wtMonth th {
  22. border-bottom: 1px solid #dadada;
  23. border-right: 1px dashed #dadada;
  24. color: #464646;
  25. font-size: 14px;
  26. font-weight: bold;
  27. height: 44px;
  28. text-align: center;
  29. white-space: nowrap;
  30. background:#e6e6e6;
  31. }
  32. .wtMonth td {
  33. border: 1px solid #AAA;
  34. font: 12px 宋体;
  35. line-height:16px;
  36. padding: 2px 2px;
  37. margin:0;
  38. vertical-align: top;
  39. height: 75px;
  40. }
  41. td.common{
  42. height:23px;width:60px;text-align: center;vertical-align: middle;
  43. }
  44. .wtMonth td.workday {
  45. background-color: #86D75E;
  46. }
  47. .wtMonth td.previous, .wtMonth td.next {
  48. background-color: #eee;
  49. }
  50. .wtMonth td.active {
  51. background-color: #4999D1;
  52. }
  53. .wtMonth td.rest {
  54. background-color: #F94A8E;
  55. }
  56. .wtMonth td.weekend {
  57. background-color: #FFCCFF;
  58. }
  59. .wtMonth td.legal {
  60. background-color: #D35910;
  61. }
  62. .wtMonth td.noSetting {
  63. background-color: #FBF7B4;
  64. }
  65. .wtMonth ul {
  66. list-style-type: none;
  67. margin: 3px;
  68. padding:0;
  69. }
  70. .wtMonth li {
  71. color:#fff;
  72. background:transparent url(level-2.gif) no-repeat;
  73. padding:2px;
  74. margin-bottom: 6px;
  75. height:34px;
  76. overflow:hidden;
  77. width:100px;
  78. }
  79. .wtMonth td li.important{
  80. background:transparent url(level-1.gif) no-repeat;
  81. }