~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-01-09 21:33:56 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:144
Trunk, and all subdirectories with Python files:
    Added to svn:ignore all *.pyc *.pyo, to avoid compiled files
    showing up in svn st / diff / commit lists.
    Added to svn:ignore trampoline/trampoline.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#console_body {
2
 
    background-color: black;
3
 
    position: absolute;
4
 
    color: white;
5
 
    padding: 0;
6
 
    width: 100%;
7
 
    top: 0;
8
 
    bottom: 0;
9
 
}
10
 
/* console_body when displayed as a window panel and not the whole app */
11
 
#console_body.windowpane {
12
 
    position: fixed;
13
 
    top: auto;      /* Do not fix to top */
14
 
    bottom: 0;
15
 
    left: 0;
16
 
    right: 0;
17
 
    z-index: 1;     /* Go in front of console_filler */
18
 
}
19
 
#console_body.windowpane #console_body2 {
20
 
    /* Need some padding in windowpane mode */
21
 
    /* (In full mode, things are positioned absolutely) */
22
 
    padding: 0.5em;
23
 
}
24
 
/* Heading bar */
25
 
#console_heading {
26
 
    background-color: gray;
27
 
    border: 2px solid black;
28
 
    padding: 2px;
29
 
    color: black;
30
 
    font-family: monospace;
31
 
    font-weight: bold;
32
 
}
33
 
/* If "minimized", console_heading and console_output are hidden */
34
 
#console_body.minimal #console_heading,
35
 
#console_body.minimal #console_output,
36
 
/* If "maximized", the maximize button is hidden */
37
 
#console_body.maximal .maximize {
38
 
    display: none;
39
 
}
40
 
/* Minimize/maximize button */
41
 
.console_button {
42
 
    cursor: pointer;    /* Display hand cursor, since this is a button */
43
 
    position: absolute;
44
 
    right: 0.5em;
45
 
}
46
 
#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 */
58
 
    overflow: scroll;
59
 
}
60
 
#console_body.windowpane #console_output {
61
 
    /* Don't want this absolutely positioned in windowpane mode */
62
 
    position: static;
63
 
    /* Give it an explicit height instead */
64
 
    height: 20em;
65
 
    margin-bottom: 0.5em;
66
 
}
67
 
#console_input {
68
 
    position: absolute;
69
 
    /* Input bar goes along the bottom. Pad all sides */
70
 
    left: 0.5em;
71
 
    right: 0.5em;
72
 
    bottom: 0.5em;
73
 
}
74
 
#console_body.windowpane #console_input {
75
 
    /* Don't want this absolutely positioned in windowpane mode */
76
 
    position: static;
77
 
}
78
 
#console_prompt {
79
 
    font-family: monospace;
80
 
}
81
 
#console_inputText {
82
 
    background-color: black;
83
 
    color: white;
84
 
    width: 90%;
85
 
}
86
 
/* console filler takes up the same space as console_body.windowpane
87
 
 * but its position is relative, not fixed.
88
 
 * This avoids having the console overlap with the bottom 28em of page
89
 
 * content.
90
 
 * It has two classes. "windowpane" turns it on. "minimal" or "maximal"
91
 
 * control its height.
92
 
 */
93
 
#console_filler {
94
 
    display: none;
95
 
}
96
 
#console_filler.windowpane {
97
 
    display: block;
98
 
    z-index: -1;        /* Go behind the actual console */
99
 
    width: 100%;
100
 
    position: relative;
101
 
    bottom: 0;
102
 
    left: 0;
103
 
    right: 0;
104
 
}
105
 
#console_filler.maximal {
106
 
    /* total height of console = 20em + 1em + 0.5em + 0.5em + 0.5em + 1em + borders
107
 
     */
108
 
    height: 24em;
109
 
}
110
 
#console_filler.minimal {
111
 
    /* total height of console = 1em + 0.5em + 0.5em
112
 
     */
113
 
    height: 2em;
114
 
}
115
 
pre.errorMsg {
116
 
    color: red;
117
 
    margin-top: 0em;
118
 
    margin-bottom: 0em;
119
 
}
120
 
pre.inputMsg {
121
 
    color: gray;
122
 
    margin-top: 0em;
123
 
    margin-bottom: 0em;
124
 
}
125
 
pre.outputMsg {
126
 
    margin-top: 0em;
127
 
    margin-bottom: 0em;
128
 
}