diff options
author | rvelices <rv-github@modusoptimus.com> | 2006-03-01 04:33:52 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2006-03-01 04:33:52 +0000 |
commit | 8f33338fed3809c2b964cbe610658b143c96b6c9 (patch) | |
tree | 3fabd2d92953f3d24ad68819b3a6cf3abc1b9de1 /template/yoga/content.css | |
parent | 3f329df09f02757cab96fd0f835b5f77ea3a044b (diff) |
calendar improvement: month calendar view a la flickr
fix: html 4.01 compliant in rating.tpl
fix: issue with IE from version 1052 (redirect on access denied)
git-svn-id: http://piwigo.org/svn/trunk@1061 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/yoga/content.css | 46 |
1 files changed, 44 insertions, 2 deletions
diff --git a/template/yoga/content.css b/template/yoga/content.css index a426b64e1..6f3c440c4 100644 --- a/template/yoga/content.css +++ b/template/yoga/content.css @@ -179,6 +179,7 @@ SPAN.filename:after { } +/* begin chronology/calendar elements*/ #content DIV.calendarViews { display: block; text-align: left; @@ -199,14 +200,12 @@ SPAN.calItemSel { font-weight: bold; margin: 0 2px; border: 1px solid gray; - color: dark-gray; } SPAN.calItemEmpty { font-weight: bold; margin: 0 2px; border: 1px solid gray; - color: lightgray; } #content DIV.calendarCalBar { @@ -224,3 +223,46 @@ SPAN.calCal { margin: 0 2px; } +/* nice looking month calendar*/ +.calMonth { border: none; border-collapse: collapse; } + +TD.calDayCellFull, TD.calDayCellEmpty, TD.calDayCellBlank +{ + text-align:left; + vertical-align: top; + font: bold 18px Arial, Helvetica, sans-serif; +} + +TD.calDayHead { font: bold 12px Arial, Helvetica, sans-serif; } + +DIV.calImg +{ + overflow: hidden; + vertical-align: bottom; + z-index: 1; + position: relative; /*<- this required by IE*/ +} + +.calImg img +{ + position: relative; + border: 0; +} + +.calBackDate { + padding-left: 4px; + padding-top: 0px; + z-index: 2; + position: absolute; + text-align: left; + vertical-align: top; +} + +.calForeDate { + padding-left: 5px; + padding-top: 1px; + z-index: 3; + position: absolute; + text-align: left; + vertical-align: top; +} |