Skip to content

Commit

Permalink
Merge branch 'master' of git://github.com/yui/yui3
Browse files Browse the repository at this point in the history
  • Loading branch information
msweeney committed Jul 28, 2011
2 parents 606cef7 + 154d19e commit f2e3e73
Show file tree
Hide file tree
Showing 208 changed files with 12,738 additions and 3,646 deletions.
32 changes: 24 additions & 8 deletions build/calendar-base/assets/calendar-base-core.css
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
.yui3-calendar {
/* xbrowser inline-block styles */
display: -moz-inline-stack; /* FF2 */
display: inline-block;
*display: inline; /* IE 7- (with zoom) */
zoom: 1;
vertical-align: middle;
}

.yui3-calendar-content {
position: relative;
display: block;
}

.yui3-calendar-pane {
width: 100%;
}

.yui3-calendar-grid {
width: 100%;
}

.yui3-calendar-left-grid {
margin-right:1em;
}

.yui3-calendar-right-grid {
margin-left:1em;
}

.yui3-calendar-column-hidden, .yui3-calendar-hidden {
Expand All @@ -20,6 +28,10 @@

}

.yui3-calendar-selection-disabled {
color: #999999;
}

.yui3-calendar-prevmonth-day {
color: #cccccc;
}
Expand All @@ -30,4 +42,8 @@

.yui3-calendar-day-selected {
background-color: #dddddd;
}

.yui3-calendar-header-label {
text-align: center;
}
25 changes: 25 additions & 0 deletions build/calendar-base/assets/calendar-core.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
.yui3-calendar {
}

.yui3-calendar-content {
}

.yui3-calendar-column-hidden, .yui3-calendar-hidden {
display:none;
}

.yui3-calendar-day {
cursor: pointer;
}

.yui3-calendar-selection-disabled {
cursor: default;
}

.yui3-calendar-prevmonth-day {
cursor: default;
}

.yui3-calendar-nextmonth-day {
cursor: default;
}
21 changes: 21 additions & 0 deletions build/calendar-base/assets/calendarnavigator-core.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
.yui3-calendar-header {
padding-left:15px;
padding-right:15px;
}

.yui3-calendar-header-label {
width:100%;
}

.yui3-calendarnav-prevmonth {
width:15px;
margin-left:-15px;
cursor: pointer;
}

.yui3-calendarnav-nextmonth {
width:15px;
margin-right:-15px;
cursor: pointer;
text-align: right;
}
74 changes: 74 additions & 0 deletions build/calendar-base/assets/skins/sam/calendar-base-skin.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
.yui3-skin-sam .yui3-calendar-content {
padding:10px;
font-size:0.8em;
font-family:"Lucida Grande", "Lucida Sans", Calibri, Helvetica, Arial, sans-serif;
color: #000000;
border: 1px solid gray;
background: #f2f2f2; /* Old browsers */
background: -moz-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(100%,#f2f2f2)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #f9f9f9 0%,#f2f2f2 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #f9f9f9 0%,#f2f2f2 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, #f9f9f9 0%,#f2f2f2 100%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#f2f2f2',GradientType=0 ); /* IE6-9 */
background: linear-gradient(top, #f9f9f9 0%,#f2f2f2 100%); /* W3C */
-moz-border-radius: 5px;
border-radius: 5px;
}

.yui3-skin-sam .yui3-calendar-grid {
padding:5px;
border-collapse: collapse;
}

.yui3-skin-sam .yui3-calendar-header {
padding-bottom:10px;
}

.yui3-skin-sam .yui3-calendar-header-label h4 {
margin: 0;
font-size: 1em;
font-weight: bold;
}

.yui3-skin-sam .yui3-calendar-selection-disabled {
color: #555555;
}

.yui3-skin-sam .yui3-calendar-day,
.yui3-skin-sam .yui3-calendar-prevmonth-day,
.yui3-skin-sam .yui3-calendar-nextmonth-day {
border: 1px solid #CCCCCC;
background: #FFFFFF;
text-align:center;
}

.yui3-skin-sam .yui3-calendar-day:hover {
background: #0066CC;
color: #FFFFFF;
}

.yui3-skin-sam .yui3-calendar-selection-disabled,
.yui3-skin-sam .yui3-calendar-selection-disabled:hover {
color: #A6A6A6;
background: #CCCCCC;
}

.yui3-skin-sam .yui3-calendar-weekday {
font-weight: bold;
}

.yui3-skin-sam .yui3-calendar-prevmonth-day, .yui3-calendar-nextmonth-day {
color: #A6A6A6;
}

.yui3-skin-sam .yui3-calendar-day {
font-weight: bold;
}

.yui3-skin-sam .yui3-calendar-day-selected {
background-color: #B3D4FF;
color: #000000;

}

2 changes: 1 addition & 1 deletion build/calendar-base/assets/skins/sam/calendar-base.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.yui3-calendarnav-prevmonth, .yui3-calendarnav-nextmonth {
color: #000000;
}

.yui3-calendarnav-prevmonth:hover, .yui3-calendarnav-nextmonth:hover {
color: #0066CC;
}
Loading

0 comments on commit f2e3e73

Please sign in to comment.