2013-04-10 3 views

답변

1

테마 작성기가 없습니다.

자유롭게 자신 만의 CSS를 만들 수 있으며 원하는 모양으로 꾸밀 수 있습니다.

는 나 자신 fullcalendar 사용하고, 이것은 당신이 얻을 관리 할 수 ​​있는지의 예입니다 : 이것은 CSS의 한 부분입니다

http://cl.ly/image/2i3R170w080i

. fullcalendar.css에서 원하는 내용을 편집하고 정의를 덮어 쓸 수 있습니다.

#calendar .icon-ok-sign { 
    position: absolute; 
    margin-left: 38px; 
    margin-top: -42px; 
} 

#calendar .fc-header-left{ 
    height: 30px; 
    border-right: solid 2px #DC9E0F; 
    text-align:center; 
    width: 50px; 
    line-height: 30px; 
} 

#calendar .fc-header-center{ 
    height: 30px; 
    line-height: 30px; 
} 

.rightArrow, .leftArrow { 
    height:30px; 
} 

.leftArrow img, .rightArrow img{ 
    height:15px; 
} 

#calendar .fc-header-right{ 
    height: 30px; 
    border-left: solid 2px #DC9E0F; 
    text-align:center; 
    width: 50px; 
    line-height: 30px; 
} 

#calendar .fc-header-title h2 { 
    line-height: 20px; 
} 

#calendar .fc-today { 
    color:#FBB616; 
} 

#calendar .fc-today.selected { 
    color:#FFF; 
} 

#calendar .selected { 
    background-color: #FBB616; 
} 
+1

저에게 FullCalendar처럼 보이지 않습니다. CSS/JS를 공유 할 수 있습니까? – ganeshk

+0

내 의견을 편집했습니다. –

관련 문제