Mercurial > piecrust2
comparison piecrust/resources/server/piecrust-debug-info.css @ 556:93b656f0af54
serve: Improve debug information in the preview server.
Now the debug window only loads debug info on demand.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Wed, 12 Aug 2015 23:18:35 -0700 |
parents | 9612cfc6455a |
children | 9428bd0025eb |
comparison
equal
deleted
inserted
replaced
555:daf8df5ade7d | 556:93b656f0af54 |
---|---|
1 | |
2 /*****************************************************************************/ | |
3 | |
1 @keyframes slideNotification { | 4 @keyframes slideNotification { |
2 0% { opacity: 1; } | 5 0% { opacity: 1; } |
3 100% { opacity: 0; right: -11em; } | 6 100% { opacity: 0; right: -11em; } |
4 } | 7 } |
5 | 8 |
28 .piecrust-debug-notification-error { | 31 .piecrust-debug-notification-error { |
29 background-color: #920C0C; | 32 background-color: #920C0C; |
30 border: 2px solid #810B0B; | 33 border: 2px solid #810B0B; |
31 } | 34 } |
32 | 35 |
36 /*****************************************************************************/ | |
37 | |
38 .piecrust-debug-window { | |
39 padding: 1em; | |
40 text-align: left; | |
41 font-family: serif; | |
42 font-style: normal; | |
43 font-size: 1rem; | |
44 font-weight: normal; | |
45 background: #a42; | |
46 color: #fff; | |
47 position: fixed; | |
48 width: 50%; | |
49 bottom: 0; | |
50 right: 0; | |
51 overflow: auto; | |
52 max-height: 50%; | |
53 box-shadow: 0 0 10px #633; | |
54 } | |
55 | |
56 .piecrust-debug-info { | |
57 } | |
58 | |
59 .piecrust-debug-info a { | |
60 color: #fff; | |
61 text-decoration: none; | |
62 } | |
63 | |
64 .piecrust-debug-icon { | |
65 height: 2em; | |
66 } | |
67 | |
68 .piecrust-debug-info-header1 { | |
69 margin: 0.5em 0; | |
70 font-weight: bold; | |
71 } | |
72 | |
73 .piecrust-debug-info-header2 { | |
74 margin: 0.5em 0; | |
75 font-weight: bold; | |
76 } | |
77 | |
78 .piecrust-debug-info-data { | |
79 font-family: Courier, sans-serif; | |
80 font-size: 0.9em; | |
81 } | |
82 | |
83 .piecrust-debug-info-datablock { | |
84 margin-left: 2em; | |
85 } | |
86 | |
87 .piecrust-debug-info-datavalue { | |
88 color: #fca; | |
89 } | |
90 | |
91 .piecrust-debug-info-doc { | |
92 color: #fa8; | |
93 font-size: 0.9em; | |
94 } | |
95 | |
96 /*****************************************************************************/ | |
97 |