~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/console/overlay.html

  • Committer: mattgiuca
  • Date: 2008-01-31 01:44:30 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:345
Global CSS change: ivlebody no longer has 1em of padding (it has none).
This is because most apps were disabling it (and it had to change anyway for
other reasons -- see below).

Hence, all apps which WERE disabling the padding have had that removed, and
just work by default. (console, browser, tutorial)
All apps which WEREN'T disabling the padding (very few) now have to manually
include an extra div. This has been done on all such apps, and has been
heavily documented (both in the CSS file and doc/app_howto). (help, dummy,
debuginfo).

media/common/ivle.css: 
    The real change here (which isn't yet being used) is that ivlebody is now
    positioned absolutely and takes up all the space on the canvas. This is
    to be used for full-page layouts in console and browser.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<html xmlns="http://www.w3.org/1999/xhtml"
2
 
      xmlns:xi="http://www.w3.org/2001/XInclude"
3
 
      xmlns:py="http://genshi.edgewall.org/" py:strip="">
4
 
      
5
 
  <body py:strip="">
6
 
    <div class="console_body" id="console_body" py:attrs="start_body_attrs">
7
 
      <div class="console_heading" id="console_heading" py:if="windowpane">Python Console
8
 
        <span class="console_button minimize">
9
 
          <a onclick="console_minimize()"
10
 
              title="Minimize the Python console">
11
 
            <img src="${minimize_path}" alt="Minimize" />
12
 
          </a>
13
 
        </span>
14
 
      </div>
15
 
      <div class="console_body2">
16
 
        <pre class="console_output outputMsg" id="console_output"></pre>
17
 
        <div class="console_input">
18
 
          <div>
19
 
            <div>
20
 
              <label class="console_prompt" id="console_prompt">&gt;&gt;&gt; </label>
21
 
            </div>
22
 
            <div class="console_inputCell">
23
 
              <input class="console_inputText" id="console_inputText" type="text" 
24
 
                  onkeydown="return catch_input(event.keyCode)" />
25
 
            </div>
26
 
            <div>
27
 
              <input type='button' value='Interrupt'
28
 
                  onclick='set_interrupt();'/>
29
 
              <input type='button' value='Clear Output'
30
 
                  onclick='return clear_output();'/>
31
 
              <input type='button' value='Reset'
32
 
                  onclick='console_reset();'/>
33
 
            </div>
34
 
            <div py:if="windowpane" class="console_button maximize">
35
 
              <a onclick="console_maximize()"
36
 
                  title="Open up the Python console">
37
 
                <img src="${maximize_path}" alt="Maximize"/>
38
 
              </a>
39
 
            </div>
40
 
          </div>
41
 
        </div>
42
 
      </div>
43
 
    </div>
44
 
    <div py:if="windowpane" id="console_filler" class="windowpane minimal">
45
 
    <!-- Console filler, provides extra vertical space to stop the console
46
 
                                            covering over the bottom content -->
47
 
    </div>
48
 
  </body>
49
 
</html>