aboutsummaryrefslogtreecommitdiff
path: root/pdf-as-web/src/main/webapp/assets/css/style.css
diff options
context:
space:
mode:
authorThomas Felber <felber@student.tugraz.at>2015-07-12 11:17:20 -1000
committerAndreas Fitzek <andreas.fitzek@iaik.tugraz.at>2015-07-13 09:50:07 +0200
commitcb363884c6fe3cffb3d4ea1b06675c4caeec5d98 (patch)
tree59a21dcca5f4c495e72bded2c061be47d7ce0036 /pdf-as-web/src/main/webapp/assets/css/style.css
parent3042a3f75fdcf09852799b50b554c71b6c9e393b (diff)
downloadpdf-as-4-cb363884c6fe3cffb3d4ea1b06675c4caeec5d98.tar.gz
pdf-as-4-cb363884c6fe3cffb3d4ea1b06675c4caeec5d98.tar.bz2
pdf-as-4-cb363884c6fe3cffb3d4ea1b06675c4caeec5d98.zip
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
Diffstat (limited to 'pdf-as-web/src/main/webapp/assets/css/style.css')
-rw-r--r--pdf-as-web/src/main/webapp/assets/css/style.css36
1 files changed, 36 insertions, 0 deletions
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