You are here

devel.css in Devel 6

Same filename and directory in other branches
  1. 5 devel.css
  2. 7 devel.css
.dev-query, .dev-timer, .dev-memory-usage {
  padding-top: 2em;
}

.devel-obj-output .field {
  color: red;
}

.devel-obj-output dd {
  display: block;
}

/**
 * Query summary
 */
div.dev-query {
  font-size:11px;
  background:#fff;
  border-top:3px solid #ccc;
  color:#333;
  padding:.5em;
  }
  
div.dev-query .marker {
  color: #f00;
  font-weight: bold;
}

/**
 * Querylog
 */
div.devel-querylog {
  color:#333;
  border-bottom:1px solid #eee;
  font-size:11px;
  line-height:1.5em;
  padding-left:25em;
  position:relative;
  overflow:hidden;
  }

div.devel-querylog .marker {
  color: #f00;
  font-weight: bold;
}
  
div.devel-querylog-header {
  border-top:3px solid #ccc;
  background:#fff;
  font-weight:bold;
  }

div.devel-querylog-even {
  background:#fff;
  }

div.devel-querylog-odd {
  background:#f8f8f8;
  }

div.devel-querylog div.cell {
  overflow:hidden;
  padding: 1em .5em;
  }

  div.devel-querylog div.cell-1 {
    position:absolute;
    left:0px;
    width:5em;
    }

  div.devel-querylog div.cell-2 {
    position:absolute;
    left:6em;
    width:3em;
    }

  div.devel-querylog div.cell-3 {
    position:absolute;
    left:10em;
    width:14em;
    }

  div.devel-querylog-even div.cell-4,
  div.devel-querylog-odd div.cell-4 {
    max-height:18em;
    font-family: 'Andale Mono', monospace;
    }

#devel-execute-form textarea {
  font-family: monospace;
}

File

devel.css
View source
  1. .dev-query, .dev-timer, .dev-memory-usage {
  2. padding-top: 2em;
  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:1.5em;
  32. padding-left:25em;
  33. position:relative;
  34. overflow:hidden;
  35. }
  36. div.devel-querylog .marker {
  37. color: #f00;
  38. font-weight: bold;
  39. }
  40. div.devel-querylog-header {
  41. border-top:3px solid #ccc;
  42. background:#fff;
  43. font-weight:bold;
  44. }
  45. div.devel-querylog-even {
  46. background:#fff;
  47. }
  48. div.devel-querylog-odd {
  49. background:#f8f8f8;
  50. }
  51. div.devel-querylog div.cell {
  52. overflow:hidden;
  53. padding: 1em .5em;
  54. }
  55. div.devel-querylog div.cell-1 {
  56. position:absolute;
  57. left:0px;
  58. width:5em;
  59. }
  60. div.devel-querylog div.cell-2 {
  61. position:absolute;
  62. left:6em;
  63. width:3em;
  64. }
  65. div.devel-querylog div.cell-3 {
  66. position:absolute;
  67. left:10em;
  68. width:14em;
  69. }
  70. div.devel-querylog-even div.cell-4,
  71. div.devel-querylog-odd div.cell-4 {
  72. max-height:18em;
  73. font-family: 'Andale Mono', monospace;
  74. }
  75. #devel-execute-form textarea {
  76. font-family: monospace;
  77. }