[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/media/system/css/ -> debug.css (source)

   1  /**
   2   * @copyright  (C) 2012 Open Source Matters, Inc. <https://www.joomla.org>
   3   * @license    GNU General Public License version 2 or later; see LICENSE.txt
   4   */
   5  
   6  /* Common CSS for system debug */
   7  div#system-debug {
   8    clear: both;
   9  }
  10  
  11  #system-debug {
  12    background-color: #fff;
  13    color: #000;
  14    border: 1px dashed silver;
  15    padding: 10px;
  16  }
  17  
  18  #system-debug div.dbg-header {
  19    background-color: #ddd;
  20    border: 1px solid #eee;
  21    font-size: 16px;
  22  }
  23  
  24  #system-debug h3 {
  25    margin: 0;
  26  }
  27  
  28  #system-debug a h3 {
  29    background-color: #ddd;
  30    color: #000;
  31    font-size: 14px;
  32    padding: 5px;
  33    text-decoration: none;
  34    margin: 0;
  35  }
  36  
  37  #system-debug .dbg-error a h3 {
  38    background-color: red;
  39  }
  40  
  41  #system-debug a:hover h3,
  42  #system-debug a:focus h3 {
  43    background-color: #4d4d4d;
  44    color: #ddd;
  45    font-size: 14px;
  46    cursor: pointer;
  47    text-decoration: none;
  48  }
  49  
  50  #system-debug div.dbg-container {
  51    padding: 10px;
  52  }
  53  
  54  #system-debug span.dbg-command {
  55    color: blue;
  56    font-weight: bold;
  57  }
  58  
  59  #system-debug span.dbg-table {
  60    color: green;
  61    font-weight: bold;
  62  }
  63  
  64  #system-debug b.dbg-operator {
  65    color: red;
  66    font-weight: bold;
  67  }
  68  
  69  #system-debug h1 {
  70    background-color: #2c2c2c;
  71    color: #fff;
  72    padding: 10px;
  73    margin: 0;
  74    font-size: 16px;
  75    line-height: 1em;
  76  }
  77  
  78  #system-debug h4 {
  79    font-size: 14px;
  80    font-weight: bold;
  81    margin: 5px 0 0 0;
  82  }
  83  
  84  #system-debug h5 {
  85    font-size: 13px;
  86    font-weight: bold;
  87    margin: 5px 0 0 0;
  88  }
  89  
  90  div#system-debug {
  91    margin: 5px;
  92  }
  93  
  94  #system-debug ol {
  95    margin-left: 25px;
  96    margin-right: 25px;
  97    text-align: left;
  98    direction: ltr;
  99  }
 100  
 101  #system-debug ul {
 102    list-style: none;
 103    text-align: left;
 104    direction: ltr;
 105  }
 106  
 107  #system-debug li {
 108    font-size: 13px;
 109    margin-bottom: 10px;
 110  }
 111  
 112  #system-debug code {
 113    font-size: 13px;
 114    text-align: left;
 115    direction: ltr;
 116  }
 117  
 118  #system-debug p {
 119    font-size: 13px;
 120  }
 121  
 122  #system-debug div.dbg-header.dbg-error {
 123    background-color: red;
 124  }
 125  #system-debug .dbg-warning {
 126    color: red;
 127    font-weight: bold;
 128    background-color: #ffffcc !important;
 129  }
 130  
 131  #system-debug .accordion {
 132    margin-bottom: 0;
 133  }
 134  #system-debug .dbg-noprofile {
 135    text-decoration: line-through;
 136  }
 137  
 138  /* dbg-bars */
 139  #system-debug .alert,
 140  #system-debug .dbg-bars {
 141    margin-bottom: 10px;
 142  }
 143  #system-debug .dbg-bar-spacer {
 144    float: left;
 145    height: 100%;
 146  }
 147  /* dbg-bars-query */
 148  #system-debug .dbg-bars-query .dbg-bar {
 149    opacity: 0.3;
 150    height: 12px;
 151    margin-top: 3px;
 152  }
 153  #system-debug .dbg-bars-query:hover .dbg-bar {
 154    opacity: 0.6;
 155    height: 18px;
 156    margin-top: 0;
 157  }
 158  #system-debug .dbg-bars-query .dbg-bar:hover,
 159  #system-debug .dbg-bars-query .dbg-bar-active,
 160  #system-debug .dbg-bars-query:hover .dbg-bar-active {
 161    opacity: 1;
 162    height: 18px;
 163    margin-top: 0;
 164  }
 165  
 166  /* dbg-query-table */
 167  #system-debug table.dbg-query-table {
 168    margin: 0 0 6px;
 169  }
 170  #system-debug table.dbg-query-table th,
 171  #system-debug table.dbg-query-table td {
 172    padding: 3px 8px;
 173  }
 174  
 175  #system-debug .dbg-profile-list .label {
 176    display: inline-block;
 177    min-width: 60px;
 178    text-align: right;
 179  }
 180  
 181  #system-debug .dbg-query-memory,
 182  #system-debug .dbg-query-rowsnumber
 183  {
 184    margin-left: 50px;
 185  }
 186  #dbg_container_session pre
 187  {
 188    background: white;
 189    border: 0;
 190    margin: 0;
 191    padding: 0;
 192    overflow-wrap: break-word;
 193    white-space: pre-wrap;
 194    word-break: break-word;
 195  }
 196  #dbg_container_session pre .blue
 197  {
 198    color:blue;
 199  }
 200  #dbg_container_session pre .green
 201  {
 202    color:green;
 203  }
 204  #dbg_container_session pre .black
 205  {
 206    color:black;
 207  }
 208  #dbg_container_session pre .grey
 209  {
 210    color:grey;
 211  }


Generated: Wed Sep 7 05:41:13 2022 Chilli.vc Blog - For Webmaster,Blog-Writer,System Admin and Domainer