From ef256c958066c19bb10cbe9745bdf96b6514762d Mon Sep 17 00:00:00 2001 From: Derrell Lipman Date: Tue, 6 Feb 2007 03:23:52 +0000 Subject: r21167: - Upgrade to latest released qooxdoo. This is step 1 of the upgrade process, which involves adding the latest SDK. This new version has not 2, but 4 icon themes. In order to quiet Andrew B. who thinks that 9000+ files in a gui api is too many (come on, disk space is free these days :-), I have removed 3 of the 4 icon themes, leaving only the default, Nuvola. That lowers the file count by 1/3. I'm sure Andrew still isn't happy, but I hope he's a bit happier... Step 2 will make him happier yet. (This used to be commit d161c1382c36238105b85d0499d5a1011f580f52) --- .../application/sample/source/css/layout.css | 173 +++++++++++++++++++++ .../application/sample/source/css/layout_ie.css | 11 ++ 2 files changed, 184 insertions(+) create mode 100644 webapps/qooxdoo-0.6.5-sdk/frontend/application/sample/source/css/layout.css create mode 100644 webapps/qooxdoo-0.6.5-sdk/frontend/application/sample/source/css/layout_ie.css (limited to 'webapps/qooxdoo-0.6.5-sdk/frontend/application/sample/source/css') diff --git a/webapps/qooxdoo-0.6.5-sdk/frontend/application/sample/source/css/layout.css b/webapps/qooxdoo-0.6.5-sdk/frontend/application/sample/source/css/layout.css new file mode 100644 index 0000000000..e2c1d55ade --- /dev/null +++ b/webapps/qooxdoo-0.6.5-sdk/frontend/application/sample/source/css/layout.css @@ -0,0 +1,173 @@ +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; +} + +#demoFiles optgroup{ + background: #ececed; + font-size: 14px; + text-transform: capitalize; +} + +#demoFiles optgroup option{ + font-size: 11px; + background: #fff; +} + +#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/webapps/qooxdoo-0.6.5-sdk/frontend/application/sample/source/css/layout_ie.css b/webapps/qooxdoo-0.6.5-sdk/frontend/application/sample/source/css/layout_ie.css new file mode 100644 index 0000000000..70de91b69e --- /dev/null +++ b/webapps/qooxdoo-0.6.5-sdk/frontend/application/sample/source/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); +} -- cgit