diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-10-07 20:07:11 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-10-07 20:07:11 +0000 |
commit | ec51cdd0f9926d0fe42e9563e0f5bf1a3db18196 (patch) | |
tree | 9a6c7a92e250707b8fbd5ac9e9758a6ac56d3d9d /public | |
parent | cdb2781b48f2a3ee2ba7d04574671ee195f7006f (diff) | |
download | redmine-ec51cdd0f9926d0fe42e9563e0f5bf1a3db18196.tar.gz redmine-ec51cdd0f9926d0fe42e9563e0f5bf1a3db18196.zip |
Calendar:
* added an helper and moved the rendering code to a shared partial (used by project calendar and my calendar)
* first day of week can now be set in lang files (general_first_day_of_week)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@815 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public')
-rw-r--r-- | public/stylesheets/application.css | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index fdeec2bbc..9bae7bcd9 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -212,9 +212,14 @@ vertical-align: bottom; /***** Calendar *****/ table.cal {border-collapse: collapse; width: 100%; margin: 8px 0 6px 0;border: 1px solid #d7d7d7;} +table.cal thead th {width: 14%;} +table.cal tbody tr {height: 100px;} table.cal th { background-color:#EEEEEE; padding: 4px; } -table.cal td {border: 1px solid #d7d7d7;} +table.cal td {border: 1px solid #d7d7d7; vertical-align: top; font-size: 0.9em;} +table.cal td p.day-num {font-size: 1.1em; text-align:right;} +table.cal td.odd p.day-num {color: #bbb;} table.cal td.today {background:#ffffdd;} +table.cal td.today p.day-num {font-weight: bold;} /***** Tooltips ******/ .tooltip{position:relative;z-index:24;} |