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

« back to all changes in this revision

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

  • Committer: stevenbird
  • Date: 2008-02-22 06:26:34 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:549
Changed console from reverse video to normal (white background, black
text), as requested in steering committee meeting, since this makes
a big difference to visibility in lectures (cf longitudinal chromatic
aberration).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#console_body {
2
 
    background-color: black;
 
2
    background-color: white;
3
3
    position: absolute;
4
 
    color: white;
 
4
    color: black;
5
5
    padding: 0;
6
6
    width: 100%;
7
7
    top: 0;
16
16
    right: 0;
17
17
    z-index: 1;     /* Go in front of console_filler */
18
18
}
 
19
#console_body.windowpane.minimal {
 
20
    border-top: 1px solid black;
 
21
}
19
22
#console_body.windowpane #console_body2 {
20
23
    /* Need some padding in windowpane mode */
21
24
    /* (In full mode, things are positioned absolutely) */
85
88
    font-family: monospace;
86
89
}
87
90
#console_inputText {
88
 
    background-color: black;
89
 
    color: white;
 
91
    background-color: white;
 
92
    color: black;
90
93
    width: 90%;
91
94
}
92
95
/* console filler takes up the same space as console_body.windowpane
124
127
    margin-bottom: 0em;
125
128
}
126
129
pre.inputMsg {
127
 
    color: gray;
 
130
    color: #404040;
128
131
    margin-top: 0em;
129
132
    margin-bottom: 0em;
130
133
}