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
94
95
96
97
98
|
/* 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;
/* Approximate height of the components */
height: 2.3em;
padding: 0;
background-color: #ddd;
}
/* We don't want the bold-ness of a regular golden H1 */
#topbar #path {
font-weight: normal;
}
#topbar #path a {
font-weight: bold;
}
#actions {
padding: 0.3em 0.5em;
border-top: white 1px solid; /* Top edge of 3D effect */
line-height: 1.6em;
}
/* 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: #002a8c;
cursor: pointer;
}
#actions1 a.choice:hover, #actions1 a.choice:active, #actions1 a.choice:focus,
#actions2 a:hover, #actions2 a:active, #actions2 a:focus {
color: #002a8c;
}
#actions1 a.choice:hover, #actions2 a:hover {
text-decoration: underline;
}
#actions1 a.disabled {
color: black;
text-decoration: none;
cursor: auto;
}
/* Drop-down actions and headings */
#actions1 option.moreactions, #actions1 option.disabled {
color: #aaa;
}
/* 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 */
top: 2.3em;
/* Space for the mimimised console */
bottom: 2em;
}
|