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

« back to all changes in this revision

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

Began implementing new dispatch framework (with Will Grant and Nick Chadwick).
Added package: ivle.webapp. This contains 'base', with some base class
    implementations for the new Plugins and Views, and 'admin', with 'user'
    (part of 'userservice') re-implemented for the new framework in a RESTful
    way.
dispatch: Added code to partly handle the new plugin system, then fall back to
    the old one.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* IVLE - Informatics Virtual Learning Environment
 
2
 * Copyright (C) 2007-2008 The University of Melbourne
 
3
 * Style Sheet for File Browser and Editor
 
4
 * (Text Editor view)
 
5
 * This file is redistributable under the terms of the GNU General Public
 
6
 * License version 2 or later.
 
7
 */
 
8
 
 
9
/* The editor iframe
 
10
 * Have it fill its entire containing box
 
11
 */
 
12
/* TODO: Make this more specific! */
 
13
iframe {
 
14
    position: absolute;
 
15
    left: 0;
 
16
    right: 0;
 
17
    top: 0;
 
18
    bottom: 0;
 
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;
 
24
}