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

« back to all changes in this revision

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

ivle.webapp.console.service: Port www/apps/consoleservice to new framework.
    consoleservice now lives under /console/service, and actions are taken
    in the "ivle.op" query argument, not as the last segment of the path.
    Otherwise the interface is identical.
www/apps/console/console.js: Update to new consoleservice interface.

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
 
 
20
 
/* The EditArea iframe
 
9
/* The editor iframe
21
10
 * Have it fill its entire containing box
22
11
 */
23
 
#frame_editbox {
 
12
/* TODO: Make this more specific! */
 
13
iframe {
24
14
    position: absolute;
25
15
    left: 0;
26
16
    right: 0;
27
 
    top: 2em;       /* == #editorhead.height */
 
17
    top: 0;
28
18
    bottom: 0;
29
 
    /* Override EditArea's specified width and height */
30
 
    width: auto ! important;
31
 
    height: auto ! important;
 
19
    /* Override the specified width and height */
 
20
    width: 100% ! important;
 
21
    /* FIXME: This is not quite right, but a better approximation of 'right' 
 
22
     * for the time being (Something is very odd with the spacing) */
 
23
    height: 100% ! important;
32
24
}