diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-09-05 21:03:54 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-09-05 21:03:54 -0500 |
commit | e8b517924ea5586c3249e4fbcf8b96c4dbeba49a (patch) | |
tree | d8e66ef742baeef17a00ab0ed6cb6276e603d3f4 | |
parent | 677f55cc51c82c80005b0ff6658e9937133ef78b (diff) | |
download | mediagoblin-e8b517924ea5586c3249e4fbcf8b96c4dbeba49a.tar.lz mediagoblin-e8b517924ea5586c3249e4fbcf8b96c4dbeba49a.tar.xz mediagoblin-e8b517924ea5586c3249e4fbcf8b96c4dbeba49a.zip |
A couple of tweaks to the checkbox styling... pretty minor.
-rw-r--r-- | mediagoblin/static/css/base.css | 8 | ||||
-rw-r--r-- | mediagoblin/templates/mediagoblin/user_pages/media_confirm_delete.html | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/mediagoblin/static/css/base.css b/mediagoblin/static/css/base.css index ea54f77f..d1b891ac 100644 --- a/mediagoblin/static/css/base.css +++ b/mediagoblin/static/css/base.css @@ -365,3 +365,11 @@ table.media_panel th { font-weight: bold; padding-bottom: 4px; } + + +/* Delete panel */ + +.delete_checkbox_box { + margin-top: 10px; + margin-left: 10px; +}
\ No newline at end of file diff --git a/mediagoblin/templates/mediagoblin/user_pages/media_confirm_delete.html b/mediagoblin/templates/mediagoblin/user_pages/media_confirm_delete.html index 9192289e..01323a6e 100644 --- a/mediagoblin/templates/mediagoblin/user_pages/media_confirm_delete.html +++ b/mediagoblin/templates/mediagoblin/user_pages/media_confirm_delete.html @@ -39,7 +39,7 @@ <br /> - <p> + <p class="delete_checkbox_box"> {{ form.confirm }} {{ _(form.confirm.label.text) }} </p> |