aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2019-05-07 00:22:01 -0400
committerBob Zeleznik <zzzman@gmail.com>2019-05-07 00:22:01 -0400
commit20f31796ed6f6c9fb71fa80cf858a7ac353300cf (patch)
tree3269959024ffd6b0023f8a605f673ac5322bbc0e /src
parent5ffd715a2ce6c25daff22410ed9b6b009e8938d3 (diff)
from last
Diffstat (limited to 'src')
-rw-r--r--src/client/views/Templates.tsx28
1 files changed, 13 insertions, 15 deletions
diff --git a/src/client/views/Templates.tsx b/src/client/views/Templates.tsx
index 5858ee014..738272913 100644
--- a/src/client/views/Templates.tsx
+++ b/src/client/views/Templates.tsx
@@ -51,24 +51,22 @@ export namespace Templates {
);
export const Title = new Template("Title", TemplatePosition.InnerTop,
- `<div><div style="height:100%; width:100%;position:absolute;">{layout}</div><div style="height:25px; width:100%; position:absolute; top: 0; background-color: rgba(0, 0, 0, .4); color: white; padding:2px 10px">{props.Document.title}</div></div>`
+ `<div><div style="height:calc(100% - 25px); margin-top: 25px; width:100%;position:absolute;">{layout}</div>
+ <div style="height:25px; width:100%; position:absolute; top: 0; background-color: rgba(0, 0, 0, .4); color: white; padding:2px 10px">{props.Document.title}</div></div>`
);
export const Summary = new Template("Title", TemplatePosition.InnerTop,
- `<div><div style="height:100%; width:100%;position:absolute;">{layout}</div><div style="height:25px; width:100%; position:absolute; top: 0; background-color: rgba(0, 0, 0, .4); color: white; padding:2px 10px">{props.Document.doc1.title}</div></div>`
+ `<div style="height:100%; width:100%;position:absolute; margin:0; padding: 0">
+ <div style="height:60%; width:100%;position:absolute;background:yellow; padding:0; margin:0">
+ {layout}
+ </div>
+ <div style="bottom:0px; height:40%; width:50%; position:absolute; background-color: rgba(0, 0, 0, .4); color: white;">
+ <FieldView {...props} fieldKey={"doc1"} />
+ </div>
+ <div style="bottom:0; left: 50%; height:40%; width:50%; position:absolute; background-color: rgba(0, 0, 0, .4); color: white;">
+ <FieldView {...props} fieldKey={"doc2"} />
+ </div>
+ </div>`
);
- // export const Summary = new Template("Title", TemplatePosition.InnerTop,
- // `<div style="height:100%; width:100%;position:absolute; margin:0; padding: 0">
- // <div style="height:60%; width:100%;position:absolute;background:yellow; padding:0; margin:0">
- // {layout}
- // </div>
- // <div style="bottom:0px; height:40%; width:50%; position:absolute; background-color: rgba(0, 0, 0, .4); color: white;">
- // <FieldView {...props} fieldKey={"doc1"} />
- // </div>
- // <div style="bottom:0; left: 50%; height:40%; width:50%; position:absolute; background-color: rgba(0, 0, 0, .4); color: white;">
- // <FieldView {...props} fieldKey={"doc2"} />
- // </div>
- // </div>`
- // );
export const TemplateList: Template[] = [Title, OuterCaption, InnerCaption, SideCaption];