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

« back to all changes in this revision

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

  • Committer: mattgiuca
  • Date: 2008-02-25 02:54:45 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:563
install_proc: Notes on apt-get for epydoc and docutils.

Show diffs side-by-side

added added

removed removed

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