diff options
author | Dusty Phillips <buchuki@gmail.com> | 2008-10-11 22:24:24 -0400 |
---|---|---|
committer | Dusty Phillips <buchuki@gmail.com> | 2008-10-11 22:24:24 -0400 |
commit | f4f34fe7c01a881f73221e14bd5c7ab0a4d3c9f8 (patch) | |
tree | 37b3250c08f7b25361a09a45a8dd9316e65c4f8b | |
parent | e6c1febc4b37c4d74cad3cecbc079f888481c27b (diff) |
drop some extra media (may have to restore)
-rw-r--r-- | media/arch-paypal.jpg | bin | 2273 -> 0 bytes | |||
-rw-r--r-- | media/asc.gif | bin | 54 -> 0 bytes | |||
-rw-r--r-- | media/button.png | bin | 837 -> 0 bytes | |||
-rw-r--r-- | media/desc.gif | bin | 54 -> 0 bytes | |||
-rw-r--r-- | media/forms/_library/cmxform.css | 57 | ||||
-rw-r--r-- | media/forms/cmxform.css | 30 | ||||
-rw-r--r-- | media/forms/cmxform.js | 22 | ||||
-rw-r--r-- | media/forms/core.css | 22 | ||||
-rw-r--r-- | media/forms/images/cmxform-divider.gif | bin | 43 -> 0 bytes | |||
-rw-r--r-- | media/forms/images/cmxform-fieldset.gif | bin | 2926 -> 0 bytes | |||
-rw-r--r-- | media/forms/reset.css | 62 | ||||
-rw-r--r-- | media/forms/screen.css | 16 | ||||
-rw-r--r-- | media/gnu-head-tiny.jpg | bin | 3049 -> 0 bytes | |||
-rw-r--r-- | templates/todolists/view.html | 22 |
14 files changed, 0 insertions, 231 deletions
diff --git a/media/arch-paypal.jpg b/media/arch-paypal.jpg Binary files differdeleted file mode 100644 index 3b43e2f3..00000000 --- a/media/arch-paypal.jpg +++ /dev/null diff --git a/media/asc.gif b/media/asc.gif Binary files differdeleted file mode 100644 index 74157867..00000000 --- a/media/asc.gif +++ /dev/null diff --git a/media/button.png b/media/button.png Binary files differdeleted file mode 100644 index 670d69c6..00000000 --- a/media/button.png +++ /dev/null diff --git a/media/desc.gif b/media/desc.gif Binary files differdeleted file mode 100644 index 3b30b3c5..00000000 --- a/media/desc.gif +++ /dev/null diff --git a/media/forms/_library/cmxform.css b/media/forms/_library/cmxform.css deleted file mode 100644 index ff362864..00000000 --- a/media/forms/_library/cmxform.css +++ /dev/null @@ -1,57 +0,0 @@ -/********************************** - -Use: cmxform template -Author: Nick Rigby - -***********************************/ - -form.cmxform fieldset { margin-bottom: 10px; } - -form.cmxform legend { - padding: 0 2px; - font-weight: bold; - _margin: 0 -7px; /* IE Win */ - } - -form.cmxform label { - display: inline-block; - line-height: 1.8; - vertical-align: top; - } - -form.cmxform fieldset ol { - margin: 0; - padding: 0; - } - -form.cmxform fieldset li { - list-style: none; - padding: 5px; - margin: 0; - } - -form.cmxform fieldset fieldset { - border: none; - margin: 3px 0 0; - } - -form.cmxform fieldset fieldset legend { - padding: 0 0 5px; - font-weight: normal; - } - -form.cmxform fieldset fieldset label { - display: block; - width: auto; - } - -form.cmxform em { - font-weight: bold; - font-style: normal; - color: #f00; - } - -form.cmxform label { width: 120px; } /* Width of labels */ -form.cmxform fieldset fieldset label { margin-left: 123px; } /* Width plus 3 (html space) */ - -/*\*//*/ form.cmxform legend { display: inline-block; } /* IE Mac legend fix */
\ No newline at end of file diff --git a/media/forms/cmxform.css b/media/forms/cmxform.css deleted file mode 100644 index f713714f..00000000 --- a/media/forms/cmxform.css +++ /dev/null @@ -1,30 +0,0 @@ -/********************************** - -Name: cmxform Styles -Author: Nick Rigby - -***********************************/ - -form.cmxform { - width: 370px; - font-size: 1.1em; - color: #333; - } - -form.cmxform legend { padding-left: 0; } - -form.cmxform legend, -form.cmxform label { color: #333; } - -form.cmxform fieldset { - border: none; - border-top: 1px solid #C9DCA6; - background: url(../images/cmxform-fieldset.gif) left bottom repeat-x; - } - -form.cmxform fieldset fieldset { background: none; } - -form.cmxform fieldset li { - padding: 5px 10px 7px; - background: url(../images/cmxform-divider.gif) left bottom repeat-x; - }
\ No newline at end of file diff --git a/media/forms/cmxform.js b/media/forms/cmxform.js deleted file mode 100644 index 0b7973d6..00000000 --- a/media/forms/cmxform.js +++ /dev/null @@ -1,22 +0,0 @@ -if( document.addEventListener ) document.addEventListener( 'DOMContentLoaded', cmxform, false );
-
-function cmxform(){
- // Hide forms
- $( 'form.cmxform' ).hide().end();
-
- // Processing
- $( 'form.cmxform' ).find( 'li/label' ).not( '.nocmx' ).each( function( i ){
- var labelContent = this.innerHTML;
- var labelWidth = document.defaultView.getComputedStyle( this, '' ).getPropertyValue( 'width' );
- var labelSpan = document.createElement( 'span' );
- labelSpan.style.display = 'block';
- labelSpan.style.width = labelWidth;
- labelSpan.innerHTML = labelContent;
- this.style.display = '-moz-inline-box';
- this.innerHTML = null;
- this.appendChild( labelSpan );
- } ).end();
-
- // Show forms
- $( 'form.cmxform' ).show().end();
-}
\ No newline at end of file diff --git a/media/forms/core.css b/media/forms/core.css deleted file mode 100644 index bdeac7a4..00000000 --- a/media/forms/core.css +++ /dev/null @@ -1,22 +0,0 @@ -/********************************** - -Use: Core Styles -Author: Nick Rigby - -***********************************/ - -body { - padding: 0 10px; - font: normal 62.5% "Lucida Grande", Helvetica, Verdana, Arial; - } - -p { margin: 10px 0; } - -.sr { - position: absolute; - left: -9999em; - top: 0; - width: 1px; - height: 1px; - overflow: hidden; - }
\ No newline at end of file diff --git a/media/forms/images/cmxform-divider.gif b/media/forms/images/cmxform-divider.gif Binary files differdeleted file mode 100644 index 718a977c..00000000 --- a/media/forms/images/cmxform-divider.gif +++ /dev/null diff --git a/media/forms/images/cmxform-fieldset.gif b/media/forms/images/cmxform-fieldset.gif Binary files differdeleted file mode 100644 index 0590c894..00000000 --- a/media/forms/images/cmxform-fieldset.gif +++ /dev/null diff --git a/media/forms/reset.css b/media/forms/reset.css deleted file mode 100644 index c557f24c..00000000 --- a/media/forms/reset.css +++ /dev/null @@ -1,62 +0,0 @@ -/********************************** - -Use: Reset Styles for all browsers -Author: Nick Rigby - -***********************************/ - -body, p, blockquote { - margin: 0; - padding: 0; - } - -a img, iframe { border: none; } - -/* Headers -------------------------------*/ - -h1, h2, h3, h4, h5, h6 { - margin: 0; - padding: 0; - font-size: 100%; - } - -/* Lists -------------------------------*/ - -ul, ol, dl, li, dt, dd { - margin: 0; - padding: 0; - } - -/* Links -------------------------------*/ - -a, a:link {} -a:visited {} -a:hover {} -a:active {} - -/* Forms -------------------------------*/ - -form, fieldset { - margin: 0; - padding: 0; - } - -fieldset { border: 1px solid #000; } - -legend { - padding: 0; - color: #000; - } - -input, textarea, select { - margin: 0; - padding: 1px; - font-size: 100%; - font-family: inherit; - } - -select { padding: 0; }
\ No newline at end of file diff --git a/media/forms/screen.css b/media/forms/screen.css deleted file mode 100644 index d21a36a3..00000000 --- a/media/forms/screen.css +++ /dev/null @@ -1,16 +0,0 @@ -/********************************** - -Use: Main Screen Import -Author: Nick Rigby - -***********************************/ - -@import "reset.css"; -@import "core.css"; - -@import "_library/cmxform.css"; -@import "cmxform.css"; - -/* IE5 Macintosh \*//*/ -@import "_ie/mac/5.css"; -/**/
\ No newline at end of file diff --git a/media/gnu-head-tiny.jpg b/media/gnu-head-tiny.jpg Binary files differdeleted file mode 100644 index 441be50d..00000000 --- a/media/gnu-head-tiny.jpg +++ /dev/null diff --git a/templates/todolists/view.html b/templates/todolists/view.html index 535fe26b..c81c568c 100644 --- a/templates/todolists/view.html +++ b/templates/todolists/view.html @@ -1,26 +1,4 @@ {% extends "base.html" %} -{% block head %} -<style type="text/css"> - table#todotable thead tr .header { - background-image: url('/media/bg.gif'); - background-repeat: no-repeat; - background-position: center right; - cursor: pointer; - } - table#todotable thead tr .headerSortUp { - background-image: url('/media/asc.gif'); - } - table#todotable thead tr .headerSortDown { - background-image: url('/media/desc.gif'); - } - table#todotable thead tr .headerSortDown, table.todotable thead tr .headerSortUp { - background-color: #8dbdd8; - } - table#todotable tbody tr.odd { - background-color: #eee4cb; - } -</style> -{% endblock %} {% block content %} <div class="greybox"> <div style="float:right"> |