-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
196 lines (173 loc) · 3.42 KB
/
style.css
File metadata and controls
196 lines (173 loc) · 3.42 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
/*
This is a copy of main Roundup website style.css from
website/www/_static/style.css in source repository.
*/
/* layout*/
body
{
font-family: sans-serif, Arial, Helvetica;
background-color: white;
color: #333;
margin:0;
padding: 0 3em 0 13em;
}
body > .header { margin: 0 0 0 -13em;}
body > .footer { margin: 0 0 0 -13em; clear:both;}
body > .navigation
{
margin-left: -13em;
width: 13em;
float: left;
}
body > .content
{
width: 100%;
margin: 0;
}
body > .header > #searchbox { position: absolute; right: 1em; top: 1em;}
/* style */
:link { color: #bb0000; text-decoration: none;}
:visited { color: #770000; text-decoration: none;}
.header h1 { margin-left: 1em; }
body
{
font-family: sans-serif, Arial, Helvetica;
background-color: #f5f5f5;
color: #333;
}
.menu { padding: 0; margin-right: 1em;}
.menu ul
{
padding: 0;
margin: 0;
}
.menu li
{
margin: 5pt 0;
}
.menu > ul > li > *
{
display: block;
padding: 2pt 2pt 2pt 10pt;
border: solid thin #dadada;
background-color:#ffffff;
}
.menu > ul > li.current > *
{
background-color:#dddddd;
}
.menu ul li:first-child { margin-top:0;}
.menu ul { list-style-type:none;}
/* sub-menus are indented */
.menu > ul > li > ul,
.menu > ul > li.current > ul
{
border: none;
background-color: inherit;
margin: 0;
}
.menu ul ul
{
margin-left: 2em;
font-size: smaller;
margin: 0 0 0 5pt;
}
/* sub-menu items draw a separator */
.menu ul ul > li
{
margin: 0;
padding: 0;
border: none;
border-top: solid thin #dadada;
background-color: inherit;
}
.menu ul ul > li:first-child
{
border-top: none;
}
.footer
{
font-size: small;
text-align: center;
color: black;
}
.content
{
padding: 1em;
border: solid thin #dadada;
background-color: #ffffff;
}
pre {
white-space: pre-wrap;
}
#search { text-align: right; }
p.ok-message
{
background-color: #eeffee;
border: 1px solid #009900;
padding: 5px;
color: #009900;
font-weight: bold;
}
p.error-message
{
background-color: #ffeeee;
border: 1px solid #990000;
padding: 5px;
color: #990000;
font-weight: bold;
}
/* This is a little hack to inject a 'news' block into the title
page without having to set up a custom directive. */
#roundup-issue-tracker .note
{
float: right;
width: auto;
border: solid thin #dadada;
background-color:#f5f5f5;
padding: 1em;
margin: 1em;
}
#roundup-issue-tracker .note .admonition-title { display: none; }
table
{
border-collapse: collapse;
border-spacing: 1px;
background-color: #fafafa;
}
table:not(.list) th {
text-align: left;
padding-block-end: 0.75em;
}
table textarea {
width: 99%;
}
table th[colspan] {
text-align: center;
}
/* Need some space between content of Issue List columns */
td, th { padding-left: 1em;
vertical-align: top; }
tr.odd { background-color:#f5f5f5; }
/* widen tables since headers have a lot of info and are squished
and difficult to read */
table.messages, table.files {
width: 95%;
}
/* Make sure that user name starts at the top of the change list
and not in the middle Issue2550809: History display misalignment */
table.history td {
vertical-align: top;
}
/* similar issue as above with history table. Align labels to the
left at the top of possible multiline description and other
columns */
table.classhelp td {
vertical-align: top;
}
.required:before {
content: "*";
color: red;
font-weight: bold;
}
/* SHA: 2a5330c3d1ee6bf31e672e1c8a9317d11b7eb436 */