devel.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. .dev-query, .dev-timer, .dev-memory-usage {
  2. padding: 1em;
  3. }
  4. .devel-obj-output .field {
  5. color: red;
  6. }
  7. .devel-obj-output dd {
  8. display: block;
  9. }
  10. /**
  11. * Query summary
  12. */
  13. div.dev-query {
  14. font-size:11px;
  15. background:#fff;
  16. border-top:3px solid #ccc;
  17. color:#333;
  18. /*padding:.5em;*/
  19. }
  20. div.dev-query .marker {
  21. color: #f00;
  22. font-weight: bold;
  23. }
  24. /**
  25. * Querylog
  26. */
  27. div.devel-querylog {
  28. color:#333;
  29. border-bottom:1px solid #eee;
  30. font-size:11px;
  31. line-height:100%;
  32. padding-left:30em;
  33. padding-right:2em;
  34. position:relative;
  35. overflow:hidden;
  36. }
  37. div.devel-querylog .marker {
  38. color: #f00;
  39. font-weight: bold;
  40. }
  41. div.devel-querylog-header {
  42. border-top:3px solid #ccc;
  43. background:#fff;
  44. font-weight:bold;
  45. }
  46. div.devel-querylog-even {
  47. background:#fff;
  48. }
  49. div.devel-querylog-odd {
  50. background:#f8f8f8;
  51. }
  52. div.devel-querylog div.cell {
  53. overflow:hidden;
  54. padding: 1em .5em;
  55. }
  56. div.devel-querylog div.cell-1 {
  57. position:absolute;
  58. left:0px;
  59. width:4em;
  60. }
  61. div.devel-querylog div.cell-2 {
  62. position:absolute;
  63. left:4em;
  64. width:3em;
  65. }
  66. div.devel-querylog div.cell-3 {
  67. position:absolute;
  68. left:6em;
  69. width:19em;
  70. }
  71. div.devel-querylog div.cell-4 {
  72. position:absolute;
  73. left:26em;
  74. width:4em;
  75. }
  76. div.devel-querylog-even div.cell-5,
  77. div.devel-querylog-odd div.cell-5 {
  78. /*max-height:18em;*/
  79. font-family: 'Andale Mono', monospace;
  80. }
  81. div.devel-querylog div.cell-6 {
  82. position:absolute;
  83. right:0em;
  84. top:0em;
  85. /*width:9em;*/
  86. }
  87. /**
  88. * Switch User block
  89. */
  90. div#content div#block-devel-switch-user ul.links,
  91. div#footer div#block-devel-switch-user ul.links {
  92. margin-left: 0;
  93. padding-left: 0;
  94. }
  95. div#content div#block-devel-switch-user ul.links li,
  96. div#footer div#block-devel-switch-user ul.links li {
  97. display: inline-block;
  98. margin-left: 0;
  99. margin-right: 1.5em;
  100. padding-right: 0;
  101. }
  102. div#footer div#block-devel-switch-user ul.links li a {
  103. margin: 0;
  104. padding: 0;
  105. border: none;
  106. }
  107. div#content div#block-devel-switch-user div.form-item-username,
  108. div#footer div#block-devel-switch-user div.form-item-username {
  109. float: left;
  110. margin-right: 2em;
  111. }
  112. div#content div#block-devel-switch-user #edit-submit,
  113. div#footer div#block-devel-switch-user #edit-submit {
  114. margin-top: 5px;
  115. }