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

« back to all changes in this revision

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

  • Committer: dilshan_a
  • Date: 2008-01-25 02:35:29 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:302
Updated test framework so that student's code is passed in as a string.

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
 
}