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

« back to all changes in this revision

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

  • Committer: stevenbird
  • Date: 2008-02-01 03:51:56 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:368
First version of a DTD for XML problem files

Show diffs side-by-side

added added

removed removed

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