1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/* 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.
*/
#editorhead {
/* Same colour scheme as browser.css:topbar */
background-color: #aaf;
padding: 0;
height: 2em;
}
#editorhead p {
margin: 0 0.5em;
}
/* The EditArea iframe
* Have it fill its entire containing box
*/
#frame_editbox {
position: absolute;
left: 0;
right: 0;
top: 2em; /* == #editorhead.height */
bottom: 0;
/* Override EditArea's specified width and height */
width: 100% ! important;
height: auto ! important;
}
|