1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* IVLE - Informatics Virtual Learning Environment
* Copyright (C) 2007-2008 The University of Melbourne
* Style Sheet for File Browser and Editor
* (Text Editor view)
* This file is redistributable under the terms of the GNU General Public
* License version 2 or later.
*/
/* The editor iframe
* Have it fill its entire containing box
*/
/* TODO: Make this more specific! */
iframe {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
/* Override the specified width and height */
width: 100% ! important;
/* FIXME: This is not quite right, but a better approximation of 'right'
* for the time being (Something is very odd with the spacing) */
height: 100% ! important;
}
|