diff options
author | Aaron Bentley <abentley@panoramicfeedback.com> | 2005-12-23 15:35:26 -0500 |
---|---|---|
committer | Aaron Bentley <abentley@panoramicfeedback.com> | 2005-12-23 15:35:26 -0500 |
commit | 01784a2254bef07a2f8624cec4bfe56fca505697 (patch) | |
tree | 07a91d51ee2bcc4f7de84023bc97777083ba8cb9 /beweb | |
parent | b9095579e2e3ecad1d564d0471780bc8bef1e708 (diff) | |
download | bugseverywhere-01784a2254bef07a2f8624cec4bfe56fca505697.tar.gz |
Added drop shadow box type
Diffstat (limited to 'beweb')
-rw-r--r-- | beweb/beweb/static/images/ds-b.png | bin | 0 -> 213 bytes | |||
-rw-r--r-- | beweb/beweb/static/images/ds-bl.png | bin | 0 -> 327 bytes | |||
-rw-r--r-- | beweb/beweb/static/images/ds-br.png | bin | 0 -> 365 bytes | |||
-rw-r--r-- | beweb/beweb/static/images/ds-l.png | bin | 0 -> 197 bytes | |||
-rw-r--r-- | beweb/beweb/static/images/ds-r.png | bin | 0 -> 214 bytes | |||
-rw-r--r-- | beweb/beweb/static/images/ds-t.png | bin | 0 -> 200 bytes | |||
-rw-r--r-- | beweb/beweb/static/images/ds-tl.png | bin | 0 -> 240 bytes | |||
-rw-r--r-- | beweb/beweb/static/images/ds-tr.png | bin | 0 -> 311 bytes | |||
-rw-r--r-- | beweb/beweb/static/images/ds2-b.png | bin | 0 -> 206 bytes | |||
-rw-r--r-- | beweb/beweb/static/images/ds2-r.png | bin | 0 -> 204 bytes | |||
-rw-r--r-- | beweb/beweb/templates/master.kid | 17 |
11 files changed, 17 insertions, 0 deletions
diff --git a/beweb/beweb/static/images/ds-b.png b/beweb/beweb/static/images/ds-b.png Binary files differnew file mode 100644 index 0000000..790e438 --- /dev/null +++ b/beweb/beweb/static/images/ds-b.png diff --git a/beweb/beweb/static/images/ds-bl.png b/beweb/beweb/static/images/ds-bl.png Binary files differnew file mode 100644 index 0000000..5b43259 --- /dev/null +++ b/beweb/beweb/static/images/ds-bl.png diff --git a/beweb/beweb/static/images/ds-br.png b/beweb/beweb/static/images/ds-br.png Binary files differnew file mode 100644 index 0000000..6cfd62c --- /dev/null +++ b/beweb/beweb/static/images/ds-br.png diff --git a/beweb/beweb/static/images/ds-l.png b/beweb/beweb/static/images/ds-l.png Binary files differnew file mode 100644 index 0000000..a6ce3ce --- /dev/null +++ b/beweb/beweb/static/images/ds-l.png diff --git a/beweb/beweb/static/images/ds-r.png b/beweb/beweb/static/images/ds-r.png Binary files differnew file mode 100644 index 0000000..1ffd6f8 --- /dev/null +++ b/beweb/beweb/static/images/ds-r.png diff --git a/beweb/beweb/static/images/ds-t.png b/beweb/beweb/static/images/ds-t.png Binary files differnew file mode 100644 index 0000000..0129b0c --- /dev/null +++ b/beweb/beweb/static/images/ds-t.png diff --git a/beweb/beweb/static/images/ds-tl.png b/beweb/beweb/static/images/ds-tl.png Binary files differnew file mode 100644 index 0000000..d616b77 --- /dev/null +++ b/beweb/beweb/static/images/ds-tl.png diff --git a/beweb/beweb/static/images/ds-tr.png b/beweb/beweb/static/images/ds-tr.png Binary files differnew file mode 100644 index 0000000..18e542e --- /dev/null +++ b/beweb/beweb/static/images/ds-tr.png diff --git a/beweb/beweb/static/images/ds2-b.png b/beweb/beweb/static/images/ds2-b.png Binary files differnew file mode 100644 index 0000000..05a190e --- /dev/null +++ b/beweb/beweb/static/images/ds2-b.png diff --git a/beweb/beweb/static/images/ds2-r.png b/beweb/beweb/static/images/ds2-r.png Binary files differnew file mode 100644 index 0000000..0c3ea4c --- /dev/null +++ b/beweb/beweb/static/images/ds2-r.png diff --git a/beweb/beweb/templates/master.kid b/beweb/beweb/templates/master.kid index ba41143..6610d00 100644 --- a/beweb/beweb/templates/master.kid +++ b/beweb/beweb/templates/master.kid @@ -31,4 +31,21 @@ <td background="/static/images/is-br.png"/> </tr> </table> +<table py:match="item.tag=='{http://www.w3.org/1999/xhtml}dsbox'" cellspacing="0" cellpadding="0" border="0" class="dsbox"> +<tr height="11"><td background="/static/images/ds-tl.png" width="11"/> + <td background="/static/images/ds-t.png" /> + <td background="/static/images/ds-tr.png" width="19"></td> +</tr> +<tr> + <td background="/static/images/ds-l.png"/> + <td py:content="item[:]"> Hello, this is some random text</td> + <td background="/static/images/ds2-r.png"/> +</tr> +<tr height="19"> + <td background="/static/images/ds-bl.png"/> + <td background="/static/images/ds2-b.png" /> + <td background="/static/images/ds-br.png"/> +</tr> +</table> + </html> |