Parent: [6092b6] (diff)

Child: [c92eb3] (diff)

Download this file

cdbrowser.css    92 lines (80 with data), 1.6 kB

 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
/* General font selection. This is the place to adjust the font size for the
* directory browser area. */
html, body, form, fieldset, table, tr, td, img {
font-family:Arial,helvetica,sans-serif;
font-size: 10pt;
}
/* Servers page. Each is a p */
p.cdserver {
margin: 7px 0px 0px 0px;
}
a {
text-decoration: none;
}
/* The current path indicator is an ul inside a browsepath div */
#browsepath {
font-size: 80%;
font-weight: bold;
margin: 0px 0px 10px 0px;
}
#browsepath ul {
list-style-type: none;
margin: 0;
padding: 0;
}
#browsepath li {
margin-left: 3px;
float: left;
}
/* Directory listing */
/* The table id is entrylist */
#entrylist {
clear: both;
width: 100%;
/* table-layout: fixed;*/
}
// The table begins with a colgroup, with the following column
// classes. I was not able to do anything really useful with setting
// the widths, I find that the automatic approach is always
// better. This might be different if overflow: and text-overflow:
// worked, but they don't appear to. So the following is commented out
// by default
/*
.coltracknumber {
width: 4%;
}
.coltitle {
font-size: 50%;
width: 30%;
}
.colartist {
width: 30%;
}
.colalbum {
width: 30%;
}
.colduration {
width: 6%;
}
*/
/* Styles for the directory list cells */
.tk_tracknum {
width: 1em;
}
.tk_artist {
align: left;
margin-left: 5px;
}
.tk_album {
margin-left: 5px;
// Could not get this to work,
// white-space: nowrap;
// overflow: hidden;
// text-overflow: ellipsis;
}
.tk_title {
margin-left: 5px;
}
.tk_duration {
margin-left: 5px;
}