~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-31 03:07:38 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:346
consolee/console.css:
    Restyled all the objects in console. Now populates the entire screen
    instead of a fixed-height area at the top. (Resizes to fit the canvas).
    You've no idea how tricky this is!

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#console_body {
2
2
    background-color: black;
 
3
    position: absolute;
3
4
    color: white;
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 #console_body2 {
 
20
    /* Need some padding in windowpane mode */
 
21
    /* (In full mode, things are positioned absolutely) */
16
22
    padding: 0.5em;
17
23
}
18
24
/* Heading bar */
38
44
    right: 0.5em;
39
45
}
40
46
#console_output {
41
 
    /*border: solid black 1pt;*/
 
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 */
42
64
    height: 20em;
43
 
    overflow: scroll;
44
65
    margin-bottom: 0.5em;
45
66
}
46
67
#console_input {
47
 
    /*border: solid green 1pt;*/
 
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;
48
77
}
49
78
#console_prompt {
50
79
    font-family: monospace;