border-radius.css 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /* This is for Gecko-based browsers */
  2. /*
  3. .DynarchCalendar {
  4. -moz-border-radius: 5px;
  5. -webkit-border-radius: 5px;
  6. border-radius: 5px;
  7. }
  8. .DynarchCalendar-title, .DynarchCalendar-title div {
  9. -moz-border-radius: 0 0 4px 4px;
  10. -webkit-border-radius: 0 0 4px 4px;
  11. border-radius: 0 0 4px 4px;
  12. }
  13. .DynarchCalendar-topBar {
  14. -moz-border-radius: 4px 4px 0 0;
  15. -webkit-border-radius: 4px;
  16. border-radius: 4px 4px 0 0;
  17. }
  18. .DynarchCalendar-bottomBar {
  19. -moz-border-radius: 0 0 4px 4px;
  20. -webkit-border-radius: 0 0 4px 4px;
  21. border-radius: 0 0 4px 4px;
  22. }
  23. .DynarchCalendar-bottomBar-today {
  24. -moz-border-radius: 4px;
  25. -webkit-border-radius: 4px;
  26. border-radius: 4px;
  27. }
  28. .DynarchCalendar-navBtn, .DynarchCalendar-navBtn div {
  29. -moz-border-radius: 4px;
  30. -webkit-border-radius: 4px;
  31. border-radius: 4px;
  32. }
  33. .DynarchCalendar-menu {
  34. -moz-border-radius: 5px;
  35. -webkit-border-radius: 5px;
  36. border-radius: 5px;
  37. }
  38. .DynarchCalendar-menu table td div {
  39. -moz-border-radius: 4px;
  40. -webkit-border-radius: 4px;
  41. border-radius: 4px;
  42. }
  43. .DynarchCalendar-weekNumber {
  44. -moz-border-radius: 4px 0 0 4px;
  45. -webkit-border-radius: 4px 0 0 4px;
  46. border-radius: 4px 0 0 4px;
  47. }
  48. .DynarchCalendar-day {
  49. -moz-border-radius: 4px;
  50. -webkit-border-radius: 4px;
  51. border-radius: 4px;
  52. }
  53. .DynarchCalendar-day-disabled {
  54. -moz-border-radius: 0;
  55. -webkit-border-radius: 0;
  56. border-radius: 0;
  57. }
  58. .DynarchCalendar-tooltipCont {
  59. -moz-border-radius: 0 0 5px 5px;
  60. -webkit-border-radius: 5px;
  61. }
  62. .DynarchCalendar-time-hour, .DynarchCalendar-time-minute {
  63. -moz-border-radius: 3px 0 0 3px;
  64. -webkit-border-radius: 3px;
  65. }
  66. .DynarchCalendar-time-am {
  67. -moz-border-radius: 3px;
  68. -webkit-border-radius: 3px;
  69. }
  70. */