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

« back to all changes in this revision

Viewing changes to www/media/console/console.css

  • Committer: drtomc
  • Date: 2008-01-30 21:05:02 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:337
Make trampoline use the path canonicalization code.
Add a makefile. This is only half a solution to the build issue, but it's
a start.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#console_body {
2
2
    background-color: black;
3
 
    position: absolute;
4
3
    color: white;
5
4
    padding: 0;
6
5
    width: 100%;
7
 
    top: 0;
8
 
    bottom: 0;
9
6
}
10
7
/* console_body when displayed as a window panel and not the whole app */
11
8
#console_body.windowpane {
12
9
    position: fixed;
13
 
    top: auto;      /* Do not fix to top */
14
10
    bottom: 0;
15
11
    left: 0;
16
12
    right: 0;
17
13
    z-index: 1;     /* Go in front of console_filler */
18
14
}
19
 
#console_body.windowpane #console_body2 {
20
 
    /* Need some padding in windowpane mode */
21
 
    /* (In full mode, things are positioned absolutely) */
 
15
#console_body2 {
22
16
    padding: 0.5em;
23
17
}
24
18
/* Heading bar */
44
38
    right: 0.5em;
45
39
}
46
40
#console_output {
47
 
    /*height: 20em;*/       /* Might be needed for windowpane mode */
48
 
    /*margin-bottom: 0.5em;*/
49
 
    position: absolute;
50
 
    /* 2em is to accomodate the header bar, and some padding */
51
 
    top: 2em;
52
 
    /* 2.5em is to accomodate the input bar, and padding either side */
53
 
    bottom: 2.5em;
54
 
    /* left and right 0.5em are just for horizontal padding */
55
 
    left: 0.5em;
56
 
    right: 0.5em;
57
 
    /* Display scroll bars */
 
41
    /*border: solid black 1pt;*/
 
42
    height: 20em;
58
43
    overflow: scroll;
59
 
    /* Some browsers support overflow-x and overflow-y. In this case, use
60
 
     * overflow-x: auto to disable the horizontal scroll bar.
61
 
     * (If unsupported this will simply fall back to a harmless but annoying
62
 
     * horizontal scroll bar).
63
 
     */
64
 
    overflow-x: auto;
65
 
}
66
 
#console_body.windowpane #console_output {
67
 
    /* Don't want this absolutely positioned in windowpane mode */
68
 
    position: static;
69
 
    /* Give it an explicit height instead */
70
 
    height: 20em;
71
44
    margin-bottom: 0.5em;
72
45
}
73
46
#console_input {
74
 
    position: absolute;
75
 
    /* Input bar goes along the bottom. Pad all sides */
76
 
    left: 0.5em;
77
 
    right: 0.5em;
78
 
    bottom: 0.5em;
79
 
}
80
 
#console_body.windowpane #console_input {
81
 
    /* Don't want this absolutely positioned in windowpane mode */
82
 
    position: static;
 
47
    /*border: solid green 1pt;*/
83
48
}
84
49
#console_prompt {
85
50
    font-family: monospace;