diff options
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; +} + + |