blob: 36400c9dd63b88b963de56cdb5066aac3b6a5609 (
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
.feedEntryViewer {
color:#000000;
background: #FFFFFF;
/* overflow: auto;*/
}
.feedEntryViewerMenuTable {
background: #C0C0C0;
border:2px solid;
border-top-color: lightgrey;
border-left-color: lightgrey;
border-right-color: darkgray;
border-bottom-color: darkgray;
margin: 0;
}
.feedEntryViewerMenu, .peopleEditorButton {
cursor: pointer;
color:#0000FF;
text-align: left;
font-size: small;
}
.feedEntryViewerDisplayCheckbox {
font-size: small;
text-align: left;
}
.feedEntryViewerMenu:hover, .peopleEditorButton:hover {
text-decoration: underline;
}
.feedEntryViewerContainer, .feedEntryViewerContainer table {
border-width: 0;
margin: 0;
}
.feedEntryViewerTitle {
color:#000000;
background: #FFFFFF;
text-align: left;
/*padding-left: 10px;*/
font-size: 125%;
font-weight: bold;
}
.feedEntryViewerAuthor {
color:#000000;
background: #FFFFFF;
}
.feedEntryViewerAuthorNames {
color:#000000;
background: #FFFFFF;
text-align: left;
/*padding-left: 10px;*/
font-size: 110%;
font-style: italic;
font-weight: normal;
}
.feedEntryViewerSummary {
color:#000000;
background: #FFFFFF;
}
.feedEntryViewerUpdated {
color:#000000;
background: #FFFFFF;
}
.feedEntryViewerUpdatedText {
color:#000000;
background: #FFFFFF;
font-size: 110%;
font-style: italic;
font-weight: normal;
}
.feedEntryViewerId {
color:#000000;
background: #FFFFFF;
}
.feedEntryViewerIdText {
color:#000000;
background: #FFFFFF;
font-style: italic;
font-size: 110%;
font-weight: normal;
}
.feedEntryViewerContent {
color:#000000;
background: #FFFFFF;
}
.feedEntryViewerContributorNames {
color:#000000;
text-align: left;
/*padding-left: 10px;*/
font-size: 125%;
font-weight: normal;
}
.feedEntryViewer table {
}
|