383
by mattgiuca
Split media/browser/browser.css into 3 files (listing.css and editor.css). |
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 |
||
384
by mattgiuca
editor.js: Rewrote the way the editor and surrounding UI are inserted. The top |
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
|
|
21 |
* Have it fill its entire containing box
|
|
22 |
*/
|
|
23 |
#frame_editbox { |
|
24 |
position: absolute; |
|
25 |
left: 0; |
|
26 |
right: 0; |
|
27 |
top: 2em; /* == #editorhead.height */ |
|
28 |
bottom: 0; |
|
29 |
/* Override EditArea's specified width and height */
|
|
573
by agdimech
browser/editor.css: Changed frame width for editor to 100% to provide multi-browser functionality. |
30 |
width: 100% ! important; |
384
by mattgiuca
editor.js: Rewrote the way the editor and surrounding UI are inserted. The top |
31 |
height: auto ! important; |
383
by mattgiuca
Split media/browser/browser.css into 3 files (listing.css and editor.css). |
32 |
}
|