diff options
author | Derrell Lipman <derrell@samba.org> | 2006-10-06 15:40:18 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:20:40 -0500 |
commit | 10c06a1968dbf39d8a3790077a3537b8323f36ff (patch) | |
tree | f7389aac531dfe7c0d538879bdbd15cca33156e4 /swat/apps/resource/css | |
parent | 77fc14c0818498e277a79196fa4f6e15f4b607b1 (diff) | |
download | samba-10c06a1968dbf39d8a3790077a3537b8323f36ff.tar.gz samba-10c06a1968dbf39d8a3790077a3537b8323f36ff.tar.bz2 samba-10c06a1968dbf39d8a3790077a3537b8323f36ff.zip |
r19141: add a reasonable subset of the qooxdoo runtime environment, and example applications
(This used to be commit ff28ab7314ff1eebcd62f387678b816091af8121)
Diffstat (limited to 'swat/apps/resource/css')
-rw-r--r-- | swat/apps/resource/css/layout.css | 162 | ||||
-rw-r--r-- | swat/apps/resource/css/layout_ie.css | 11 |
2 files changed, 173 insertions, 0 deletions
diff --git a/swat/apps/resource/css/layout.css b/swat/apps/resource/css/layout.css new file mode 100644 index 0000000000..077d71d3be --- /dev/null +++ b/swat/apps/resource/css/layout.css @@ -0,0 +1,162 @@ +body{ + font-size: 11px; + font-family: Arial, "Bitstream Vera Sans", Verdana, sans-serif; + margin: 0; + padding: 0; +} + +p{ + margin: 6px 0; +} + +#demoHead, +#demoFoot{ + position: absolute; + left: 0px; + right: 0px; + width: 100%; + background: #134275; + padding: 3px 8px; + height: 20px; + color: white; + font-weight: bold; + overflow: hidden; + z-index: 1000000000; +} + +#demoHead{ + top: 0px; +} + +#demoHead span{ + font-weight: normal; +} + +#demoFoot{ + bottom: 0px; +} + +#demoFoot a{ + color: white; +} + +#demoFrame{ + position: absolute; + top: 20px; + bottom: 20px; + right: 0; + width: 280px; + background: #fff; + border-left: 10px solid #134275; + z-index: 1000000000; +} + +#demoFiles{ + font-size: 11px; + font-family: Tahoma, Verdana, sans-serif; + + position: absolute; + top: 24px; + right: 50px; + width: 215px; + z-index: 1000000002; +} + +#demoJump{ + position: absolute; + top: 24px; + right: 4px; + width: 45px; + text-align: right; + z-index: 1000000002; +} + +#demoDescription{ + position: absolute; + top: 44px; + height : 120px; + width: 266px; + right: 4px; + z-index: 1000000002; + overflow: auto; + border-bottom: 10px solid #134275; + padding: 0px 6px 0px 4px; +} + +#demoDescription p{ + margin: 4px 0; +} + +#demoDescription h1{ + font-size: 12px; + margin: 8px 0 4px; +} + +#demoDebug{ + position: absolute; + top: 160px; + bottom: 24px; + right: 4px; + width: 266px; + font-size: 10px; + font-family: "Bitstream Vera Sans Mono", "Courier New", "Courier", monospace; + z-index: 1000000102; +} + +#demoDebug .log-body{ + overflow: auto; + position: absolute; + top: 30px; + bottom: 0px; + width: 266px; + padding: 4px; +} + +#demoDebug .log-debug{ + color: gray; + padding-left: 6px; +} + +#demoDebug .log-info{ + background: #DFEBFD; + padding-left: 6px; +} + +#demoDebug .log-warn{ + background: #F5FAAD; + padding-left: 6px; +} + +#demoDebug .log-error{ + background: #D2623E; + color: black; + padding-left: 6px; +} + +#demoDebug .log-group{ + margin-top: 4px; + margin-bottom: 1px; + text-decoration: underline; +} + +#demoDebug .log-head{ + padding: 8px 2px 4px; +} + +#demoJump button, +#demoDebug .log-head button{ + border: 1px solid #335EA8; + margin: 0 2px; + font-size: 11px; + background: #EBE9ED; + font-family: Tahoma, Verdana, sans-serif; +} + +#demoDebug .log-head button{ + visibility: visible; +} + +#demoJump button{ + width: 16px; + -moz-appearance: none !important; +} diff --git a/swat/apps/resource/css/layout_ie.css b/swat/apps/resource/css/layout_ie.css new file mode 100644 index 0000000000..70de91b69e --- /dev/null +++ b/swat/apps/resource/css/layout_ie.css @@ -0,0 +1,11 @@ +#demoFrame{ + height: expression(document.body.offsetHeight - 40); +} + +#demoDebug{ + height: expression(document.body.offsetHeight - 184); +} + +#demoDebug .log-body{ + height: expression(document.body.offsetHeight - 214); +} |