From cb363884c6fe3cffb3d4ea1b06675c4caeec5d98 Mon Sep 17 00:00:00 2001 From: Thomas Felber Date: Sun, 12 Jul 2015 11:17:20 -1000 Subject: introduced statusobject to app.js, file get reqeust parameter now gets handled within app.js and not in viewer.js anymore. fixed a bug where a placed signature would dissappear if the user scrolls too far away. updated some stylesheets. parent and child frame dont talk via postmessage anymore, instead functionality of the DOM is used. added porject report / documentation --- pdf-as-web/src/main/webapp/assets/css/style.css | 36 +++++++++++++++++++++++++ 1 file changed, 36 insertions(+) (limited to 'pdf-as-web/src/main/webapp/assets/css/style.css') diff --git a/pdf-as-web/src/main/webapp/assets/css/style.css b/pdf-as-web/src/main/webapp/assets/css/style.css index eb5d3e40..56bfbe67 100644 --- a/pdf-as-web/src/main/webapp/assets/css/style.css +++ b/pdf-as-web/src/main/webapp/assets/css/style.css @@ -99,3 +99,39 @@ iframe { border: none; } + +.black_overlay{ + display: block; + position: fixed; + top: 0%; + left: 0%; + width: 100%; + height: 100%; + background-color: black; + z-index:1001; + -moz-opacity: 0.8; + opacity:.80; + filter: alpha(opacity=80); +} + +.white_content { + display: block; + position: fixed; + top: 25%; + left: 32%; + width: 36%; + height: 30%; + padding: 16px; + border: 4px solid orange; + background-color: white; + z-index:1002; + overflow: auto; +} + +.white_content div { + z-index: -1; +} + +.white_content a { + z-index: 3000; +} \ No newline at end of file -- cgit v1.2.3