dateRange.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. .gri_date {
  2. /* margin: 4px 4px;*/
  3. padding: 0 26px 0 6px;
  4. width: 200px !important;
  5. height: 30px;
  6. line-height: 30px;
  7. border: 1px solid #D6D6D6;
  8. background: #FFF url('../images/icon_date.png') no-repeat 100% 50%;
  9. cursor: pointer;
  10. color: #666;
  11. }
  12. .gri_date_month {
  13. width: 180px
  14. }
  15. .gri_dateRangeCalendar {
  16. position: absolute;
  17. display: none;
  18. background: #FFF;
  19. border: 1px solid #6FB1DF;
  20. padding: 10px;
  21. -moz-box-shadow: 0px 1px 3px #6FB1DF;
  22. filter: progid:DXImageTransform.Microsoft.Shadow(Strength = 5, Direction = 135, Color = "#CCCCCC");
  23. font: 12px/1.5 Tahoma, Helvetica, 'SimSun', sans-serif;
  24. }
  25. .gri_dateRangeCalendar a {
  26. color: #369;
  27. }
  28. .gri_dateRangePicker {
  29. float: left;
  30. border: 0;
  31. margin: 0;
  32. padding: 0;
  33. }
  34. .gri_dateRangeOptions {
  35. /*float: left;*/
  36. margin-top: 20px;
  37. }
  38. .gri_dateRangeOptions input.gri_dateRangeInput {
  39. width: 100px;
  40. font-size: 14px;
  41. text-align: center;
  42. border: 1px solid #DDD;
  43. }
  44. .gri_dateRangeOptions div.gri_dateRangeInput {
  45. margin-bottom: 5px;
  46. }
  47. .gri_dateRangePreMonth {
  48. float: left;
  49. width: 15px;
  50. height: 17px;
  51. background: url('../images/page.png') no-repeat 0 0;
  52. overflow: hidden;
  53. }
  54. .gri_dateRangeNextMonth {
  55. float: right;
  56. width: 15px;
  57. height: 17px;
  58. background: url('../images/page.png') no-repeat -15px 0;
  59. overflow: hidden;
  60. }
  61. .gri_dateRangePreMonth span, .gri_dateRangeNextMonth span {
  62. display: none;
  63. }
  64. .gri_dateRangeDateTable {
  65. margin: 0 10px 0 0px;
  66. padding: 0px;
  67. float: left;
  68. height:190px;
  69. empty-cells: show;
  70. border-collapse: collapse;
  71. display: inline;
  72. font-size: 12px;
  73. }
  74. .gri_dateRangeDateTable td {
  75. border: 1px solid #EEE;
  76. text-align: right;
  77. cursor: pointer;
  78. padding: 2px 3px;
  79. }
  80. .gri_dateRangeDateTable th {
  81. border-top: 1px solid #DEE6F6;
  82. border-left: 1px solid #DEE6F6;
  83. background: #E0E8F7;
  84. font-weight: 400;
  85. border-left: 1px solid #DDD;
  86. }
  87. .gri_dateRangeDateTable td.gri_dateRangeGray {
  88. color: #BBB;
  89. cursor: default;
  90. }
  91. .gri_dateRangeDateTable td.gri_dateRangeToday {
  92. color: #F90;
  93. font-weight: bold;
  94. }
  95. .gri_dateRangeSelected {
  96. background-color: #007CD9;
  97. color: #FFF;
  98. }
  99. .gri_dateRangeCompare {
  100. background-color: #B9E078;
  101. color: #FFF;
  102. }