Advertisement
Guest User

Untitled

a guest
Dec 13th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.22 KB | None | 0 0
  1. div.calendar {
  2. position:relative;
  3. }
  4. .calendar table {
  5. background:#FFFFFF none repeat scroll 0%;
  6. border:1px solid #DEDEDE;
  7. color:#000000;
  8. font-family:"Lucida Grande",Tahoma,Arial,Verdana,sans-serif;
  9. font-size:11px;
  10. }
  11. .calendar .button {
  12. padding:2px;
  13. text-align:center;
  14. }
  15. .calendar .nav {
  16. background:#F5F5F5 none repeat scroll 0%;
  17. }
  18. .calendar thead .title {
  19. background:#DEDEDE none repeat scroll 0%;
  20. color:#000000;
  21. font-weight:bold;
  22. padding:2px;
  23. text-align:center;
  24. }
  25. .calendar thead .headrow {
  26. background:#F5F5F5 none repeat scroll 0%;
  27. color:#444444;
  28. }
  29. .calendar thead .daynames {
  30. background:#FFFFFF none repeat scroll 0%;
  31. }
  32. .calendar thead .name {
  33. border-bottom:1px dotted #CCCCCC;
  34. color:#000000;
  35. padding:2px;
  36. text-align:center;
  37. }
  38. .calendar thead .weekend {
  39. color:#666666;
  40. }
  41. .calendar thead .hilite {
  42. background-color:#444444;
  43. color:#FFFFFF;
  44. padding:1px;
  45. }
  46. .calendar thead .active {
  47. background-color:#CF4723;
  48. color:#FFFFFF;
  49. padding:2px 0px 0px 2px;
  50. }
  51. .calendar tbody .day {
  52. color:#222222;
  53. padding:2px 4px 2px 2px;
  54. text-align:right;
  55. width:2em;
  56. }
  57. .calendar tbody .day.othermonth {
  58. color:#BBBBBB;
  59. font-size:80%;
  60. }
  61. .calendar tbody .day.othermonth.oweekend {
  62. color:#FFBBBB;
  63. }
  64. .calendar table .wn {
  65. background:#666666 none repeat scroll 0%;
  66. border-right:1px solid #000000;
  67. padding:2px 3px 2px 2px;
  68. }
  69. .calendar tbody .rowhilite td {
  70. background:#FFF1AF none repeat scroll 0%;
  71. }
  72. .calendar tbody .rowhilite td.wn {
  73. background:#FFF1AF none repeat scroll 0%;
  74. }
  75. .calendar tbody td.hilite {
  76. background:#444444 none repeat scroll 0% !important;
  77. color:#FFFFFF !important;
  78. padding:1px 3px 1px 1px;
  79. }
  80. .calendar tbody td.active {
  81. background:#CF4723 none repeat scroll 0% !important;
  82. color:#FFFFFF;
  83. padding:2px 2px 0px;
  84. }
  85. .calendar tbody td.selected {
  86. background:#F5F5F5 none repeat scroll 0% !important;
  87. border:1px solid #888888;
  88. color:#222222 !important;
  89. font-weight:bold;
  90. padding:1px 3px 1px 1px;
  91. }
  92. .calendar tbody td.weekend {
  93. color:#666666;
  94. }
  95. .calendar tbody td.today {
  96. color:#CF4723;
  97. font-weight:bold;
  98. }
  99. .calendar tbody .disabled {
  100. color:#999999;
  101. }
  102. .calendar tbody .emptycell {
  103. visibility:hidden;
  104. }
  105. .calendar tbody .emptyrow {
  106. display:none;
  107. }
  108. .calendar tfoot .footrow {
  109. background:#555566 none repeat scroll 0%;
  110. color:#FFFFFF;
  111. text-align:center;
  112. }
  113. .calendar tfoot .ttip {
  114. background:#DEDEDE none repeat scroll 0%;
  115. border-top:1px solid #DEDEDE;
  116. color:#222222;
  117. padding:1px;
  118. }
  119. .calendar tfoot .hilite {
  120. background:#AAAAFF none repeat scroll 0%;
  121. border:1px solid #0044FF;
  122. color:#000000;
  123. padding:1px;
  124. }
  125. .calendar tfoot .active {
  126. background:#7777CC none repeat scroll 0%;
  127. padding:2px 0px 0px 2px;
  128. }
  129. .calendar .combo {
  130. background:#F5F5F5 none repeat scroll 0%;
  131. border:1px solid #CCCCCC;
  132. color:#222222;
  133. display:none;
  134. font-size:90%;
  135. left:0px;
  136. position:absolute;
  137. top:0px;
  138. width:4em;
  139. z-index:100;
  140. }
  141. .calendar .combo .label, .calendar .combo .label-IEfix {
  142. padding:1px;
  143. text-align:center;
  144. }
  145. .calendar .combo .label-IEfix {
  146. width:4em;
  147. }
  148. .calendar .combo .hilite {
  149. background:#444444 none repeat scroll 0%;
  150. color:#FFFFFF;
  151. }
  152. .calendar .combo .active {
  153. background:#DEDEDE none repeat scroll 0%;
  154. border-bottom:1px solid #999999;
  155. border-top:1px solid #999999;
  156. font-weight:bold;
  157. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement