Basis of rails-driven app for local business
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

128 lines
2.3 KiB

  1. .calendar_date_select {
  2. border:#777 1px solid;
  3. display:block;
  4. width:195px;
  5. z-index: 1000;
  6. background-color:white;
  7. }
  8. /* this is a fun ie6 hack to get drop downs to stay behind the popup window. This should always be just underneath .calendar_date_select */
  9. iframe.ie6_blocker {
  10. position: absolute;
  11. z-index: 999;
  12. }
  13. .calendar_date_select thead th {
  14. color: black !important;
  15. font-weight:bold;
  16. }
  17. .calendar_date_select .cds_buttons {
  18. text-align:center;
  19. padding:5px 0px;
  20. }
  21. .calendar_date_select .cds_footer {
  22. padding:3px;
  23. font-size:10px;
  24. text-align:center;
  25. }
  26. .calendar_date_select table {
  27. margin: 0px;
  28. padding: 0px;
  29. }
  30. .calendar_date_select .cds_header {
  31. text-align:center;
  32. }
  33. .calendar_date_select .cds_header * {
  34. border:0px;
  35. background-color:white;
  36. }
  37. .calendar_date_select .cds_header span {
  38. font-size:15px;
  39. color: black;
  40. font-weight: bold;
  41. }
  42. .calendar_date_select select { font-size:11px;}
  43. .calendar_date_select .cds_header a:hover {
  44. color: white;
  45. }
  46. .calendar_date_select .cds_header a {
  47. width:22px;
  48. height:20px;
  49. text-decoration: none;
  50. font-size:14px;
  51. color:black !important;
  52. }
  53. .calendar_date_select .cds_header a.prev {
  54. float:left;
  55. }
  56. .calendar_date_select .cds_header a.next {
  57. float:right;
  58. }
  59. .calendar_date_select .cds_header a.close {
  60. float:right;
  61. display:none;
  62. }
  63. .calendar_date_select .cds_header select.month {
  64. width:90px;
  65. }
  66. .calendar_date_select .cds_header select.year {
  67. width:61px;
  68. }
  69. .calendar_date_select .cds_buttons a {
  70. color: black;
  71. font-size: 9px;
  72. }
  73. .calendar_date_select td {
  74. font-size:12px;
  75. width: 24px;
  76. height: 21px;
  77. text-align:center;
  78. vertical-align: middle;
  79. background-color: #fff;
  80. }
  81. .calendar_date_select td.weekend {
  82. }
  83. .calendar_date_select td div {
  84. color: #000;
  85. }
  86. .calendar_date_select td div.other {
  87. color: #ccc;
  88. }
  89. .calendar_date_select td.selected div {
  90. color:white;
  91. }
  92. .calendar_date_select tbody td {
  93. }
  94. .calendar_date_select td.selected {
  95. background-color:#777;
  96. }
  97. .calendar_date_select td:hover {
  98. background-color:#ccc;
  99. }
  100. .calendar_date_select td.today {
  101. border: 1px dashed #999;
  102. }
  103. .calendar_date_select td.disabled div {
  104. color: #e6e6e6;
  105. }
  106. .fieldWithErrors .calendar_date_select {
  107. border: 2px solid red;
  108. }