diff options
author | rvelices <rv-github@modusoptimus.com> | 2006-02-28 04:28:06 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2006-02-28 04:28:06 +0000 |
commit | 97898b36858d5f187e9659d723c71eb04b2f0593 (patch) | |
tree | 363cfd342a409cc4f1109dbf1469c12e9090a6ff /template/yoga/content.css | |
parent | 4cd5b05d406a9820a0523ac26f254f4ce4fd5147 (diff) |
calendar improvements: week on weekly list starts on Monday,
ability to show grayed months/weeks/days (without any picture in it),
added icons for created/posted fields
language uniformization
calendar fixes: correct number of pictures in calendar view,
code simplification (I hope so)
git-svn-id: http://piwigo.org/svn/trunk@1059 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/yoga/content.css | 31 |
1 files changed, 22 insertions, 9 deletions
diff --git a/template/yoga/content.css b/template/yoga/content.css index fa45ab676..a426b64e1 100644 --- a/template/yoga/content.css +++ b/template/yoga/content.css @@ -159,8 +159,8 @@ UL.categoryActions { #content DIV.comment BLOCKQUOTE { margin-top: 1em; - margin-right: 0.5em; - margin-bottom: 150px; + margin-right: 0.5em; + margin-bottom: 150px; padding: 0.5em; } @@ -180,24 +180,37 @@ SPAN.filename:after { #content DIV.calendarViews { - float: left; + display: block; + text-align: left; + margin: 5px 0; } -SPAN.cal { +#content DIV.calendarBar { + margin: 8px 4px; +} + +SPAN.calItem { font-weight: bold; - border: 1px solid gray; margin: 0 2px; + border: 1px solid gray; } -SPAN.calSel { +SPAN.calItemSel { font-weight: bold; - color: dark-gray; + 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 .calendarBar { - margin: 8px 5px; +#content DIV.calendarCalBar { + margin: 10px 10px; text-align: left; } |