calendar.css in Pretty Calendar 7
/* calendar styles */
.block-calendar {
min-height: 40px;
width: 100%;
}
#calendar-body {
position: relative;
width: 100%;
}
.calendar-container {
background-color: #fafafa;
border: 1px solid #ccc;
margin: 0;
padding: 0;
}
.pretty-calendar-week,
.calendar-daynames {
font-size: 12px;
height: 22px;
margin: 0;
overflow: hidden;
padding: 0px;
white-space: nowrap;
width: 100%;
}
.pretty-calendar-week .pretty-calendar-weekend,
.pretty-calendar-week .pretty-calendar-day,
.calendar-daynames .pretty-calendar-weekend,
.calendar-daynames .pretty-calendar-day {
display: inline;
float: left;
height: 22px;
overflow: visible;
text-align: center;
width: 14%;
}
.pretty-calendar-week .pretty-calendar-weekend,
.calendar-daynames .pretty-calendar-weekend {
color: #06c;
width: 15%;
}
.pretty-calendar-week .calendar-value,
.calendar-daynames .calendar-value {
border: 1px solid #eee;
float: left;
height: 20px;
padding: 2px 0 0;
text-align: center;
width: 100%;
}
.calendar-daynames .calendar-value .third-letter {
display: none;
}
.pretty-calendar-week a {
color: #000;
font-weight: bold;
}
.pretty-calendar-week a div {
background-color: #dee4da;
text-decoration: underline;
}
.pretty-calendar-week a:hover div {
background-color: #06c;
color: #fff;
}
.pretty-calendar-week .pretty-calendar-today {
color: #d03;
}
.calendar-daynames {
border-bottom: 3px solid #ccc;
text-transform: uppercase;
}
.pretty-calendar-month {
border-top: 3px solid #ccc;
height: 24px;
}
.pretty-calendar-month a div {
text-decoration: none;
}
.pretty-calendar-month {
font-weight: bold;
padding-top: 2px;
text-align: center;
width: 100%;
}
.pretty-calendar-month .month-title {
padding-top: 2px;
}
.pretty-calendar-month .calendar-prev,
.pretty-calendar-month .calendar-next {
border: none;
height: 18px;
line-height: 18px;
margin: 2px 0;
padding: 0;
position: absolute;
width: 24px;
}
.pretty-calendar-month .calendar-prev {
bottom: 2px;
left: 2px;
}
.pretty-calendar-month .calendar-next {
bottom: 2px;
right: 2px;
}
.pretty-calendar-month a .calendar-prev {
background: transparent url("arrows.png") no-repeat -24px 0;
}
.pretty-calendar-month a:hover .calendar-prev {
background: transparent url("arrows.png") no-repeat 0 0;
}
.pretty-calendar-month a .calendar-next {
background: transparent url("arrows.png") no-repeat -24px -18px;
}
.pretty-calendar-month a:hover .calendar-next {
background: transparent url("arrows.png") no-repeat 0 -18px;
}
/* calendar loader styles */
.calendar_loader {
height: 0px;
left: 50%;
position: absolute;
top: 50%;
width: 0px;
}
.calendar_loader div {
background: url("ajax-loader.gif") no-repeat;
height: 48px;
margin-left: -24px;
margin-top: -40px;
width: 48px;
}
/* tooltip styles */
#tiptip_holder {
display: none;
left: 0;
position: absolute;
top: 0;
z-index: 99999;
}
#tiptip_holder.tip_top {
padding-bottom: 5px;
}
#tiptip_holder.tip_bottom {
padding-top: 5px;
}
#tiptip_holder.tip_right {
padding-left: 5px;
}
#tiptip_holder.tip_left {
padding-right: 5px;
}
#tiptip_content {
-moz-border-radius: 3px;
-moz-box-shadow: 0 0 3px #999;
-webkit-border-radius: 3px;
-webkit-box-shadow: 0 0 3px #999;
background-color: rgb(215,220,225);
border: 1px solid rgba(0,0,0,0.25);
border-radius: 3px;
box-shadow: 0 0 3px #999;
color: #333;
font-size: 11px;
padding: 4px 8px;
text-shadow: 0 0 1px #fff;
}
#tiptip_arrow,
#tiptip_arrow_inner {
border-color: transparent;
border-style: solid;
border-width: 6px;
height: 0;
position: absolute;
width: 0;
}
#tiptip_holder.tip_top #tiptip_arrow {
border-top-color: #fff;
border-top-color: rgba(255,255,255,0.35);
}
#tiptip_holder.tip_bottom #tiptip_arrow {
border-bottom-color: #fff;
border-bottom-color: rgba(255,255,255,0.35);
}
#tiptip_holder.tip_right #tiptip_arrow {
border-right-color: #fff;
border-right-color: rgba(255,255,255,0.35);
}
#tiptip_holder.tip_left #tiptip_arrow {
border-left-color: #fff;
border-left-color: rgba(255,255,255,0.35);
}
#tiptip_holder.tip_top #tiptip_arrow_inner {
border-top-color: rgb(215,220,225);
margin-left: -6px;
margin-top: -7px;
}
#tiptip_holder.tip_bottom #tiptip_arrow_inner {
border-bottom-color: rgb(215,220,225);
margin-left: -6px;
margin-top: -5px;
}
#tiptip_holder.tip_right #tiptip_arrow_inner {
border-right-color: rgb(215,220,225);
margin-left: -5px;
margin-top: -6px;
}
#tiptip_holder.tip_left #tiptip_arrow_inner {
border-left-color: rgb(215,220,225);
margin-left: -7px;
margin-top: -6px;
}
#tiptip_content ul {
font-size: 11px;
list-style: none;
margin: 0;
padding: 5px 10px;
}
#tiptip_content ul li {
margin: 0;
padding: 0;
}
#tiptip_content a {
text-decoration: underline;
}
#tiptip_content .tooltip_summary {
border-top: 1px dotted #bbb;
margin: 0.4em 0.2em;
padding: 0;
text-align: right;
}
/* tooltip loader styles */
.tooltip_loader {
height: 48px;
padding: 8px 8px;
width: 48px;
}
.tooltip_loader div {
background: url("ajax-loader.gif") no-repeat;
height: 48px;
width: 48px;
}
File
themes/standard/calendar.css
View source
- /* calendar styles */
- .block-calendar {
- min-height: 40px;
- width: 100%;
- }
- #calendar-body {
- position: relative;
- width: 100%;
- }
- .calendar-container {
- background-color: #fafafa;
- border: 1px solid #ccc;
- margin: 0;
- padding: 0;
- }
- .pretty-calendar-week,
- .calendar-daynames {
- font-size: 12px;
- height: 22px;
- margin: 0;
- overflow: hidden;
- padding: 0px;
- white-space: nowrap;
- width: 100%;
- }
- .pretty-calendar-week .pretty-calendar-weekend,
- .pretty-calendar-week .pretty-calendar-day,
- .calendar-daynames .pretty-calendar-weekend,
- .calendar-daynames .pretty-calendar-day {
- display: inline;
- float: left;
- height: 22px;
- overflow: visible;
- text-align: center;
- width: 14%;
- }
- .pretty-calendar-week .pretty-calendar-weekend,
- .calendar-daynames .pretty-calendar-weekend {
- color: #06c;
- width: 15%;
- }
- .pretty-calendar-week .calendar-value,
- .calendar-daynames .calendar-value {
- border: 1px solid #eee;
- float: left;
- height: 20px;
- padding: 2px 0 0;
- text-align: center;
- width: 100%;
- }
- .calendar-daynames .calendar-value .third-letter {
- display: none;
- }
- .pretty-calendar-week a {
- color: #000;
- font-weight: bold;
- }
- .pretty-calendar-week a div {
- background-color: #dee4da;
- text-decoration: underline;
- }
- .pretty-calendar-week a:hover div {
- background-color: #06c;
- color: #fff;
- }
- .pretty-calendar-week .pretty-calendar-today {
- color: #d03;
- }
- .calendar-daynames {
- border-bottom: 3px solid #ccc;
- text-transform: uppercase;
- }
-
- .pretty-calendar-month {
- border-top: 3px solid #ccc;
- height: 24px;
- }
- .pretty-calendar-month a div {
- text-decoration: none;
- }
- .pretty-calendar-month {
- font-weight: bold;
- padding-top: 2px;
- text-align: center;
- width: 100%;
- }
- .pretty-calendar-month .month-title {
- padding-top: 2px;
- }
- .pretty-calendar-month .calendar-prev,
- .pretty-calendar-month .calendar-next {
- border: none;
- height: 18px;
- line-height: 18px;
- margin: 2px 0;
- padding: 0;
- position: absolute;
- width: 24px;
- }
- .pretty-calendar-month .calendar-prev {
- bottom: 2px;
- left: 2px;
- }
- .pretty-calendar-month .calendar-next {
- bottom: 2px;
- right: 2px;
- }
- .pretty-calendar-month a .calendar-prev {
- background: transparent url("arrows.png") no-repeat -24px 0;
- }
- .pretty-calendar-month a:hover .calendar-prev {
- background: transparent url("arrows.png") no-repeat 0 0;
- }
- .pretty-calendar-month a .calendar-next {
- background: transparent url("arrows.png") no-repeat -24px -18px;
- }
- .pretty-calendar-month a:hover .calendar-next {
- background: transparent url("arrows.png") no-repeat 0 -18px;
- }
-
- /* calendar loader styles */
- .calendar_loader {
- height: 0px;
- left: 50%;
- position: absolute;
- top: 50%;
- width: 0px;
- }
- .calendar_loader div {
- background: url("ajax-loader.gif") no-repeat;
- height: 48px;
- margin-left: -24px;
- margin-top: -40px;
- width: 48px;
- }
-
- /* tooltip styles */
- #tiptip_holder {
- display: none;
- left: 0;
- position: absolute;
- top: 0;
- z-index: 99999;
- }
- #tiptip_holder.tip_top {
- padding-bottom: 5px;
- }
- #tiptip_holder.tip_bottom {
- padding-top: 5px;
- }
- #tiptip_holder.tip_right {
- padding-left: 5px;
- }
- #tiptip_holder.tip_left {
- padding-right: 5px;
- }
- #tiptip_content {
- -moz-border-radius: 3px;
- -moz-box-shadow: 0 0 3px #999;
- -webkit-border-radius: 3px;
- -webkit-box-shadow: 0 0 3px #999;
- background-color: rgb(215,220,225);
- border: 1px solid rgba(0,0,0,0.25);
- border-radius: 3px;
- box-shadow: 0 0 3px #999;
- color: #333;
- font-size: 11px;
- padding: 4px 8px;
- text-shadow: 0 0 1px #fff;
- }
- #tiptip_arrow,
- #tiptip_arrow_inner {
- border-color: transparent;
- border-style: solid;
- border-width: 6px;
- height: 0;
- position: absolute;
- width: 0;
- }
- #tiptip_holder.tip_top #tiptip_arrow {
- border-top-color: #fff;
- border-top-color: rgba(255,255,255,0.35);
- }
- #tiptip_holder.tip_bottom #tiptip_arrow {
- border-bottom-color: #fff;
- border-bottom-color: rgba(255,255,255,0.35);
- }
- #tiptip_holder.tip_right #tiptip_arrow {
- border-right-color: #fff;
- border-right-color: rgba(255,255,255,0.35);
- }
- #tiptip_holder.tip_left #tiptip_arrow {
- border-left-color: #fff;
- border-left-color: rgba(255,255,255,0.35);
- }
- #tiptip_holder.tip_top #tiptip_arrow_inner {
- border-top-color: rgb(215,220,225);
- margin-left: -6px;
- margin-top: -7px;
- }
- #tiptip_holder.tip_bottom #tiptip_arrow_inner {
- border-bottom-color: rgb(215,220,225);
- margin-left: -6px;
- margin-top: -5px;
- }
- #tiptip_holder.tip_right #tiptip_arrow_inner {
- border-right-color: rgb(215,220,225);
- margin-left: -5px;
- margin-top: -6px;
- }
- #tiptip_holder.tip_left #tiptip_arrow_inner {
- border-left-color: rgb(215,220,225);
- margin-left: -7px;
- margin-top: -6px;
- }
- #tiptip_content ul {
- font-size: 11px;
- list-style: none;
- margin: 0;
- padding: 5px 10px;
- }
- #tiptip_content ul li {
- margin: 0;
- padding: 0;
- }
- #tiptip_content a {
- text-decoration: underline;
- }
- #tiptip_content .tooltip_summary {
- border-top: 1px dotted #bbb;
- margin: 0.4em 0.2em;
- padding: 0;
- text-align: right;
- }
-
- /* tooltip loader styles */
- .tooltip_loader {
- height: 48px;
- padding: 8px 8px;
- width: 48px;
- }
- .tooltip_loader div {
- background: url("ajax-loader.gif") no-repeat;
- height: 48px;
- width: 48px;
- }