您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

155 行
2.3KB

  1. .main-container {
  2. width: auto;
  3. }
  4. span.indent {
  5. color: #ccc;
  6. }
  7. ul.trace {
  8. font-size: 12px;
  9. color: #999;
  10. margin: 2px 0 0 0;
  11. padding: 0;
  12. list-style: none;
  13. white-space: normal;
  14. }
  15. #db-panel-detailed-grid table tbody tr td {
  16. position: relative;
  17. }
  18. .db-explain {
  19. position: absolute;
  20. bottom: 4px;
  21. right: 4px;
  22. font-size: 10px;
  23. }
  24. .db-explain-text {
  25. display: none;
  26. margin: 10px 0 0px 0;
  27. font-size: 13px;
  28. width: 100%;
  29. word-break: break-all;
  30. }
  31. #db-explain-all {
  32. position: absolute;
  33. bottom: 0;
  34. right: 0;
  35. font-size: 12px;
  36. margin-right: 15px;
  37. }
  38. ul.assets {
  39. margin: 2px 0 0 0;
  40. padding: 0;
  41. list-style: none;
  42. white-space: normal;
  43. }
  44. .callout {
  45. margin: 0 0 10px 0;
  46. padding: 5px;
  47. border: solid 1px #eee;
  48. border-radius: 3px;
  49. }
  50. .callout-important {
  51. background-color: rgba(185, 74, 72, 0.2);
  52. border-color: rgba(185, 74, 72, 0.4);
  53. }
  54. .callout-success {
  55. background-color: rgba(70, 136, 71, 0.2);
  56. border-color: rgba(70, 136, 71, 0.4);
  57. }
  58. .callout-info {
  59. background-color: rgba(58, 135, 173, 0.2);
  60. border-color: rgba(58, 135, 173, 0.4);
  61. }
  62. .list-group .glyphicon {
  63. float: right;
  64. }
  65. td, th {
  66. white-space: pre-wrap;
  67. word-wrap: break-word;
  68. }
  69. .request-table td {
  70. font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  71. word-break: break-all;
  72. }
  73. .request-table tr > th:first-child {
  74. width: 25%;
  75. }
  76. .config-php-info-table td.v {
  77. word-break: break-all;
  78. }
  79. .not-set {
  80. color: #c55;
  81. font-style: italic;
  82. }
  83. .detail-grid-view th {
  84. white-space: nowrap;
  85. }
  86. /* add sorting icons to gridview sort links */
  87. a.asc:after, a.desc:after {
  88. position: relative;
  89. top: 1px;
  90. display: inline-block;
  91. font-family: 'Glyphicons Halflings';
  92. font-style: normal;
  93. font-weight: normal;
  94. line-height: 1;
  95. padding-left: 5px;
  96. }
  97. a.asc:after {
  98. content: /*"\e113"*/ "\e151";
  99. }
  100. a.desc:after {
  101. content: /*"\e114"*/ "\e152";
  102. }
  103. .sort-numerical a.asc:after {
  104. content: "\e153";
  105. }
  106. .sort-numerical a.desc:after {
  107. content: "\e154";
  108. }
  109. .sort-ordinal a.asc:after {
  110. content: "\e155";
  111. }
  112. .sort-ordinal a.desc:after {
  113. content: "\e156";
  114. }
  115. .mail-sorter {
  116. margin-top: 7px;
  117. }
  118. .mail-sorter li {
  119. list-style: none;
  120. float: left;
  121. width: 12%;
  122. font-weight: bold;
  123. }
  124. .nowrap {
  125. white-space: nowrap;
  126. }