##// END OF EJS Templates
styling: #3989 improved report styling
lisaq -
Show More

The requested changes are too big and content was truncated. Show full diff

1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
@@ -1,427 +1,444 b''
1 1 .top-state-report {
2 2
3 h3 {
4 margin: 0 0 15px;
5 }
6
7 .tab-pane {
8 padding: 15px;
9 border-bottom: 1px solid #ddd;
10 border-right: 1px solid #ddd;
11 border-left: 1px solid #ddd;
12 border-radius: 4px;
13 }
14
15 .perf_stats,
16 .report-table {
17 margin-bottom: 30px;
18 }
19
3 20 .affected-user-list {
4 21 margin: 0px;
5 22 padding: 0px;
6 23 li {
7 24 list-style: none;
8 25 padding-bottom: 5px;
9 26 }
10 27 }
11 28
12 29 .inspect_vars .glyphicon {
13 30 margin: 0 2px;
14 31 padding: 2px 5px 5px;
15 32 }
16 33
17 34 .priority {
18 35 border-radius: 20px 20px 20px 20px;
19 36 display: inline-block;
20 37 font-size: 79.4%;
21 38 font-weight: bold;
22 39 height: 15px;
23 40 padding: 1px 0 0;
24 41 text-align: center;
25 42 width: 15px;
26 43 position: absolute;
27 44 margin-left: 22px;
28 45 margin-top: -7px;
29 46 box-shadow: 0px 0px 2px rgb(255, 255, 255);
30 47 }
31 48
32 49 .priority-1 {
33 50 background-color: rgb(255, 233, 233);
34 51 color: rgb(255, 123, 123);
35 52 .priority
36 53 }
37 54
38 55 .priority-2 {
39 56 background-color: rgb(255, 211, 211);
40 57 color: @color_white;
41 58 .priority
42 59 }
43 60
44 61 .priority-3 {
45 62 background-color: rgb(255, 189, 189);
46 63 color: @color_white;
47 64 .priority
48 65 }
49 66
50 67 .priority-4 {
51 68 background-color: rgb(255, 167, 167);
52 69 color: @color_white;
53 70 .priority
54 71 }
55 72
56 73 .priority-5 {
57 74 background-color: rgb(255, 145, 145);
58 75 color: @color_white;
59 76 .priority
60 77 }
61 78
62 79 .priority-6 {
63 80 background-color: rgb(255, 123, 123);
64 81 color: @color_white;
65 82 .priority
66 83 }
67 84
68 85 .priority-7 {
69 86 background-color: rgb(255, 101, 101);
70 87 color: @color_white;
71 88 .priority
72 89 }
73 90
74 91 .priority-8 {
75 92 background-color: rgb(255, 79, 79);
76 93 color: @color_white;
77 94 .priority
78 95 }
79 96
80 97 .priority-9 {
81 98 background-color: rgb(255, 57, 57);
82 99 color: @color_white;
83 100 .priority
84 101 }
85 102
86 103 .priority-10 {
87 104 background-color: rgb(255, 35, 35);
88 105 color: @color_white;
89 106 .priority
90 107 }
91 108
92 109 .table.report-list {
93 110 table-layout: fixed;
94 111
95 112 .occurences {
96 113 width: 45px;
97 114 }
98 115
99 116 .priority {
100 117 width: 45px;
101 118 }
102 119
103 120 .when {
104 121 width: 120px;
105 122 }
106 123
107 124 .report {
108 125 font-weight: bold;
109 126 }
110 127
111 128 tbody td {
112 129 padding: 15px;
113 130 }
114 131
115 132 .occurences {
116 133 .count {
117 134 background-color: @color_orange;
118 135 border-radius: 3px;
119 136 color: #FFFFFF;
120 137 display: inline-block;
121 138 font-weight: bold;
122 139 height: 33px;
123 140 padding: 7px 0 0;
124 141 text-align: center;
125 142 width: 33px;
126 143 }
127 144
128 145 .fixed {
129 146 background-color: @color_green;
130 147 }
131 148
132 149 .public {
133 150 background-color: @color_dark_blue;
134 151 }
135 152
136 153 .reviewed {
137 154 background-color: @color_light_grey;
138 155 color: #000000;
139 156 }
140 157
141 158 }
142 159 .when {
143 160 font-size: 80%;
144 161 }
145 162 .url {
146 163 color: #777777;
147 164 font-weight: normal;
148 165 }
149 166
150 167 .tick {
151 168 width: 20px !important;
152 169 }
153 170
154 171 .application {
155 172 width: 150px;
156 173 }
157 174
158 175 td.application {
159 176 font-size: 80%;
160 177 .app_name {
161 178 font-weight: bold;
162 179 }
163 180 .server {
164 181 color: #777777;
165 182 }
166 183 }
167 184
168 185 }
169 186
170 187 #error-history_pane div {
171 188 }
172 189
173 190 #request-details-container #request-details {
174 191 font-size: 80%;
175 192 > ul {
176 193 padding: 0px;
177 194 }
178 195 li {
179 196 margin: 0px 0px 10px 0px;
180 197 list-style: none;
181 198 }
182 199 }
183 200
184 201 .reformat {
185 202 .white-block;
186 203 pre {
187 204 font-size: 0.88em;
188 205 font-family: monospace, monospace;
189 206 line-height: 1.8em;
190 207 color: #555555;
191 208
192 209 .border-radius(0px);
193 210 border: 0px;
194 211 margin: 0px;
195 212 }
196 213 }
197 214
198 215 .report-table {
199 216 font-size: 86%;
200 217 width: 100%;
201 218 td.table-label {
202 219 width: 115px;
203 220 }
204 221 &.with-ellipsis {
205 222 table-layout: fixed;
206 223 }
207 224
208 225 &.with-tags {
209 226 td.table-label {
210 227 width: 150px;
211 228 .word-wrap;
212 229 }
213 230 }
214 231 }
215 232
216 233 .report-table td.data {
217 234 padding-bottom: 10px;
218 235 vertical-align: top;
219 236 }
220 237
221 238 .report-table td.table-label {
222 239 min-width: 115px;
223 240 text-align: left;
224 241 padding: 0px 10px 0px 0px;
225 242 font-weight: bold;
226 243 line-height: 1.5em;
227 244 vertical-align: top;
228 245 }
229 246 .userRepresentation {
230 247 min-width: 200px;
231 248 height: 55px;
232 249 overflow: hidden;
233 250 margin-bottom: 5px;
234 251 list-style: none;
235 252 padding: 5px;
236 253 -webkit-transition-duration: 0.25s;
237 254 -moz-transition-duration: 0.25s;
238 255 -o-transition-duration: 0.25s;
239 256 transition-duration: 0.25s;
240 257
241 258 p {
242 259 margin: 0px;
243 260
244 261 }
245 262
246 263 &:hover {
247 264 background-color: rgb(255, 111, 0);
248 265 -webkit-transition-duration: 0.25s;
249 266 -moz-transition-duration: 0.25s;
250 267 -o-transition-duration: 0.25s;
251 268 transition-duration: 0.25s;
252 269 }
253 270
254 271 img {
255 272 float: left;
256 273 height: 50px;
257 274 max-width: 50px;
258 275 margin: 0px 5px 0px 0px;
259 276 }
260 277
261 278 }
262 279 .user_picker {
263 280 font-size: 80%;
264 281
265 282 .column {
266 283 width: 33%;
267 284 float: left;
268 285 }
269 286
270 287 ul {
271 288 padding: 0px;
272 289 height: 400px;
273 290 overflow: auto;
274 291 min-width: 250px;
275 292 border: 1px solid #eeeeee;
276 293 padding: 5px;
277 294 margin: 5px 0px;
278 295 }
279 296 }
280 297
281 298 .comment-holder {
282 299 border: 1px solid @color_light_grey;
283 300 }
284 301
285 302 .comment-holder {
286 303 background-color: #FFFFFF;
287 304 border: 1px solid #E1E1E1;
288 305 margin-bottom: 5px;
289 306 padding: 10px;
290 307 }
291 308
292 309 .comment-holder .icon.big {
293 310 margin: 0 0 0 -7px;
294 311 }
295 312
296 313 #comment_create .TextAreaField {
297 314 width: 90%;
298 315 height: 70px;
299 316 }
300 317
301 318 #basic-info_pane {
302 319 position: relative;
303 320 }
304 321
305 322 .switch_detail_holder {
306 323 position: absolute;
307 324 right: 10px;
308 325 font-size: 70%;
309 326 }
310 327
311 328 #similar-reports {
312 329 .notice {
313 330 color: lighten(@color_grey, 20%);
314 331 }
315 332 }
316 333
317 334 .frames {
318 335 margin-top: 15px;
319 336
320 337 .white-block;
321 338
322 339 .frame {
323 340 padding-bottom: 10px;
324 341 .icon {
325 342 padding: 10px
326 343 }
327 344 &.even {
328 345 background-color: #f9f9f9;
329 346 }
330 347 }
331 348
332 349 .frameline, .cline {
333 350 line-height: 150%;
334 351 color: lighten(@color_grey, 40%);
335 352 }
336 353 .mono {
337 354 font-family: monospace;
338 355 white-space: pre-wrap;
339 356 font-size: 86%;
340 357 }
341 358
342 359 .dim:hover {
343 360 opacity: 0.8;
344 361 }
345 362
346 363 .file {
347 364 color: @color_med_blue;
348 365 font-weight: bold;
349 366 }
350 367 .cline {
351 368 padding-left: 50px;
352 369 color: @color_vdark_grey;
353 370 }
354 371 .line {
355 372 color: @color_dark_blue;
356 373 font-weight: bold;
357 374 }
358 375 .fn {
359 376 color: @color_dark_orange;
360 377 font-weight: bold;
361 378 }
362 379
363 380 }
364 381
365 382 .var-listing {
366 383 td {
367 384 padding: 10px 10px 10px 10px;
368 385 }
369 386 .var-label {
370 387 margin-right: 10px;
371 388 font-weight: bold;
372 389 text-align: right;
373 390 vertical-align: top;
374 391 max-width: 200px;
375 392 overflow: hidden;
376 393 text-overflow: ellipsis;
377 394 }
378 395
379 396 .odd {
380 397 background-color: rgba(0, 0, 0, 0.024);
381 398 }
382 399
383 400 }
384 401
385 402 .report-section {
386 403 #row-start_date, #row-end_date, #row-priority, #row-http_status {
387 404 display: inline-block;
388 405 width: 110px
389 406 }
390 407
391 408 .no-vars {
392 409 width: 31px;
393 410 display: inline-block;
394 411 }
395 412
396 413 }
397 414
398 415 .slow-report-section {
399 416 #row-start_date, #row-end_date {
400 417 display: inline-block;
401 418 width: 110px
402 419 }
403 420
404 421 #row-priority {
405 422 display: inline-block;
406 423 width: 75px
407 424 }
408 425
409 426 #row-min_request_time {
410 427 display: inline-block;
411 428 width: 140px;
412 429 input {
413 430 width: 75px;
414 431 }
415 432 }
416 433
417 434 }
418 435
419 436 .fixed {
420 437 color: @color_red;
421 438 }
422 439
423 440 .not-fixed {
424 441 color: @color_green;
425 442 }
426 443
427 444 }
General Comments 0
You need to be logged in to leave comments. Login now