blob: 49a7f6c6ad9c1b20ebb65717457a122c42ee7320 (
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
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
|
.feedViewerEntry {
background: #F0F0F0;
padding: 2px;
overflow-x: auto;
overflow-y: auto;
cursor: pointer;
}
.feedViewerEntry:hover {
background: #a6c2e7;
padding: 2px;
}
.feedViewerEntrySelected {
color: #000000;
background: #C0C0C0;
text-align: left;
vertical-align: top;
padding-bottom: 2px;
padding: 2px;
}
.feedViewerEntrySelected:hover {
background: #a6c2e7;
padding: 2px;
}
.feedViewerEntryUpdated {
text-align: left;
vertical-align: top;
color: #909090;
padding-bottom: 2px;
padding: 2px;
}
.feedViewerEntryUpdatedSelected {
text-align: left;
vertical-align: top;
color: #000000;
padding-bottom: 2px;
padding: 2px;
}
.feedViewerEntryTitle {
color:#000000;
text-align: left;
text-decoration:none;
padding-left: 4px;
padding-bottom: 2px;
}
.feedViewerEntryTitle:hover {
color:#000000;
text-align: left;
text-decoration:underline;
padding-left: 4px;
padding-bottom: 2px;
}
.feedViewerDeleteButton {
cursor: pointer;
color:#0000FF;
text-align: left;
font-size: small;
}
.feedViewerDeleteButton:hover {
text-decoration: underline;
}
|