From 36a33b59b8785fff522ff7382ac7d576d13a9dc0 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Thu, 18 Apr 2013 15:16:00 +0200 Subject: [PATCH] =?utf8?q?jqModal:=20allgemeines=20Styling=20auch=20f?= =?utf8?q?=C3=BCr=20lx-office-erp-Stylesheet?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- css/lx-office-erp/jqModal.css | 39 +++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 css/lx-office-erp/jqModal.css diff --git a/css/lx-office-erp/jqModal.css b/css/lx-office-erp/jqModal.css new file mode 100644 index 000000000..90f9594b9 --- /dev/null +++ b/css/lx-office-erp/jqModal.css @@ -0,0 +1,39 @@ +/* the overlayed element */ +.jqModal_overlay { + position: fixed; + top: 50%; + margin-top: -250px; + height: 500px; + + left: 50%; + margin-left: -400px; + width: 800px; + + background-image: url("../../image/fade.png"); + background-repeat: repeat-x; + background-color: #fff; + border: 1px solid #333; + + /* CSS3 styling for latest browsers */ + box-shadow: 0 0 90px 5px #000; + -moz-box-shadow: 0 0 90px 5px #000; + -webkit-box-shadow: 0 0 90px #000; + + padding: 10px; +} + +.jqModal_overlay .overlay_content { + width: 790px; + height: 490px; + overflow: auto; +} + +.jqModal_overlay .close { + background-image: url(../../image/dialog-close.png); + position: absolute; + right: -16px; + top: -16px; + cursor: pointer; + height: 32px; + width: 32px; +} -- 2.20.1