diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-02-26 00:24:48 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-02-26 00:24:48 +0100 |
commit | e2388422822ba47b4ef091215ca8b4e3c12cdf19 (patch) | |
tree | c7a7a964b6754231f4ce28962dda5f6e1734ab48 /static | |
parent | 1992da6a916bff1a1f98e5b4f281a80a3177884d (diff) | |
download | Ishtar-e2388422822ba47b4ef091215ca8b4e3c12cdf19.tar.bz2 Ishtar-e2388422822ba47b4ef091215ca8b4e3c12cdf19.zip |
Process differently to generate ODT file (refs #227). Specific CSS for export.
Diffstat (limited to 'static')
-rw-r--r-- | static/media/style.css | 9 | ||||
-rw-r--r-- | static/media/style_basic.css | 45 |
2 files changed, 49 insertions, 5 deletions
diff --git a/static/media/style.css b/static/media/style.css index 9f048d59a..27a31c08b 100644 --- a/static/media/style.css +++ b/static/media/style.css @@ -247,7 +247,6 @@ table.confirm tr.spacer td:last-child{ #window{ width:760px; - position: absolute; position:fixed; height:90%; background: #FFF; @@ -292,8 +291,8 @@ table.confirm tr.spacer td:last-child{ } #window table td.no_items{ -text-align:center; -font-style:italic; + text-align:center; + font-style:italic; } #window .sheet{ @@ -312,8 +311,8 @@ font-style:italic; } #window .tool{ -text-align:center; -font-style:italic; + text-align:center; + font-style:italic; } #window .body{ diff --git a/static/media/style_basic.css b/static/media/style_basic.css new file mode 100644 index 000000000..ec96ecfce --- /dev/null +++ b/static/media/style_basic.css @@ -0,0 +1,45 @@ +#window{ + width:100%; + position:relative; + display:block; + height:100%; + left:0; + margin:0; +} + +#window table{ + font-size:1em; + margin:0; + width:100%; + border-collapse:collapse; +} + +#window .head{ + display:none; +} + +#window .tool{ + display:none; +} + +#window .body{ + position:relative; + padding:0; + top:0; + bottom:0; + width:100%; +} + +#window label{ + display:inline; + font-weight:bold; +} + +#window span.value{ + display:inline; +} + +#window p{ + margin:0.3em; +} + |