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
|
/* The user.css is mainly an example to demonstrate the possibilities */
/*
Disable items in navigation bar.
For valid ids read navigation.html.
*/
#rc {
display: none;
}
#tv {
display: none;
}
/*
Disable action icons.
e.g.: close, switch, record, imdb, info, stream
*/
/* disable info and stream buttons in lists */
.list .action.info,
.list .action.stream {
display: none;
}
/* Disable scrollbars in prog_summary detail view. */
#prog_summary .epg_summary {
overflow: auto;
}
/*
Workaround for scrollbar problem in InternetExplorer.
*/
table#heading,
table.list,
table#buttons,
div#buttons,
#at_timer_new .group,
#timer_new .group,
#rec_edit .group,
#vdr_cmds .group,
#about .group,
#config .group {
width: 95%;
}
/*
Change color of links from EPG title to prog_detail.
*/
.epg_title a {
color: blue;
}
|