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

« back to all changes in this revision

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

  • Committer: mattgiuca
  • Date: 2008-01-12 15:35:53 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:201
Added "test" directory.
Added make_date_test.py, a short script I wrote to test the date format
algorithm committed in the previous revision.

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
 * This file is redistributable under the terms of the GNU General Public
 
5
 * License version 2 or later.
 
6
 */
 
7
 
 
8
/* GENERAL FORMATTING */
 
9
 
 
10
p, h2, h3 {
 
11
    padding: 0;
 
12
    margin: 0;
 
13
    margin-top: 11px;
 
14
    margin-bottom: 11px;
 
15
}
 
16
p, h3 {
 
17
    font-size: 1em;
 
18
}
 
19
h2 {
 
20
    font-size: 1.1em;
 
21
}
 
22
 
 
23
/* OVERALL LAYOUT */
 
24
 
 
25
/* Override common #ivlebody */
 
26
#ivlebody {
 
27
    padding: 0 ! important;
 
28
}
 
29
 
 
30
#middle, #middle tbody {
 
31
    width: 100%;
 
32
    vertical-align: top;
 
33
    border-collapse: collapse;
 
34
}
 
35
 
 
36
#sidepanel {
 
37
    width: 300px;
 
38
}
 
39
 
 
40
/* TOP BAR */
 
41
 
 
42
#topbar {
 
43
    padding: 8px;
 
44
    background-color: #aaf;
 
45
}
 
46
#topbar a {
 
47
    font-weight: bold;
 
48
}
 
49
 
 
50
/* FILE LISTINGS TABLE */
 
51
 
 
52
#filetable {
 
53
    border-collapse: collapse;
 
54
    border-right: 1px solid #888;
 
55
    padding: 0;
 
56
}
 
57
 
 
58
th {
 
59
    text-align: left;
 
60
}
 
61
 
 
62
td.thincol {
 
63
    width: 24px;
 
64
}
 
65
 
 
66
#filetablediv {
 
67
    overflow: auto;
 
68
}
 
69
 
 
70
/* Individual column sizes */
 
71
/* All columns have fixed widths except filename, which expands to fit. */
 
72
 
 
73
.col-check {
 
74
    width: 20px;
 
75
}
 
76
.col-icons {
 
77
    width: 50px;
 
78
}
 
79
.col-filename {
 
80
    width: auto;
 
81
}
 
82
.col-size {
 
83
    width: 100px;
 
84
}
 
85
.col-date {
 
86
    width: 150px;
 
87
}
 
88
 
 
89
/* Table borders and rows */
 
90
 
 
91
tr.rowhead {
 
92
    background-color: #336;
 
93
    color: white;
 
94
}
 
95
tr.rowhead a:link, tr.rowhead a:visited {
 
96
    color: #aaf;
 
97
}
 
98
/* Unselected (grey shades)
 
99
 * Note alternating rows are different shades
 
100
 */
 
101
tr.row1 {
 
102
    background-color: #ccc;
 
103
    cursor: pointer;
 
104
}
 
105
tr.row2 {
 
106
    background-color: #aaa;
 
107
    cursor: pointer;
 
108
}
 
109
tr.row1:hover, tr.row2:hover {
 
110
    background-color: #eee;
 
111
}
 
112
/* And if they are selected (blue shades) */
 
113
tr.row1sel {
 
114
    background-color: #88e;
 
115
    cursor: pointer;
 
116
}
 
117
tr.row2sel {
 
118
    background-color: #66c;
 
119
    cursor: pointer;
 
120
}
 
121
tr.row1sel:hover, tr.row2sel:hover {
 
122
    background-color: #eee;
 
123
}
 
124
 
 
125
#filetable table {
 
126
    border-collapse: collapse;
 
127
}
 
128
 
 
129
#filetable td, #filetable th {
 
130
    border: 1px solid #888;
 
131
}
 
132
 
 
133
/* Borders between icons and filename are turned off. */
 
134
 
 
135
#filetable td.col-icons, #filetable th.col-date, #filetable td.col-date {
 
136
    border-right: 0 none;
 
137
}
 
138
#filetable td.col-filename {
 
139
    border-left: 0 none;
 
140
}
 
141
 
 
142
/* SIDE PANEL */
 
143
 
 
144
#sidepanel {
 
145
    border-left: 1px solid #888;
 
146
    border-top: 1px solid #888;
 
147
    background-color: #ccc;
 
148
    font-size: 0.8em;
 
149
    padding: 8px;
 
150
    text-align: center;
 
151
}
 
152
 
 
153
#sidepanel p, #sidepanel h1, #sidepanel h2 {
 
154
    margin: 0;
 
155
    padding: 0;
 
156
}
 
157
 
 
158
#sidepanel h2 {
 
159
    margin-top: 8px;
 
160
}
 
161
 
 
162
#sidepanel a {
 
163
    font-weight: bold;
 
164
}
 
165
 
 
166
/* STATUS BAR */
 
167
 
 
168
#statusbar {
 
169
    background-color: #aaa;
 
170
    border-top: 1px solid #888;
 
171
    font-size: 0.8em;
 
172
}