summaryrefslogtreecommitdiff
path: root/demos/quickstart/themes
diff options
context:
space:
mode:
authorwei <>2007-01-26 02:06:46 +0000
committerwei <>2007-01-26 02:06:46 +0000
commit5a34c0337eda45f2b1342771a937fd9a029cb319 (patch)
tree9b690a21c60054c4f64677dbe14974d8bf84fc0e /demos/quickstart/themes
parente30048fca6e6cb351f311b2dc039f31210db8eec (diff)
add "view all comments" for quickstart comments.
Diffstat (limited to 'demos/quickstart/themes')
-rw-r--r--demos/quickstart/themes/PradoSoft/comment.gifbin0 -> 330 bytes
-rw-r--r--demos/quickstart/themes/PradoSoft/comment_add.gifbin0 -> 361 bytes
-rw-r--r--demos/quickstart/themes/PradoSoft/comments.gifbin0 -> 367 bytes
-rw-r--r--demos/quickstart/themes/PradoSoft/error.gifbin0 -> 579 bytes
-rw-r--r--demos/quickstart/themes/PradoSoft/information.gifbin0 -> 606 bytes
-rw-r--r--demos/quickstart/themes/PradoSoft/lightbulb.gifbin0 -> 606 bytes
-rw-r--r--demos/quickstart/themes/PradoSoft/style.css41
7 files changed, 34 insertions, 7 deletions
diff --git a/demos/quickstart/themes/PradoSoft/comment.gif b/demos/quickstart/themes/PradoSoft/comment.gif
new file mode 100644
index 00000000..413717ea
--- /dev/null
+++ b/demos/quickstart/themes/PradoSoft/comment.gif
Binary files differ
diff --git a/demos/quickstart/themes/PradoSoft/comment_add.gif b/demos/quickstart/themes/PradoSoft/comment_add.gif
new file mode 100644
index 00000000..25ca1e8e
--- /dev/null
+++ b/demos/quickstart/themes/PradoSoft/comment_add.gif
Binary files differ
diff --git a/demos/quickstart/themes/PradoSoft/comments.gif b/demos/quickstart/themes/PradoSoft/comments.gif
new file mode 100644
index 00000000..07852058
--- /dev/null
+++ b/demos/quickstart/themes/PradoSoft/comments.gif
Binary files differ
diff --git a/demos/quickstart/themes/PradoSoft/error.gif b/demos/quickstart/themes/PradoSoft/error.gif
new file mode 100644
index 00000000..b41ea452
--- /dev/null
+++ b/demos/quickstart/themes/PradoSoft/error.gif
Binary files differ
diff --git a/demos/quickstart/themes/PradoSoft/information.gif b/demos/quickstart/themes/PradoSoft/information.gif
new file mode 100644
index 00000000..3169faa4
--- /dev/null
+++ b/demos/quickstart/themes/PradoSoft/information.gif
Binary files differ
diff --git a/demos/quickstart/themes/PradoSoft/lightbulb.gif b/demos/quickstart/themes/PradoSoft/lightbulb.gif
new file mode 100644
index 00000000..f52e8592
--- /dev/null
+++ b/demos/quickstart/themes/PradoSoft/lightbulb.gif
Binary files differ
diff --git a/demos/quickstart/themes/PradoSoft/style.css b/demos/quickstart/themes/PradoSoft/style.css
index 799dbf36..9c3489d6 100644
--- a/demos/quickstart/themes/PradoSoft/style.css
+++ b/demos/quickstart/themes/PradoSoft/style.css
@@ -544,22 +544,29 @@ pre code
div.tip, div.info, div.note
{
- border:1px solid #0cf;
- padding:1em;
+ border-top:2px solid #0cf;
+ border-bottom:2px solid #0cf;
+ padding:1em 1em 1em 40px;
margin: 1em 2em;
- background-color: #eff;
+ border-color: #32CD32;
+ background-color: #EBFFCE;
+ background-repeat: no-repeat;
+ background-position: 10px 50%;
+ background-image: url(lightbulb.gif);
}
div.info
{
- border-color: #32CD32;
- background-color: #EBFFCE;
+ border-color: #87CEFA;
+ background-color: #EEF9FD;
+ background-image: url(information.gif);
}
div.note
{
- border-color: Orange;
+ border-color: #FFD700;
background-color: #FFF5E1;
+ background-image: url(error.gif);
}
div b.tip
@@ -607,4 +614,24 @@ div.last-modified
color: #999;
margin-top: 5em;
margin-bottom: -3em;
-} \ No newline at end of file
+}
+
+#comment-nav li a#show-comment-link,
+#comment-nav li a#add-comment-link,
+#comment-nav li a#all-comments-link
+{
+ background-image: url(comment.gif);
+ background-repeat: no-repeat;
+ background-position: 7px 50%;
+ padding-left: 30px;
+}
+
+#comment-nav li a#add-comment-link
+{
+ background-image: url(comment_add.gif);
+}
+
+#comment-nav li a#all-comments-link
+{
+ background-image: url(comments.gif);
+}