diff options
author | wei <> | 2006-07-19 03:55:25 +0000 |
---|---|---|
committer | wei <> | 2006-07-19 03:55:25 +0000 |
commit | 0c16571c091f8c4c89ae18427b2c2994cd4cf3bb (patch) | |
tree | bd0186684f6291e735c585c1c36baee7046ae0e9 /demos/time-tracker/themes | |
parent | 63e66acd2ed45300d095d5428ebdfff7652070ea (diff) |
Add project details in time-tracker
Diffstat (limited to 'demos/time-tracker/themes')
-rw-r--r-- | demos/time-tracker/themes/TimeTracker/bar.png | bin | 0 -> 344 bytes | |||
-rw-r--r-- | demos/time-tracker/themes/TimeTracker/project.css | 70 |
2 files changed, 70 insertions, 0 deletions
diff --git a/demos/time-tracker/themes/TimeTracker/bar.png b/demos/time-tracker/themes/TimeTracker/bar.png Binary files differnew file mode 100644 index 00000000..571641c9 --- /dev/null +++ b/demos/time-tracker/themes/TimeTracker/bar.png diff --git a/demos/time-tracker/themes/TimeTracker/project.css b/demos/time-tracker/themes/TimeTracker/project.css new file mode 100644 index 00000000..7b6863a0 --- /dev/null +++ b/demos/time-tracker/themes/TimeTracker/project.css @@ -0,0 +1,70 @@ +fieldset.project label
+{
+ display: block;
+ font-size: 0.9em;
+ margin-bottom: 0.2em;
+}
+
+.projectInfo
+{
+ width: 40%;
+ float: left;
+}
+
+.projectMembers
+{
+ width: 40%;
+ float: left;
+ margin-left: 0.3em;
+}
+
+fieldset.project h2
+{
+ background-color: #D2E8E8;
+ font-size: 0.8em;
+ color: #4169E1;
+ padding: 0.65em;
+ text-align: center;
+ background-image: url(bar.png);
+ background-repeat: repeat-x;
+ background-position: center;
+}
+
+.projectInfo div, .projectMembers div
+{
+ margin: 0.7em 0;
+}
+
+.projectInfo div input, .projectInfo div.manager select
+{
+ width: 15em;
+}
+
+.projectInfo .estimateHours input
+{
+ width: 4em;
+}
+
+.projectInfo .description textarea
+{
+ width: 17em;
+ height: 10em;
+}
+
+.projectMembers select
+{
+ width: 15em;
+ height: 17em;
+}
+
+.actionButtons
+{
+ float: left;
+ width: 90%;
+ padding: 0.65em;
+ text-align: center;
+ background-color: #D2E8E8;
+ background-image: url(bar.png);
+ background-repeat: repeat-x;
+ background-position: center;
+}
\ No newline at end of file |