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

« back to all changes in this revision

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

  • Committer: chadnickbok
  • Date: 2009-01-19 22:56:46 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:1170
This commit fixes issue #10 and part of issue #9

There are now two options for moving files with their
svn history intact; svn move and svn copy. These
use the svn commands to move the files, allowing students
to move and rename files without their histories being
lost.

This commit also shows the svn status of a dir, if it is
the 'head' of an svn repository.

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
}