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.

133 lines
2.5 KiB

  1. .calendar_date_select {
  2. color:white;
  3. border:#777 1px solid;
  4. display:block;
  5. width:195px;
  6. z-index: 1000;
  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. font-weight:bold;
  15. background-color: #000;
  16. border-top:1px solid #777;
  17. border-bottom:2px solid #333;
  18. color: white !important;
  19. }
  20. .calendar_date_select .cds_buttons {
  21. text-align:center;
  22. padding:5px 0px;
  23. background-color: #555;
  24. }
  25. .calendar_date_select .cds_footer {
  26. background-color: black;
  27. padding:3px;
  28. font-size:12px;
  29. text-align:center;
  30. }
  31. .calendar_date_select table {
  32. margin: 0px;
  33. padding: 0px;
  34. }
  35. .calendar_date_select .cds_header {
  36. background-color: #ccc;
  37. border-bottom: 2px solid #aaa;
  38. text-align:center;
  39. }
  40. .calendar_date_select .cds_header span {
  41. font-size:15px;
  42. color: black;
  43. font-weight: bold;
  44. }
  45. .calendar_date_select select { font-size:11px;}
  46. .calendar_date_select .cds_header a:hover {
  47. color: white;
  48. }
  49. .calendar_date_select .cds_header a {
  50. width:22px;
  51. height:20px;
  52. text-decoration: none;
  53. font-size:14px;
  54. color:black !important;
  55. }
  56. .calendar_date_select .cds_header a.prev {
  57. float:left;
  58. }
  59. .calendar_date_select .cds_header a.next {
  60. float:right;
  61. }
  62. .calendar_date_select .cds_header a.close {
  63. float:right;
  64. display:none;
  65. }
  66. .calendar_date_select .cds_header select.month {
  67. width:90px;
  68. }
  69. .calendar_date_select .cds_header select.year {
  70. width:61px;
  71. }
  72. .calendar_date_select .cds_buttons a {
  73. color: white;
  74. font-size: 9px;
  75. }
  76. .calendar_date_select td {
  77. font-size:12px;
  78. width: 24px;
  79. height: 21px;
  80. text-align:center;
  81. vertical-align: middle;
  82. background-color: #666666;
  83. }
  84. .calendar_date_select td.weekend {
  85. background-color: #606060;
  86. }
  87. .calendar_date_select td div {
  88. color: #fff;
  89. }
  90. .calendar_date_select td div.other {
  91. color: #888;
  92. }
  93. .calendar_date_select td.selected div {
  94. color:black;
  95. }
  96. .calendar_date_select tbody td {
  97. border-bottom: 1px solid #555;
  98. }
  99. .calendar_date_select td.selected {
  100. background-color:white;
  101. }
  102. .calendar_date_select td:hover {
  103. background-color:#ccc;
  104. }
  105. .calendar_date_select td.today {
  106. border: 1px dashed #999;
  107. }
  108. .calendar_date_select td.disabled div {
  109. color: #454545;
  110. }
  111. .fieldWithErrors .calendar_date_select {
  112. border: 2px solid red;
  113. }