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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
/* IVLE - Informatics Virtual Learning Environment
* Copyright (C) 2007-2008 The University of Melbourne
* Style Sheet for File Browser and Editor
* This file is redistributable under the terms of the GNU General Public
* License version 2 or later.
*/
/* GENERAL FORMATTING */
#ivlebody p, #ivlebody h2, #ivlebody h3 {
padding: 0;
margin: 0.7em 0;
}
#ivlebody p, #ivlebody h3 {
font-size: 1em;
}
#ivlebody h2 {
font-size: 1.1em;
}
.padding {
padding: 1em;
}
/* TOP BAR */
#topbar {
position: absolute;
left: 0;
right: 0;
top: 0;
/* height == h2.margin + h2.line-height
* + max(h2.margin, p.margin) + p.line-height + p.margin
* == 1.1*0.7em + 1.1*1.2em + 1.1*0.7em + 1.1em + 0.7em
* == 4.6em */
height: 4.6em;
padding: 0.5em;
background-color: #aaf;
}
#topbar div {
margin: 0.2em;
}
#topbar #path a {
font-weight: bold;
}
/* class "choice" is for all choices, enabled and disabled. This is for both
* the <a> actions and <option> actions.
* class "disabled" is for disabled choices.
*/
#actions1 a.choice, #actions2 a {
color: navy;
text-decoration: underline;
cursor: pointer;
}
#actions1 a.choice:hover, #actions1 a.choice:active, #actions1 a.choice:focus,
#actions2 a:hover, #actions2 a:active, #actions2 a:focus {
color: blue;
}
#actions1 a.disabled {
color: black;
text-decoration: none;
cursor: auto;
}
/* Drop-down actions and headings */
#actions1 option.moreactions, #actions1 option.disabled {
color: #aaa;
}
#actions2 p {
margin: 0;
}
/* One of the actions2s is shown at runtime, depending on the context.
* We will show moreactions if we need it. */
#actions1 #moreactions_area, #actions2 #actions2_file,
#actions2 #actions2_directory {
display: none;
}
/* Everything under the top bar */
#filesbody {
position: absolute;
left: 0;
right: 0;
/* top == #topbar.height + #topbar.padding * 2 */
top: 5.6em;
/* Space for the mimimised console */
bottom: 3.5em;
}
|