blob: 7e212b2031b49a66d1843b3b0148b6df04c74457 (
plain)
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
|
/* 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;
}
|