diff options
author | tilly-Q <nattilypigeonfowl@gmail.com> | 2014-05-06 17:00:25 -0400 |
---|---|---|
committer | tilly-Q <nattilypigeonfowl@gmail.com> | 2014-05-06 17:00:25 -0400 |
commit | e80596c80eb06e6d199795e59dcc37b27d77fe55 (patch) | |
tree | c54c5fcdcece8dd6285ae4c0ebe46f3a337fca95 /mediagoblin/static | |
parent | f0cfd3396e2bcfd6a0b3eead1875efd0d29f0ff5 (diff) | |
download | mediagoblin-e80596c80eb06e6d199795e59dcc37b27d77fe55.tar.lz mediagoblin-e80596c80eb06e6d199795e59dcc37b27d77fe55.tar.xz mediagoblin-e80596c80eb06e6d199795e59dcc37b27d77fe55.zip |
Created a UI for editting a media's metadata. Had to add a new macro to
wtforms.html in the process.
Diffstat (limited to 'mediagoblin/static')
-rw-r--r-- | mediagoblin/static/css/base.css | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/mediagoblin/static/css/base.css b/mediagoblin/static/css/base.css index 32c6c6cb..f0f9e3e6 100644 --- a/mediagoblin/static/css/base.css +++ b/mediagoblin/static/css/base.css @@ -938,3 +938,17 @@ p.verifier { none repeat scroll 0% 0% rgb(221, 221, 221); padding: 1em 0px; } + +/* for the media metadata editing table */ +table.metadata_editor { + + margin: 10px auto; + width: 800px; +} + +table.metadata_editor tr td { + width:350px; +} +table.metadata_editor tr td input.form_field_input { + width: 300px +} |