123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- /* customize */
- .fc-view{
- overflow: visible;
- }
- .fc-toolbar {
- height: 50px;
- color: #fff;
- background-color: #23b7e5;
- border-radius: 3px 3px 0 0;
- margin: 0;
- }
- .fc-toolbar .fc-button {
- color: #fff;
- background: transparent;
- border: none;
- box-shadow: none;
- text-shadow: none;
- margin: 0;
- height: 50px;
- line-height: 28px;
- padding: 10px;
- }
- .fc-toolbar h2 {
- font-size: 20px;
- line-height: 50px;
- margin: 0;
- text-transform: uppercase;
- }
- .fc-view .fc-widget-header{
- background-color: #fff;
- }
- .fc-row:hover,
- .fc-row:focus,
- .fc-row:active{
- position: relative;
- z-index: 1000;
- }
- .fc-view .fc-widget-header,
- .fc-view .fc-widget-content {
- border-color: #e3eaef;
- font-weight: normal;
- }
- .fc-view .fc-day-header{
- padding: 4px 4px;
- }
- .fc-view .fc-event {
- padding: 4px 8px;
- box-shadow: 0 1px 0px rgba(0,0,0,0.05);
- }
- .fc-view .fc-event-hori{
- padding: 4px 8px;
- }
- .fc-event {
- -webkit-box-sizing: content-box;
- -moz-box-sizing: content-box;
- box-sizing: content-box;
- }
- .fc-event-inner{
- position: relative;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .fc-state-highlight{
- background-color: #f1ffed;
- }
- .fc-overlay{
- display: none;
- position: absolute;
- min-width: 300px;
- padding: 17px 0;
- top: auto;
- left: 50%;
- margin-left: -150px;
- z-index: 1000;
- }
- .fc-overlay.left{
- left: 100%;
- top: -15px;
- padding: 0 10px;
- margin: 0;
- }
- .fc-overlay.right{
- left: auto;
- right: 100%;
- top: -15px;
- padding: 0 10px;
- margin: 0;
- }
- .fc-overlay .panel{
- padding: 15px 20px;
- }
- .fc-overlay .pull-up{
- top: 26px;
- }
- .fc-event:hover,
- .fc-event:focus,
- .fc-event:active{
- z-index: 1000;
- }
- .fc-event:hover .fc-overlay,
- .fc-event:focus .fc-overlay,
- .fc-event:active .fc-overlay{
- display: block;
- }
- .fc-time-grid-event{
- overflow: visible;
- }
- .fc-time-grid .fc-event:hover{
- z-index: 1000 !important;
- }
|