view.scss 690 B

12345678910111213141516171819
  1. /* View Structure
  2. --------------------------------------------------------------------------------------------------*/
  3. /* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */
  4. /* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */
  5. .fc-view-container *,
  6. .fc-view-container *:before,
  7. .fc-view-container *:after {
  8. -webkit-box-sizing: content-box;
  9. -moz-box-sizing: content-box;
  10. box-sizing: content-box;
  11. }
  12. .fc-view, /* scope positioning and z-index's for everything within the view */
  13. .fc-view > table { /* so dragged elements can be above the view's main element */
  14. position: relative;
  15. z-index: 1;
  16. }