diff options
| author | Scott Ostler <sostler@deathmachine.local> | 2010-03-12 09:20:41 -0500 |
|---|---|---|
| committer | Scott Ostler <sostler@deathmachine.local> | 2010-03-12 09:20:41 -0500 |
| commit | 5ccd9bb3bc8226dce71d5742bc612bcd65f5b17d (patch) | |
| tree | 0a134f1418ce00beb1d791ea059febef4c5cdc6c | |
| parent | 8aa89f36f5aa59a853daaf24571bb2cddc7e9760 (diff) | |
Moved iframe style into css
| -rwxr-xr-x | template/browser.st | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/template/browser.st b/template/browser.st index e172d15..721bb98 100755 --- a/template/browser.st +++ b/template/browser.st @@ -18,17 +18,23 @@ var growlize = true; </script> - <style> iframe { z-index: 50000; position: fixed; top: 300px; right: 25px; + + width:100%; + height:100%; + padding:0px; + background-color: #fff; + position:absolute; + top:0px; left:0px; + border:none; } </style> - </head> <body> $banner()$ @@ -43,9 +49,9 @@ </div> <div id="messagePane"> <div id="messageList"> - <iframe src="/static/search/browser.html" style="width:100%;height:100%;padding:0px;background-color: #fff; position:absolute; top:0px; left:0px; border:none; allowtransparency="true" scrolling="auto" ></iframe> - - + <iframe src="/static/search/browser.html" + allowtransparency="true" + scrolling="auto" ></iframe> </div> </div> |
