theme.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /* customize */
  2. .fc-view{
  3. overflow: visible;
  4. }
  5. .fc-toolbar {
  6. height: 50px;
  7. color: #fff;
  8. background-color: #23b7e5;
  9. border-radius: 3px 3px 0 0;
  10. margin: 0;
  11. }
  12. .fc-toolbar .fc-button {
  13. color: #fff;
  14. background: transparent;
  15. border: none;
  16. box-shadow: none;
  17. text-shadow: none;
  18. margin: 0;
  19. height: 50px;
  20. line-height: 28px;
  21. padding: 10px;
  22. }
  23. .fc-toolbar h2 {
  24. font-size: 20px;
  25. line-height: 50px;
  26. margin: 0;
  27. text-transform: uppercase;
  28. }
  29. .fc-view .fc-widget-header{
  30. background-color: #fff;
  31. }
  32. .fc-row:hover,
  33. .fc-row:focus,
  34. .fc-row:active{
  35. position: relative;
  36. z-index: 1000;
  37. }
  38. .fc-view .fc-widget-header,
  39. .fc-view .fc-widget-content {
  40. border-color: #e3eaef;
  41. font-weight: normal;
  42. }
  43. .fc-view .fc-day-header{
  44. padding: 4px 4px;
  45. }
  46. .fc-view .fc-event {
  47. padding: 4px 8px;
  48. box-shadow: 0 1px 0px rgba(0,0,0,0.05);
  49. }
  50. .fc-view .fc-event-hori{
  51. padding: 4px 8px;
  52. }
  53. .fc-event {
  54. -webkit-box-sizing: content-box;
  55. -moz-box-sizing: content-box;
  56. box-sizing: content-box;
  57. }
  58. .fc-event-inner{
  59. position: relative;
  60. white-space: nowrap;
  61. text-overflow: ellipsis;
  62. }
  63. .fc-state-highlight{
  64. background-color: #f1ffed;
  65. }
  66. .fc-overlay{
  67. display: none;
  68. position: absolute;
  69. min-width: 300px;
  70. padding: 17px 0;
  71. top: auto;
  72. left: 50%;
  73. margin-left: -150px;
  74. z-index: 1000;
  75. }
  76. .fc-overlay.left{
  77. left: 100%;
  78. top: -15px;
  79. padding: 0 10px;
  80. margin: 0;
  81. }
  82. .fc-overlay.right{
  83. left: auto;
  84. right: 100%;
  85. top: -15px;
  86. padding: 0 10px;
  87. margin: 0;
  88. }
  89. .fc-overlay .panel{
  90. padding: 15px 20px;
  91. }
  92. .fc-overlay .pull-up{
  93. top: 26px;
  94. }
  95. .fc-event:hover,
  96. .fc-event:focus,
  97. .fc-event:active{
  98. z-index: 1000;
  99. }
  100. .fc-event:hover .fc-overlay,
  101. .fc-event:focus .fc-overlay,
  102. .fc-event:active .fc-overlay{
  103. display: block;
  104. }
  105. .fc-time-grid-event{
  106. overflow: visible;
  107. }
  108. .fc-time-grid .fc-event:hover{
  109. z-index: 1000 !important;
  110. }