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 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
|
/* Debug Toolbar CSS Reset, adapted from Eric Meyer's CSS Reset */
#plDebug {color:#000;background:#FFF;}
#plDebug, #plDebug div, #plDebug span, #plDebug applet, #plDebug object, #plDebug iframe,
#plDebug h1, #plDebug h2, #plDebug h3, #plDebug h4, #plDebug h5, #plDebug h6, #plDebug p, #plDebug blockquote, #plDebug pre,
#plDebug a, #plDebug abbr, #plDebug acronym, #plDebug address, #plDebug big, #plDebug cite, #plDebug code,
#plDebug del, #plDebug dfn, #plDebug em, #plDebug font, #plDebug img, #plDebug ins, #plDebug kbd, #plDebug q, #plDebug s, #plDebug samp,
#plDebug small, #plDebug strike, #plDebug strong, #plDebug sub, #plDebug sup, #plDebug tt, #plDebug var,
#plDebug b, #plDebug u, #plDebug i, #plDebug center,
#plDebug dl, #plDebug dt, #plDebug dd, #plDebug ol, #plDebug ul, #plDebug li,
#plDebug fieldset, #plDebug form, #plDebug label, #plDebug legend,
#plDebug table, #plDebug caption, #plDebug tbody, #plDebug tfoot, #plDebug thead, #plDebug tr, #plDebug th, #plDebug td {
margin:0;
padding:0;
border:0;
outline:0;
font-size:12px;
line-height:1.5em;
color:#000;
vertical-align:baseline;
background:transparent;
font-family:sans-serif;
text-align:left;
}
#plDebug #plDebugToolbar {
background:#111;
width:200px;
z-index:100000000;
position:fixed;
top:0;
bottom:0;
right:0;
opacity:0.9;
}
#plDebug #plDebugToolbar small {
color:#999;
}
#plDebug #plDebugToolbar ul {
margin:0;
padding:0;
list-style:none;
}
#plDebug #plDebugToolbar li {
border-bottom:1px solid #222;
color:#fff;
display:block;
font-weight:bold;
float:none;
margin:0;
padding:0;
position:relative;
width:auto;
}
#plDebug #plDebugToolbar li>a,
#plDebug #plDebugToolbar li>div.contentless {
font-weight:normal;
font-style:normal;
text-decoration:none;
display:block;
font-size:16px;
padding:10px 10px 5px 25px;
color:#fff;
}
#plDebug #plDebugToolbar li a:hover {
color:#111;
background-color:#ffc;
}
#plDebug #plDebugToolbar li.active {
background-image:url(indicator.png);
background-repeat:no-repeat;
background-position:left center;
background-color:#333;
padding-left:10px;
}
#plDebug #plDebugToolbar li.active a:hover {
color:#b36a60;
background-color:transparent;
}
#plDebug #plDebugToolbar li small {
font-size:12px;
color:#999;
font-style:normal;
text-decoration:none;
font-variant:small-caps;
}
#plDebug #plDebugToolbarHandle {
position:fixed;
background:#fff;
border:1px solid #111;
top:30px;
right:0;
z-index:100000000;
opacity:0.75;
}
#plDebug a#plShowToolBarButton {
display:block;
height:60px;
width:60px;
border-right:none;
border-bottom:4px solid #fff;
border-top:4px solid #fff;
border-left:4px solid #fff;
color:#fff;
font-size:10px;
font-weight:bold;
text-decoration:none;
text-align:center;
text-indent:-999999px;
background:#000 url(information.gif) no-repeat left center;
opacity:0.5;
}
#plDebug a#plShowToolBarButton:hover {
background-color:#000;
padding-right:6px;
border-top-color:#FFE761;
border-left-color:#FFE761;
border-bottom-color:#FFE761;
opacity:1.0;
}
#plDebug pre {
overflow:auto;
font-family:monospace,serif;
}
#plDebug tr.plDebugOdd {
background-color:#f5f5f5;
}
#plDebug .panelContent {
display:none;
position:fixed;
margin:0;
top:0;
right:200px;
bottom:0;
left:0px;
background-color:#eee;
color:#666;
z-index:100000000;
}
#plDebug .panelContent > div {
border-bottom:1px solid #ddd;
}
#plDebug .plDebugPanelTitle {
position:absolute;
background-color:#ffc;
color:#666;
padding-left:20px;
top:0;
right:0;
left:0;
height:50px;
}
#plDebug .plDebugPanelContent {
position:absolute;
top:50px;
right:0;
bottom:0;
left:0;
height:auto;
padding:0 0 0 20px;
}
#plDebug .plDebugPanelContent .scroll {
height:100%;
overflow:auto;
display:block;
padding:0 10px 0 0;
}
#plDebug h3 {
font-size:24px;
font-weight:normal;
line-height:50px;
}
#plDebug h4 {
font-size:20px;
font-weight:bold;
margin-top:0.8em;
}
#plDebug .panelContent table {
border:1px solid #ccc;
border-collapse:collapse;
width:100%;
background-color:#fff;
margin-top:0.8em;
overflow: auto;
}
#plDebug .panelContent tbody td,
#plDebug .panelContent tbody th {
vertical-align:top;
padding:2px 3px;
}
#plDebug .panelContent thead th {
padding:1px 6px 1px 3px;
text-align:left;
font-weight:bold;
font-size:14px;
}
#plDebug .panelContent tbody th {
width:12em;
text-align:right;
color:#666;
padding-right:.5em;
}
#plDebug .panelContent code {
font-family:Consolas, Monaco, "Bitstream Vera Sans Mono", "Lucida Console", monospace;
}
/*
#plDebug .panelContent p a:hover, #plDebug .panelContent dd a:hover {
color:#111;
background-color:#ffc;
}
#plDebug .panelContent p {
padding:0 5px;
}
#plDebug .panelContent p, #plDebug .panelContent table, #plDebug .panelContent ol, #plDebug .panelContent ul, #plDebug .panelContent dl {
margin:5px 0 15px;
background-color:#fff;
}
#plDebug .panelContent table {
clear:both;
border:0;
padding:0;
margin:0;
border-collapse:collapse;
border-spacing:0;
}
#plDebug .panelContent table a {
color:#000;
padding:2px 4px;
}
#plDebug .panelContent table a:hover {
background-color:#ffc;
}
#plDebug .panelContent table th {
background-color:#333;
font-weight:bold;
color:#fff;
padding:3px 7px 3px;
text-align:left;
cursor:pointer;
}
#plDebug .panelContent table td {
padding:5px 10px;
font-size:14px;
background:#fff;
color:#000;
vertical-align:top;
border:0;
}
#plDebug .panelContent table tr.plDebugOdd td {
background:#eee;
}
*/
#plDebug .panelContent .plDebugClose {
text-indent:-999999px;
display:block;
position:absolute;
top:4px;
right:15px;
height:40px;
width:40px;
background:url(close.png) no-repeat center center;
}
#plDebug .panelContent .plDebugClose:hover {
background-image:url(close_hover.png);
}
#plDebug .panelContent .plDebugClose.plDebugBack {
background-image:url(back.png);
}
#plDebug .panelContent .plDebugClose.plDebugBack:hover {
background-image:url(back_hover.png);
}
#plDebug .panelContent dt, #plDebug .panelContent dd {
display:block;
}
#plDebug .panelContent dt {
margin-top:0.75em;
}
#plDebug .panelContent dd {
margin-left:10px;
}
#plDebug a.toggleTemplate {
padding:4px;
background-color:#bbb;
-moz-border-radius:3px;
-webkit-border-radius:3px;
}
#plDebug a.toggleTemplate:hover {
padding:4px;
background-color:#444;
color:#ffe761;
-moz-border-radius:3px;
-webkit-border-radius:3px;
}
#plDebug a.plTemplateShowContext, #plDebug a.plTemplateShowContext span.toggleArrow {
color:#999;
}
#plDebug a.plTemplateShowContext:hover, #plDebug a.plTemplateShowContext:hover span.toggleArrow {
color:#000;
cursor:pointer;
}
#plDebug .plDebugSqlWrap {
position:relative;
}
#plDebug .plDebugSql {
z-index:100000002;
}
#plDebug .plSQLHideStacktraceDiv tbody th {
text-align: left;
}
#plDebug span.plDebugLineChart {
border-top:3px solid #777;
position:absolute;
bottom:0;
top:0;
left:0;
display:block;
z-index:1000000001;
}
#plDebug span.plDebugLineChartWarning {
border-top-color:#900;
}
#plDebug .highlight { color:#000; }
#plDebug .highlight .err { color:#000; } /* Error */
#plDebug .highlight .g { color:#000; } /* Generic */
#plDebug .highlight .k { color:#000; font-weight:bold } /* Keyword */
#plDebug .highlight .o { color:#000; } /* Operator */
#plDebug .highlight .n { color:#000; } /* Name */
#plDebug .highlight .mi { color:#000; font-weight:bold } /* Literal.Number.Integer */
#plDebug .highlight .l { color:#000; } /* Literal */
#plDebug .highlight .x { color:#000; } /* Other */
#plDebug .highlight .p { color:#000; } /* Punctuation */
#plDebug .highlight .m { color:#000; font-weight:bold } /* Literal.Number */
#plDebug .highlight .s { color:#333 } /* Literal.String */
#plDebug .highlight .w { color:#888888 } /* Text.Whitespace */
#plDebug .highlight .il { color:#000; font-weight:bold } /* Literal.Number.Integer.Long */
#plDebug .highlight .na { color:#333 } /* Name.Attribute */
#plDebug .highlight .nt { color:#000; font-weight:bold } /* Name.Tag */
#plDebug .highlight .nv { color:#333 } /* Name.Variable */
#plDebug .highlight .s2 { color:#333 } /* Literal.String.Double */
#plDebug .highlight .cp { color:#333 } /* Comment.Preproc */
|