diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-01-08 02:08:23 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-01-08 02:08:23 +0100 |
commit | ccbdbe9e8469e3ae5e9e55a3e86db6f225f4fde8 (patch) | |
tree | 146747bc425feab1bd8de4c6b0f498fb13f8d61a /static | |
parent | dfe75c20106e95e91dcc94c6311139f0a453851e (diff) | |
download | Ishtar-ccbdbe9e8469e3ae5e9e55a3e86db6f225f4fde8.tar.bz2 Ishtar-ccbdbe9e8469e3ae5e9e55a3e86db6f225f4fde8.zip |
Add a "delete" widget. Update of translation.
Diffstat (limited to 'static')
-rw-r--r-- | static/media/style.css | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/static/media/style.css b/static/media/style.css index 8fc5c8001..bb8816bdb 100644 --- a/static/media/style.css +++ b/static/media/style.css @@ -28,6 +28,22 @@ td{ text-align:left; } +button{ + background-color:#EEE; + border:1px solid #AAA; + color:#444; +} + +input[type=submit]{ + background-color:#FFF; + border:1px solid #AAA; + color:#922; +} + +button:hover, input[type=submit]:hover{ + cursor:pointer; +} + .hidden{ display:none; } @@ -163,3 +179,14 @@ div.form .errorlist{ width:300px; } +.delete td{ + text-align:center; + border-bottom:1px solid #CCC; + padding:6px; +} + +.modify td{ + text-align:center; +} + + |