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

« back to all changes in this revision

Viewing changes to www/media/browser/editor.css

  • Committer: stevenbird
  • Date: 2008-02-16 01:18:46 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:481
reverted change that added a command-line flag to specify that an account should be enabled as this bypasses creating the jail

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 * License version 2 or later.
7
7
 */
8
8
 
 
9
#editorhead {
 
10
    /* Same colour scheme as browser.css:topbar */
 
11
    background-color: #aaf;
 
12
    padding: 0;
 
13
    height: 2em;
 
14
}
 
15
 
 
16
#editorhead p {
 
17
    margin: 0 0.5em;
 
18
}
 
19
 
9
20
/* The EditArea iframe
10
21
 * Have it fill its entire containing box
11
22
 */
13
24
    position: absolute;
14
25
    left: 0;
15
26
    right: 0;
16
 
    top: 0;
 
27
    top: 2em;       /* == #editorhead.height */
17
28
    bottom: 0;
18
29
    /* Override EditArea's specified width and height */
19
 
    width: 100% ! important;
20
 
    /* FIXME: This is not quite right, but a better approximation of 'right' 
21
 
     * for the time being (Something is very odd with the spacing) */
22
 
    height: 100% ! important;
 
30
    width: auto ! important;
 
31
    height: auto ! important;
23
32
}