openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 6e61bb3aea853dab3576fe94a21279cbaf723aa9
parent 47666de9c85c2ff8d6e71574ab657ff6ba448ce4
Author: Jan Dankert <devnull@localhost>
Date:   Wed, 19 Sep 2012 23:53:01 +0200

Vorbereitung für modale Dialoge.

Diffstat:
themes/default/css/layout.css | 32++++++++++++++++++++++++++++++--
themes/default/layout/index.php | 7+++++++
2 files changed, 37 insertions(+), 2 deletions(-)

diff --git a/themes/default/css/layout.css b/themes/default/css/layout.css @@ -1235,4 +1235,32 @@ table td.changed { /* Modale Dialoge */ #simplemodal-overlay {background-color:#000;} -#simplemodal-container {background-color:#333; border:8px solid #444; padding:12px;}- \ No newline at end of file +#simplemodal-container {background-color:#333; border:8px solid #444; padding:12px;} + +div#filler +{ + xxxxdisplay: block; + position:absolute; + z-index: 100; + top: 0; + left: 0; + height:100%; + width:100%; + background-color: black; + opacity: 0.5; +} + +div#modaldialog +{ + xxxxdisplay: block; + position:absolute; + z-index: 198; + top: 0; + left: 0; + opacity: 1; + margin:10%; + height:60%; + width:80%; + border:5px solid black; + background-color:white; +}+ \ No newline at end of file diff --git a/themes/default/layout/index.php b/themes/default/layout/index.php @@ -126,5 +126,12 @@ document.writeln("</div>"); </form> <iframe src="about:blank" name="temp" class="invisiblex" width="0px" height="0px" style="width:0px;height:0px;"></iframe> +<div id="filler"> +</div> + +<div id="modaldialog" class="xinvisible"> +Test test test test +</div> + </body> </html>